[][src]Struct rusoto_lightsail::RelationalDatabaseSnapshot

pub struct RelationalDatabaseSnapshot {
    pub arn: Option<String>,
    pub created_at: Option<f64>,
    pub engine: Option<String>,
    pub engine_version: Option<String>,
    pub from_relational_database_arn: Option<String>,
    pub from_relational_database_blueprint_id: Option<String>,
    pub from_relational_database_bundle_id: Option<String>,
    pub from_relational_database_name: Option<String>,
    pub location: Option<ResourceLocation>,
    pub name: Option<String>,
    pub resource_type: Option<String>,
    pub size_in_gb: Option<i64>,
    pub state: Option<String>,
    pub support_code: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Describes a database snapshot.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the database snapshot.

created_at: Option<f64>

The timestamp when the database snapshot was created.

engine: Option<String>

The software of the database snapshot (for example, MySQL)

engine_version: Option<String>

The database engine version for the database snapshot (for example, 5.7.23).

from_relational_database_arn: Option<String>

The Amazon Resource Name (ARN) of the database from which the database snapshot was created.

from_relational_database_blueprint_id: Option<String>

The blueprint ID of the database from which the database snapshot was created. A blueprint describes the major engine version of a database.

from_relational_database_bundle_id: Option<String>

The bundle ID of the database from which the database snapshot was created.

from_relational_database_name: Option<String>

The name of the source database from which the database snapshot was created.

location: Option<ResourceLocation>

The Region name and Availability Zone where the database snapshot is located.

name: Option<String>

The name of the database snapshot.

resource_type: Option<String>

The Lightsail resource type.

size_in_gb: Option<i64>

The size of the disk in GB (for example, 32) for the database snapshot.

state: Option<String>

The state of the database snapshot.

support_code: Option<String>

The support code for the database snapshot. Include this code in your email to support when you have questions about a database snapshot in Lightsail. This code enables our support team to look up your Lightsail information more easily.

tags: Option<Vec<Tag>>

The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Lightsail Dev Guide.

Trait Implementations

impl PartialEq<RelationalDatabaseSnapshot> for RelationalDatabaseSnapshot[src]

impl Default for RelationalDatabaseSnapshot[src]

impl Clone for RelationalDatabaseSnapshot[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RelationalDatabaseSnapshot[src]

impl<'de> Deserialize<'de> for RelationalDatabaseSnapshot[src]

Auto Trait Implementations

impl Send for RelationalDatabaseSnapshot

impl Sync for RelationalDatabaseSnapshot

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self