Class: Aws::DocDB::Types::ModifyDBSubnetGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::ModifyDBSubnetGroupMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdb/types.rb
Overview
Represents the input to ModifyDBSubnetGroup.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_subnet_group_description ⇒ String
The description for the subnet group.
-
#db_subnet_group_name ⇒ String
The name for the subnet group.
-
#subnet_ids ⇒ Array<String>
The Amazon EC2 subnet IDs for the subnet group.
Instance Attribute Details
#db_subnet_group_description ⇒ String
The description for the subnet group.
4550 4551 4552 4553 4554 4555 4556 |
# File 'lib/aws-sdk-docdb/types.rb', line 4550 class ModifyDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#db_subnet_group_name ⇒ String
The name for the 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`
4550 4551 4552 4553 4554 4555 4556 |
# File 'lib/aws-sdk-docdb/types.rb', line 4550 class ModifyDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
The Amazon EC2 subnet IDs for the subnet group.
4550 4551 4552 4553 4554 4555 4556 |
# File 'lib/aws-sdk-docdb/types.rb', line 4550 class ModifyDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |