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

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

Overview

Note:

When making an API call, you may pass ModifyDBSubnetGroupMessage data as a hash:

{
  db_subnet_group_name: "String", # required
  db_subnet_group_description: "String",
  subnet_ids: ["String"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_subnet_group_descriptionString

The description for the DB subnet group.

Returns:

  • (String)


10997
10998
10999
11000
11001
11002
# File 'lib/aws-sdk-rds/types.rb', line 10997

class ModifyDBSubnetGroupMessage < Struct.new(
  :db_subnet_group_name,
  :db_subnet_group_description,
  :subnet_ids)
  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: ‘mySubnetgroup`

Returns:

  • (String)


10997
10998
10999
11000
11001
11002
# File 'lib/aws-sdk-rds/types.rb', line 10997

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

#subnet_idsArray<String>

The EC2 subnet IDs for the DB subnet group.

Returns:

  • (Array<String>)


10997
10998
10999
11000
11001
11002
# File 'lib/aws-sdk-rds/types.rb', line 10997

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