#[non_exhaustive]
pub struct DbSnapshot { /* private fields */ }
Expand description

Contains the details of an Amazon RDS DB snapshot.

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

Implementations§

source§

impl DbSnapshot

source

pub fn db_snapshot_identifier(&self) -> Option<&str>

Specifies the identifier for the DB snapshot.

source

pub fn db_instance_identifier(&self) -> Option<&str>

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

source

pub fn snapshot_create_time(&self) -> Option<&DateTime>

Specifies when the snapshot was taken in Coordinated Universal Time (UTC). Changes for the copy when the snapshot is copied.

source

pub fn engine(&self) -> Option<&str>

Specifies the name of the database engine.

source

pub fn allocated_storage(&self) -> i32

Specifies the allocated storage size in gibibytes (GiB).

source

pub fn status(&self) -> Option<&str>

Specifies the status of this DB snapshot.

source

pub fn port(&self) -> i32

Specifies the port that the database engine was listening on at the time of the snapshot.

source

pub fn availability_zone(&self) -> Option<&str>

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

source

pub fn vpc_id(&self) -> Option<&str>

Provides the VPC ID associated with the DB snapshot.

source

pub fn instance_create_time(&self) -> Option<&DateTime>

Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was taken, was created.

source

pub fn master_username(&self) -> Option<&str>

Provides the master username for the DB snapshot.

source

pub fn engine_version(&self) -> Option<&str>

Specifies the version of the database engine.

source

pub fn license_model(&self) -> Option<&str>

License model information for the restored DB instance.

source

pub fn snapshot_type(&self) -> Option<&str>

Provides the type of the DB snapshot.

source

pub fn iops(&self) -> Option<i32>

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

source

pub fn option_group_name(&self) -> Option<&str>

Provides the option group name for the DB snapshot.

source

pub fn percent_progress(&self) -> i32

The percentage of the estimated data that has been transferred.

source

pub fn source_region(&self) -> Option<&str>

The Amazon Web Services Region that the DB snapshot was created in or copied from.

source

pub fn source_db_snapshot_identifier(&self) -> Option<&str>

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

source

pub fn storage_type(&self) -> Option<&str>

Specifies the storage type associated with DB snapshot.

source

pub fn tde_credential_arn(&self) -> Option<&str>

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

source

pub fn encrypted(&self) -> bool

Specifies whether the DB snapshot is encrypted.

source

pub fn kms_key_id(&self) -> Option<&str>

If Encrypted is true, the Amazon Web Services KMS key identifier for the encrypted DB snapshot.

The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.

source

pub fn db_snapshot_arn(&self) -> Option<&str>

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

source

pub fn timezone(&self) -> Option<&str>

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.

source

pub fn iam_database_authentication_enabled(&self) -> bool

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

source

pub fn processor_features(&self) -> Option<&[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.

source

pub fn dbi_resource_id(&self) -> Option<&str>

The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.

source

pub fn tag_list(&self) -> Option<&[Tag]>

A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.

source

pub fn original_snapshot_create_time(&self) -> Option<&DateTime>

Specifies the time of the CreateDBSnapshot operation in Coordinated Universal Time (UTC). Doesn't change when the snapshot is copied.

source

pub fn snapshot_database_time(&self) -> Option<&DateTime>

The timestamp of the most recent transaction applied to the database that you're backing up. Thus, if you restore a snapshot, SnapshotDatabaseTime is the most recent transaction in the restored DB instance. In contrast, originalSnapshotCreateTime specifies the system time that the snapshot completed.

If you back up a read replica, you can determine the replica lag by comparing SnapshotDatabaseTime with originalSnapshotCreateTime. For example, if originalSnapshotCreateTime is two hours later than SnapshotDatabaseTime, then the replica lag is two hours.

source

pub fn snapshot_target(&self) -> Option<&str>

Specifies where manual snapshots are stored: Amazon Web Services Outposts or the Amazon Web Services Region.

source

pub fn storage_throughput(&self) -> Option<i32>

Specifies the storage throughput for the DB snapshot.

source§

impl DbSnapshot

source

pub fn builder() -> DbSnapshotBuilder

Creates a new builder-style object to manufacture DbSnapshot.

Trait Implementations§

source§

impl Clone for DbSnapshot

source§

fn clone(&self) -> DbSnapshot

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DbSnapshot

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<DbSnapshot> for DbSnapshot

source§

fn eq(&self, other: &DbSnapshot) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for DbSnapshot

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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