Class: Aws::RDS::Types::OptionGroupMembership

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Provides information on the option groups the DB instance is a member of.

Instance Attribute Summary collapse

Instance Attribute Details

#option_group_nameString

The name of the option group that the instance belongs to.

Returns:

  • (String)


11323
11324
11325
11326
11327
# File 'lib/aws-sdk-rds/types.rb', line 11323

class OptionGroupMembership < Struct.new(
  :option_group_name,
  :status)
  include Aws::Structure
end

#statusString

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`.

Returns:

  • (String)


11323
11324
11325
11326
11327
# File 'lib/aws-sdk-rds/types.rb', line 11323

class OptionGroupMembership < Struct.new(
  :option_group_name,
  :status)
  include Aws::Structure
end