Class: Aws::Neptune::Types::DeleteDBSubnetGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptune::Types::DeleteDBSubnetGroupMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptune/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_subnet_group_name ⇒ String
The name of the database subnet group to delete.
Instance Attribute Details
#db_subnet_group_name ⇒ String
The name of the database subnet group to delete.
<note markdown=“1”> You can’t delete the default subnet group.
</note>
Constraints:
Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.
Example: ‘mySubnetgroup`
3737 3738 3739 3740 3741 |
# File 'lib/aws-sdk-neptune/types.rb', line 3737 class DeleteDBSubnetGroupMessage < Struct.new( :db_subnet_group_name) SENSITIVE = [] include Aws::Structure end |