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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#option_group_nameString

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

Returns:

  • (String)


19942
19943
19944
19945
19946
19947
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 19942

class OptionGroupMembership < Struct.new(
  :option_group_name,
  :status)
  SENSITIVE = []
  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)


19942
19943
19944
19945
19946
19947
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 19942

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