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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rds/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)


19336
19337
19338
19339
19340
19341
19342
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 19336

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)


19336
19337
19338
19339
19340
19341
19342
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 19336

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>)


19336
19337
19338
19339
19340
19341
19342
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 19336

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