Struct rusoto_redshift::DeleteClusterMessage [] [src]

pub struct DeleteClusterMessage {
    pub cluster_identifier: String,
    pub final_cluster_snapshot_identifier: Option<String>,
    pub skip_final_cluster_snapshot: Option<Boolean>,
}

Fields

The identifier of the cluster to be deleted.

Constraints:

  • Must contain lowercase characters.

  • Must contain from 1 to 63 alphanumeric characters or hyphens.

  • First character must be a letter.

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

The identifier of the final snapshot that is to be created immediately before deleting the cluster. If this parameter is provided, SkipFinalClusterSnapshot must be false.

Constraints:

  • Must be 1 to 255 alphanumeric characters.

  • First character must be a letter.

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

Determines whether a final snapshot of the cluster is created before Amazon Redshift deletes the cluster. If true, a final cluster snapshot is not created. If false, a final cluster snapshot is created before the cluster is deleted.

The FinalClusterSnapshotIdentifier parameter must be specified if SkipFinalClusterSnapshot is false.

Default: false

Trait Implementations

impl Default for DeleteClusterMessage
[src]

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

impl Debug for DeleteClusterMessage
[src]

Formats the value using the given formatter.

impl Clone for DeleteClusterMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more