Struct rusoto_redshift::CreateClusterSnapshotMessage [] [src]

pub struct CreateClusterSnapshotMessage {
    pub cluster_identifier: String,
    pub snapshot_identifier: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

The cluster identifier for which you want a snapshot.

A unique identifier for the snapshot that you are requesting. This identifier must be unique for all snapshots within the AWS account.

Constraints:

  • Cannot be null, empty, or blank

  • Must contain from 1 to 255 alphanumeric characters or hyphens

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

Example: my-snapshot-id

A list of tag instances.

Trait Implementations

impl Default for CreateClusterSnapshotMessage
[src]

[src]

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

impl Debug for CreateClusterSnapshotMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateClusterSnapshotMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations