Class: Aws::RDS::Types::OptionGroupMembership
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::OptionGroupMembership
- Defined in:
- gems/aws-sdk-rds/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.
20452 20453 20454 20455 20456 20457 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 20452 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
.
20452 20453 20454 20455 20456 20457 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 20452 class OptionGroupMembership < Struct.new( :option_group_name, :status) SENSITIVE = [] include Aws::Structure end |