[][src]Struct rusoto_rds::DBClusterBacktrack

pub struct DBClusterBacktrack {
    pub backtrack_identifier: Option<String>,
    pub backtrack_request_creation_time: Option<String>,
    pub backtrack_to: Option<String>,
    pub backtracked_from: Option<String>,
    pub db_cluster_identifier: Option<String>,
    pub status: Option<String>,
}

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

Fields

backtrack_identifier: Option<String>

Contains the backtrack identifier.

backtrack_request_creation_time: Option<String>

The timestamp of the time at which the backtrack was requested.

backtrack_to: Option<String>

The timestamp of the time to which the DB cluster was backtracked.

backtracked_from: Option<String>

The timestamp of the time from which the DB cluster was backtracked.

db_cluster_identifier: Option<String>

Contains a user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.

status: Option<String>

The status of the backtrack. This property returns one of the following values:

  • applying - The backtrack is currently being applied to or rolled back from the DB cluster.

  • completed - The backtrack has successfully been applied to or rolled back from the DB cluster.

  • failed - An error occurred while the backtrack was applied to or rolled back from the DB cluster.

  • pending - The backtrack is currently pending application to or rollback from the DB cluster.

Trait Implementations

impl Clone for DBClusterBacktrack[src]

impl Default for DBClusterBacktrack[src]

impl PartialEq<DBClusterBacktrack> for DBClusterBacktrack[src]

impl Debug for DBClusterBacktrack[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self