logo
pub struct AwsRdsDbClusterSnapshotDetails {
Show 18 fields 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_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 status: Option<String>, pub storage_encrypted: Option<bool>, pub vpc_id: Option<String>,
}
Expand description

Information about an Amazon RDS DB cluster snapshot.

Fields

allocated_storage: Option<i64>

Specifies the allocated storage size in gibibytes (GiB).

availability_zones: Option<Vec<String>>

A list of Availability Zones where instances in the DB cluster can be created.

cluster_create_time: Option<String>

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

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

db_cluster_identifier: Option<String>

The DB cluster identifier.

db_cluster_snapshot_identifier: Option<String>

The identifier of the DB cluster snapshot.

engine: Option<String>

The name of the database engine that you want to use for this DB instance.

engine_version: Option<String>

The version of the database engine to use.

iam_database_authentication_enabled: Option<bool>

Whether mapping of IAM accounts to database accounts is enabled.

kms_key_id: Option<String>

The ARN of the AWS KMS master key that is used to encrypt the database instances in the DB cluster.

license_model: Option<String>

The license model information for this DB cluster snapshot.

master_username: Option<String>

The name of the master user for the DB cluster.

percent_progress: Option<i64>

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

port: Option<i64>

The port number on which the DB instances in the DB cluster accept connections.

snapshot_create_time: Option<String>

Indicates when the snapshot was taken.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

snapshot_type: Option<String>

The type of DB cluster snapshot.

status: Option<String>

The status of this DB cluster snapshot.

storage_encrypted: Option<bool>

Whether the DB cluster is encrypted.

vpc_id: Option<String>

The VPC ID that is associated with the DB cluster snapshot.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more