Struct rusoto_redshift::EnableSnapshotCopyMessage[][src]

pub struct EnableSnapshotCopyMessage {
    pub cluster_identifier: String,
    pub destination_region: String,
    pub retention_period: Option<i64>,
    pub snapshot_copy_grant_name: Option<String>,
}

Fields

The unique identifier of the source cluster to copy snapshots from.

Constraints: Must be the valid name of an existing cluster that does not already have cross-region snapshot copy enabled.

The destination region that you want to copy snapshots to.

Constraints: Must be the name of a valid region. For more information, see Regions and Endpoints in the Amazon Web Services General Reference.

The number of days to retain automated snapshots in the destination region after they are copied from the source region.

Default: 7.

Constraints: Must be at least 1 and no more than 35.

The name of the snapshot copy grant to use when snapshots of an AWS KMS-encrypted cluster are copied to the destination region.

Trait Implementations

impl Default for EnableSnapshotCopyMessage
[src]

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

impl Debug for EnableSnapshotCopyMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for EnableSnapshotCopyMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EnableSnapshotCopyMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations