[−][src]Struct rusoto_rds::DBClusterSnapshot
Contains the details for an Amazon RDS 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 Availability Zones (AZs) where instances in the DB cluster snapshot can be restored.
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 the DB 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 DB cluster snapshot.
iam_database_authentication_enabled: Option<bool>
True if mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.
kms_key_id: Option<String>
If StorageEncrypted
is true, the AWS 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>
Provides the master username for the DB 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 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
impl PartialEq<DBClusterSnapshot> for DBClusterSnapshot
[src]
fn eq(&self, other: &DBClusterSnapshot) -> bool
[src]
fn ne(&self, other: &DBClusterSnapshot) -> bool
[src]
impl Default for DBClusterSnapshot
[src]
fn default() -> DBClusterSnapshot
[src]
impl Clone for DBClusterSnapshot
[src]
fn clone(&self) -> DBClusterSnapshot
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for DBClusterSnapshot
[src]
Auto Trait Implementations
impl Send for DBClusterSnapshot
impl Sync for DBClusterSnapshot
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self