Class: Aws::DocDB::Types::CreateDBClusterParameterGroupMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DocDB::Types::CreateDBClusterParameterGroupMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-docdb/types.rb
 
Overview
Represents the input of CreateDBClusterParameterGroup.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #db_cluster_parameter_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the cluster parameter group.
 - 
  
    
      #db_parameter_group_family  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The cluster parameter group family name.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description for the cluster parameter group.
 - 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The tags to be assigned to the cluster parameter group.
 
Instance Attribute Details
#db_cluster_parameter_group_name ⇒ String
The name of the cluster parameter group.
Constraints:
- 
Must not match the name of an existing ‘DBClusterParameterGroup`.
 
^
<note markdown=“1”> This value is stored as a lowercase string.
</note>
  
      753 754 755 756 757 758 759 760  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 753 class CreateDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :db_parameter_group_family, :description, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#db_parameter_group_family ⇒ String
The cluster parameter group family name.
      753 754 755 756 757 758 759 760  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 753 class CreateDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :db_parameter_group_family, :description, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
The description for the cluster parameter group.
      753 754 755 756 757 758 759 760  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 753 class CreateDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :db_parameter_group_family, :description, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the cluster parameter group.
      753 754 755 756 757 758 759 760  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 753 class CreateDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :db_parameter_group_family, :description, :tags) SENSITIVE = [] include Aws::Structure end  |