You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DocDB::Types::CreateDBClusterParameterGroupMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateDBClusterParameterGroupMessage as input to an Aws::Client method, you can use a vanilla 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

Instance Attribute Details

#db_cluster_parameter_group_nameString

The name of the cluster parameter group.

Constraints:

  • Must not match the name of an existing DBClusterParameterGroup.

^

This value is stored as a lowercase string.

Returns:

  • (String)

    The name of the cluster parameter group.

#db_parameter_group_familyString

The cluster parameter group family name.

Returns:

  • (String)

    The cluster parameter group family name.

#descriptionString

The description for the cluster parameter group.

Returns:

  • (String)

    The description for the cluster parameter group.

#tagsArray<Types::Tag>

The tags to be assigned to the cluster parameter group.

Returns:

  • (Array<Types::Tag>)

    The tags to be assigned to the cluster parameter group.