logo
pub struct DBClusterSnapshot {
Show 20 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_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>,
}
Expand description

Contains the details for an Amazon Neptune DB cluster snapshot

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

Fields

allocated_storage: Option<i64>

Specifies the allocated storage size in gibibytes (GiB).

availability_zones: Option<Vec<String>>

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

cluster_create_time: Option<String>

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

db_cluster_identifier: Option<String>

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

db_cluster_snapshot_arn: Option<String>

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

db_cluster_snapshot_identifier: Option<String>

Specifies the identifier for a DB cluster snapshot. Must match the identifier of an existing snapshot.

After you restore a DB cluster using a DBClusterSnapshotIdentifier, you must specify the same DBClusterSnapshotIdentifier for any future updates to the DB cluster. When you specify this property for an update, the DB cluster is not restored from the snapshot again, and the data in the database is not changed.

However, if you don't specify the DBClusterSnapshotIdentifier, an empty DB cluster is created, and the original DB cluster is deleted. If you specify a property that is different from the previous snapshot restore property, the DB cluster is restored from the snapshot specified by the DBClusterSnapshotIdentifier, and the original DB cluster is deleted.

engine: Option<String>

Specifies the name of the database engine.

engine_version: Option<String>

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

iam_database_authentication_enabled: Option<bool>

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

kms_key_id: Option<String>

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

license_model: Option<String>

Provides the license model information for this DB cluster snapshot.

master_username: Option<String>

Not supported by Neptune.

percent_progress: Option<i64>

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

port: Option<i64>

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

snapshot_create_time: Option<String>

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

snapshot_type: Option<String>

Provides the type of the DB cluster snapshot.

source_db_cluster_snapshot_arn: Option<String>

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.

status: Option<String>

Specifies the status of this DB cluster snapshot.

storage_encrypted: Option<bool>

Specifies whether the DB cluster snapshot is encrypted.

vpc_id: Option<String>

Provides the VPC ID 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

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

This method tests for !=.

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