Class: Aws::DocDB::Types::DeleteDBSubnetGroupMessage

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

Overview

Note:

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

{
  db_subnet_group_name: "String", # required
}

Represents the input to DeleteDBSubnetGroup.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#db_subnet_group_nameString

The name of the database subnet group to delete.

<note markdown=“1”> You can't delete the default subnet group.

</note>

Constraints:

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

Example: `mySubnetgroup`

Returns:

  • (String)


2593
2594
2595
2596
2597
# File 'lib/aws-sdk-docdb/types.rb', line 2593

class DeleteDBSubnetGroupMessage < Struct.new(
  :db_subnet_group_name)
  SENSITIVE = []
  include Aws::Structure
end