Struct rusoto_rds::DBClusterSnapshot [] [src]

pub struct DBClusterSnapshot {
    pub allocated_storage: Option<i64>,
    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 iam_database_authentication_enabled: Option<bool>,
    pub kms_key_id: Option<String>,
    pub license_model: 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>,
}

Contains the result of a successful invocation of the following actions:

This data type is used as a response element in the DescribeDBClusterSnapshots action.

Fields

Specifies the allocated storage size in gigabytes (GB).

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

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

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

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

Specifies the identifier for the DB cluster snapshot.

Specifies the name of the database engine.

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

True if mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled; otherwise false.

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

Provides the license model information for this DB cluster snapshot.

Provides the master username for the DB cluster snapshot.

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

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

Provides the time when the snapshot was taken, in Universal Coordinated Time (UTC).

Provides the type of the DB cluster snapshot.

If the DB cluster snapshot was copied from a source DB cluster snapshot, the Amazon Resource Name (ARN) for the source DB cluster snapshot; otherwise, a null value.

Specifies the status of this DB cluster snapshot.

Specifies whether the DB cluster snapshot is encrypted.

Provides the VPC ID associated with the DB cluster snapshot.

Trait Implementations

impl Default for DBClusterSnapshot
[src]

[src]

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

impl Debug for DBClusterSnapshot
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DBClusterSnapshot
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations