Class: Aws::Redshift::Types::CreateClusterSubnetGroupMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Redshift::Types::CreateClusterSubnetGroupMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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`
      2594 2595 2596 2597 2598 2599 2600 2601  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 2594 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.
      2594 2595 2596 2597 2598 2599 2600 2601  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 2594 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.
      2594 2595 2596 2597 2598 2599 2600 2601  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 2594 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.
      2594 2595 2596 2597 2598 2599 2600 2601  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 2594 class CreateClusterSubnetGroupMessage < Struct.new( :cluster_subnet_group_name, :description, :subnet_ids, :tags) SENSITIVE = [] include Aws::Structure end  |