[][src]Struct rusoto_docdb::DBClusterSnapshot

pub struct DBClusterSnapshot {
    pub availability_zones: Option<Vec<String>>,
    pub cluster_create_time: Option<String>,
    pub db_cluster_identifier: Option<String>,
    pub db_cluster_snapshot_arn: Option<String>,
    pub db_cluster_snapshot_identifier: Option<String>,
    pub engine: Option<String>,
    pub engine_version: Option<String>,
    pub kms_key_id: Option<String>,
    pub master_username: Option<String>,
    pub percent_progress: Option<i64>,
    pub port: Option<i64>,
    pub snapshot_create_time: Option<String>,
    pub snapshot_type: Option<String>,
    pub source_db_cluster_snapshot_arn: Option<String>,
    pub status: Option<String>,
    pub storage_encrypted: Option<bool>,
    pub vpc_id: Option<String>,
}

Detailed information about a cluster snapshot.

Fields

availability_zones: Option<Vec<String>>

Provides the list of Amazon EC2 Availability Zones that instances in the cluster snapshot can be restored in.

cluster_create_time: Option<String>

Specifies the time when the cluster was created, in Universal Coordinated Time (UTC).

db_cluster_identifier: Option<String>

Specifies the cluster identifier of the cluster that this cluster snapshot was created from.

db_cluster_snapshot_arn: Option<String>

The Amazon Resource Name (ARN) for the cluster snapshot.

db_cluster_snapshot_identifier: Option<String>

Specifies the identifier for the cluster snapshot.

engine: Option<String>

Specifies the name of the database engine.

engine_version: Option<String>

Provides the version of the database engine for this cluster snapshot.

kms_key_id: Option<String>

If StorageEncrypted is true, the AWS KMS key identifier for the encrypted cluster snapshot.

master_username: Option<String>

Provides the master user name for the cluster snapshot.

percent_progress: Option<i64>

Specifies the percentage of the estimated data that has been transferred.

port: Option<i64>

Specifies the port that the cluster was listening on at the time of the snapshot.

snapshot_create_time: Option<String>

Provides the time when the snapshot was taken, in UTC.

snapshot_type: Option<String>

Provides the type of the cluster snapshot.

source_db_cluster_snapshot_arn: Option<String>

If the cluster snapshot was copied from a source cluster snapshot, the ARN for the source cluster snapshot; otherwise, a null value.

status: Option<String>

Specifies the status of this cluster snapshot.

storage_encrypted: Option<bool>

Specifies whether the cluster snapshot is encrypted.

vpc_id: Option<String>

Provides the virtual private cloud (VPC) ID that is associated with the cluster snapshot.

Trait Implementations

impl Clone for DBClusterSnapshot[src]

impl Debug for DBClusterSnapshot[src]

impl Default for DBClusterSnapshot[src]

impl PartialEq<DBClusterSnapshot> for DBClusterSnapshot[src]

impl StructuralPartialEq for DBClusterSnapshot[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.