Struct rusoto_rds::DBSnapshot [] [src]

pub struct DBSnapshot {
    pub allocated_storage: Option<i64>,
    pub availability_zone: Option<String>,
    pub db_instance_identifier: Option<String>,
    pub db_snapshot_arn: Option<String>,
    pub db_snapshot_identifier: Option<String>,
    pub encrypted: Option<bool>,
    pub engine: Option<String>,
    pub engine_version: Option<String>,
    pub iam_database_authentication_enabled: Option<bool>,
    pub instance_create_time: Option<String>,
    pub iops: Option<i64>,
    pub kms_key_id: Option<String>,
    pub license_model: Option<String>,
    pub master_username: Option<String>,
    pub option_group_name: 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_snapshot_identifier: Option<String>,
    pub source_region: Option<String>,
    pub status: Option<String>,
    pub storage_type: Option<String>,
    pub tde_credential_arn: Option<String>,
    pub timezone: Option<String>,
    pub vpc_id: Option<String>,
}

Contains the details of an Amazon RDS DB snapshot.

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

Fields

Specifies the allocated storage size in gibibytes (GiB).

Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.

Specifies the DB instance identifier of the DB instance this DB snapshot was created from.

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

Specifies the identifier for the DB snapshot.

Specifies whether the DB snapshot is encrypted.

Specifies the name of the database engine.

Specifies the version of the database engine.

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

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

Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.

If Encrypted is true, the AWS KMS key identifier for the encrypted DB snapshot.

License model information for the restored DB instance.

Provides the master username for the DB snapshot.

Provides the option group name for the DB snapshot.

The percentage of the estimated data that has been transferred.

Specifies the port that the database engine 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 snapshot.

The DB snapshot Amazon Resource Name (ARN) that the DB snapshot was copied from. It only has value in case of cross-customer or cross-region copy.

The AWS Region that the DB snapshot was created in or copied from.

Specifies the status of this DB snapshot.

Specifies the storage type associated with DB snapshot.

The ARN from the key store with which to associate the instance for TDE encryption.

The time zone of the DB snapshot. In most cases, the Timezone element is empty. Timezone content appears only for snapshots taken from Microsoft SQL Server DB instances that were created with a time zone specified.

Provides the VPC ID associated with the DB snapshot.

Trait Implementations

impl Default for DBSnapshot
[src]

[src]

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

impl Debug for DBSnapshot
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DBSnapshot
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for DBSnapshot

impl Sync for DBSnapshot