Struct rusoto_redshift::DeleteClusterSnapshotMessage [] [src]

pub struct DeleteClusterSnapshotMessage {
    pub snapshot_cluster_identifier: Option<String>,
    pub snapshot_identifier: String,
}

Fields

The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.

Constraints: Must be the name of valid cluster.

The unique identifier of the manual snapshot to be deleted.

Constraints: Must be the name of an existing snapshot that is in the available state.

Trait Implementations

impl Default for DeleteClusterSnapshotMessage
[src]

[src]

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

impl Debug for DeleteClusterSnapshotMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteClusterSnapshotMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations