Class: Aws::RDS::Types::ModifyDBSubnetGroupMessage

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#db_subnet_group_descriptionString

The description for the DB subnet group.

Returns:

  • (String)


19603
19604
19605
19606
19607
19608
19609
# File 'lib/aws-sdk-rds/types.rb', line 19603

class ModifyDBSubnetGroupMessage < Struct.new(
  :db_subnet_group_name,
  :db_subnet_group_description,
  :subnet_ids)
  SENSITIVE = []
  include Aws::Structure
end

#db_subnet_group_nameString

The name for the DB subnet group. This value is stored as a lowercase string. You can’t modify the default subnet group.

Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.

Example: ‘mydbsubnetgroup`

Returns:

  • (String)


19603
19604
19605
19606
19607
19608
19609
# File 'lib/aws-sdk-rds/types.rb', line 19603

class ModifyDBSubnetGroupMessage < Struct.new(
  :db_subnet_group_name,
  :db_subnet_group_description,
  :subnet_ids)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_idsArray<String>

The EC2 subnet IDs for the DB subnet group.

Returns:

  • (Array<String>)


19603
19604
19605
19606
19607
19608
19609
# File 'lib/aws-sdk-rds/types.rb', line 19603

class ModifyDBSubnetGroupMessage < Struct.new(
  :db_subnet_group_name,
  :db_subnet_group_description,
  :subnet_ids)
  SENSITIVE = []
  include Aws::Structure
end