Class: Aws::Redshift::Types::CreateClusterSubnetGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::CreateClusterSubnetGroupMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_subnet_group_name ⇒ String
The name for the subnet group.
-
#description ⇒ String
A description for the subnet group.
-
#subnet_ids ⇒ Array<String>
An array of VPC subnet IDs.
-
#tags ⇒ Array<Types::Tag>
A list of tag instances.
Instance Attribute Details
#cluster_subnet_group_name ⇒ String
The name for the subnet group. Amazon Redshift stores the value as a lowercase string.
Constraints:
Must contain no more than 255 alphanumeric characters or hyphens.
Must not be "Default".
Must be unique for all subnet groups that are created by your Amazon Web Services account.
Example: examplesubnetgroup
2407 2408 2409 2410 2411 2412 2413 2414 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 2407 class CreateClusterSubnetGroupMessage < Struct.new( :cluster_subnet_group_name, :description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description for the subnet group.
2407 2408 2409 2410 2411 2412 2413 2414 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 2407 class CreateClusterSubnetGroupMessage < Struct.new( :cluster_subnet_group_name, :description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.
2407 2408 2409 2410 2411 2412 2413 2414 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 2407 class CreateClusterSubnetGroupMessage < Struct.new( :cluster_subnet_group_name, :description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tag instances.
2407 2408 2409 2410 2411 2412 2413 2414 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 2407 class CreateClusterSubnetGroupMessage < Struct.new( :cluster_subnet_group_name, :description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |