[][src]Struct rusoto_redshift::CreateClusterSnapshotMessage

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]

impl PartialEq<CreateClusterSnapshotMessage> for CreateClusterSnapshotMessage
[src]

impl Clone for CreateClusterSnapshotMessage
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateClusterSnapshotMessage
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

Should always be Self