Struct rusoto_redshift::CreateClusterParameterGroupMessage[][src]

pub struct CreateClusterParameterGroupMessage {
    pub description: String,
    pub parameter_group_family: String,
    pub parameter_group_name: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

A description of the parameter group.

The Amazon Redshift engine version to which the cluster parameter group applies. The cluster engine version determines the set of parameters.

To get a list of valid parameter group family names, you can call DescribeClusterParameterGroups. By default, Amazon Redshift returns a list of all the parameter groups that are owned by your AWS account, including the default parameter groups for each Amazon Redshift engine version. The parameter group family names associated with the default parameter groups provide you the valid values. For example, a valid family name is "redshift-1.0".

The name of the cluster parameter group.

Constraints:

  • Must be 1 to 255 alphanumeric characters or hyphens

  • First character must be a letter.

  • Cannot end with a hyphen or contain two consecutive hyphens.

  • Must be unique withing your AWS account.

This value is stored as a lower-case string.

A list of tag instances.

Trait Implementations

impl Default for CreateClusterParameterGroupMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateClusterParameterGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateClusterParameterGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateClusterParameterGroupMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations