[−][src]Struct rusoto_rds::DBSnapshot
Contains the details of an Amazon RDS DB snapshot.
This data type is used as a response element in the DescribeDBSnapshots
action.
Fields
allocated_storage: Option<i64>
Specifies the allocated storage size in gibibytes (GiB).
availability_zone: Option<String>
Specifies the name of the Availability Zone the DB instance was located in at the time of the DB snapshot.
db_instance_identifier: Option<String>
Specifies the DB instance identifier of the DB instance this DB snapshot was created from.
db_snapshot_arn: Option<String>
The Amazon Resource Name (ARN) for the DB snapshot.
db_snapshot_identifier: Option<String>
Specifies the identifier for the DB snapshot.
dbi_resource_id: Option<String>
The identifier for the source DB instance, which can't be changed and which is unique to an AWS Region.
encrypted: Option<bool>
Specifies whether the DB snapshot is encrypted.
engine: Option<String>
Specifies the name of the database engine.
engine_version: Option<String>
Specifies the version of the database engine.
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.
instance_create_time: Option<String>
Specifies the time when the snapshot was taken, in Universal Coordinated Time (UTC).
iops: Option<i64>
Specifies the Provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.
kms_key_id: Option<String>
If Encrypted
is true, the AWS KMS key identifier for the encrypted DB snapshot.
license_model: Option<String>
License model information for the restored DB instance.
master_username: Option<String>
Provides the master username for the DB snapshot.
option_group_name: Option<String>
Provides the option group name for the DB snapshot.
percent_progress: Option<i64>
The percentage of the estimated data that has been transferred.
port: Option<i64>
Specifies the port that the database engine was listening on at the time of the snapshot.
processor_features: Option<Vec<ProcessorFeature>>
The number of CPU cores and the number of threads per core for the DB instance class of the DB instance when the DB snapshot was created.
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 snapshot.
source_db_snapshot_identifier: Option<String>
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.
source_region: Option<String>
The AWS Region that the DB snapshot was created in or copied from.
status: Option<String>
Specifies the status of this DB snapshot.
storage_type: Option<String>
Specifies the storage type associated with DB snapshot.
tde_credential_arn: Option<String>
The ARN from the key store with which to associate the instance for TDE encryption.
timezone: Option<String>
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.
vpc_id: Option<String>
Provides the VPC ID associated with the DB snapshot.
Trait Implementations
impl PartialEq<DBSnapshot> for DBSnapshot
[src]
fn eq(&self, other: &DBSnapshot) -> bool
[src]
fn ne(&self, other: &DBSnapshot) -> bool
[src]
impl Default for DBSnapshot
[src]
fn default() -> DBSnapshot
[src]
impl Clone for DBSnapshot
[src]
fn clone(&self) -> DBSnapshot
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for DBSnapshot
[src]
Auto Trait Implementations
impl Send for DBSnapshot
impl Sync for DBSnapshot
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