Class: Aws::DocDB::Types::CreateDBClusterParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::CreateDBClusterParameterGroupMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdb/types.rb
Overview
Note:
When making an API call, you may pass CreateDBClusterParameterGroupMessage data as a hash:
{
db_cluster_parameter_group_name: "String", # required
db_parameter_group_family: "String", # required
description: "String", # required
tags: [
{
key: "String",
value: "String",
},
],
}
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>
823 824 825 826 827 828 829 830 |
# File 'lib/aws-sdk-docdb/types.rb', line 823 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.
823 824 825 826 827 828 829 830 |
# File 'lib/aws-sdk-docdb/types.rb', line 823 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.
823 824 825 826 827 828 829 830 |
# File 'lib/aws-sdk-docdb/types.rb', line 823 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.
823 824 825 826 827 828 829 830 |
# File 'lib/aws-sdk-docdb/types.rb', line 823 class CreateDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :db_parameter_group_family, :description, :tags) SENSITIVE = [] include Aws::Structure end |