Class: Aws::RDS::Types::OptionGroupMembership
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::OptionGroupMembership
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Provides information on the option groups the DB instance is a member of.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#option_group_name ⇒ String
The name of the option group that the instance belongs to.
-
#status ⇒ String
The status of the DB instance’s option group membership.
Instance Attribute Details
#option_group_name ⇒ String
The name of the option group that the instance belongs to.
20417 20418 20419 20420 20421 20422 |
# File 'lib/aws-sdk-rds/types.rb', line 20417 class OptionGroupMembership < Struct.new( :option_group_name, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the DB instance’s option group membership. Valid values are: ‘in-sync`, `pending-apply`, `pending-removal`, `pending-maintenance-apply`, `pending-maintenance-removal`, `applying`, `removing`, and `failed`.
20417 20418 20419 20420 20421 20422 |
# File 'lib/aws-sdk-rds/types.rb', line 20417 class OptionGroupMembership < Struct.new( :option_group_name, :status) SENSITIVE = [] include Aws::Structure end |