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.
Instance Attribute Summary collapse
-
#db_cluster_parameter_group_name ⇒ String
The name of the DB cluster parameter group.
-
#db_parameter_group_family ⇒ String
The DB cluster parameter group family name.
-
#description ⇒ String
The description for the DB cluster parameter group.
-
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the DB cluster parameter group.
Instance Attribute Details
#db_cluster_parameter_group_name ⇒ String
The name of the DB cluster parameter group.
Constraints:
-
Must match the name of an existing
DBClusterParameterGroup.
^
<note markdown=“1”> This value is stored as a lowercase string.
</note>
640 641 642 643 644 645 646 |
# File 'lib/aws-sdk-docdb/types.rb', line 640 class CreateDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :db_parameter_group_family, :description, :tags) include Aws::Structure end |
#db_parameter_group_family ⇒ String
The DB cluster parameter group family name.
640 641 642 643 644 645 646 |
# File 'lib/aws-sdk-docdb/types.rb', line 640 class CreateDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :db_parameter_group_family, :description, :tags) include Aws::Structure end |
#description ⇒ String
The description for the DB cluster parameter group.
640 641 642 643 644 645 646 |
# File 'lib/aws-sdk-docdb/types.rb', line 640 class CreateDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :db_parameter_group_family, :description, :tags) include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the DB cluster parameter group.
640 641 642 643 644 645 646 |
# File 'lib/aws-sdk-docdb/types.rb', line 640 class CreateDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :db_parameter_group_family, :description, :tags) include Aws::Structure end |