Struct rusoto_redshift::CreateClusterSecurityGroupMessage [] [src]

pub struct CreateClusterSecurityGroupMessage {
    pub cluster_security_group_name: String,
    pub description: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

The name for the security group. Amazon Redshift stores the value as a lowercase string.

Constraints:

  • Must contain no more than 255 alphanumeric characters or hyphens.

  • Must not be "Default".

  • Must be unique for all security groups that are created by your AWS account.

Example: examplesecuritygroup

A description for the security group.

A list of tag instances.

Trait Implementations

impl Default for CreateClusterSecurityGroupMessage
[src]

[src]

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

impl Debug for CreateClusterSecurityGroupMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateClusterSecurityGroupMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations