Struct rusoto_redshift::ClusterSnapshotCopyStatus[][src]

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

Returns the destination region and retention period that are configured for cross-region snapshot copy.

Fields

The destination region that snapshots are automatically copied to when cross-region snapshot copy is enabled.

The number of days that automated snapshots are retained in the destination region after they are copied from a source region.

The name of the snapshot copy grant.

Trait Implementations

impl Default for ClusterSnapshotCopyStatus
[src]

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

impl Debug for ClusterSnapshotCopyStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for ClusterSnapshotCopyStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ClusterSnapshotCopyStatus
[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