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
2669 2670 2671 2672 2673 2674 2675 2676 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 2669 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.
2669 2670 2671 2672 2673 2674 2675 2676 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 2669 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.
2669 2670 2671 2672 2673 2674 2675 2676 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 2669 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.
2669 2670 2671 2672 2673 2674 2675 2676 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 2669 class CreateClusterSubnetGroupMessage < Struct.new( :cluster_subnet_group_name, :description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end |