Class: Aws::RDS::Types::ModifyDBSubnetGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::ModifyDBSubnetGroupMessage
- 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
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_subnet_group_description ⇒ String
The description for the DB subnet group.
-
#db_subnet_group_name ⇒ String
The name for the DB subnet group.
-
#subnet_ids ⇒ Array<String>
The EC2 subnet IDs for the DB subnet group.
Instance Attribute Details
#db_subnet_group_description ⇒ String
The description for the DB subnet group.
17142 17143 17144 17145 17146 17147 17148 |
# File 'lib/aws-sdk-rds/types.rb', line 17142 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 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`
17142 17143 17144 17145 17146 17147 17148 |
# File 'lib/aws-sdk-rds/types.rb', line 17142 class ModifyDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
The EC2 subnet IDs for the DB subnet group.
17142 17143 17144 17145 17146 17147 17148 |
# File 'lib/aws-sdk-rds/types.rb', line 17142 class ModifyDBSubnetGroupMessage < Struct.new( :db_subnet_group_name, :db_subnet_group_description, :subnet_ids) SENSITIVE = [] include Aws::Structure end |