[][src]Struct rusoto_opsworkscm::Backup

pub struct Backup {
    pub backup_arn: Option<String>,
    pub backup_id: Option<String>,
    pub backup_type: Option<String>,
    pub created_at: Option<f64>,
    pub description: Option<String>,
    pub engine: Option<String>,
    pub engine_model: Option<String>,
    pub engine_version: Option<String>,
    pub instance_profile_arn: Option<String>,
    pub instance_type: Option<String>,
    pub key_pair: Option<String>,
    pub preferred_backup_window: Option<String>,
    pub preferred_maintenance_window: Option<String>,
    pub s3_log_url: Option<String>,
    pub security_group_ids: Option<Vec<String>>,
    pub server_name: Option<String>,
    pub service_role_arn: Option<String>,
    pub status: Option<String>,
    pub status_description: Option<String>,
    pub subnet_ids: Option<Vec<String>>,
    pub tools_version: Option<String>,
    pub user_arn: Option<String>,
}

Describes a single backup.

Fields

The ARN of the backup.

The generated ID of the backup. Example: myServerName-yyyyMMddHHmmssSSS

The backup type. Valid values are automated or manual.

The time stamp when the backup was created in the database. Example: 2016-07-29T13:38:47.520Z

A user-provided description for a manual backup. This field is empty for automated backups.

The engine type that is obtained from the server when the backup is created.

The engine model that is obtained from the server when the backup is created.

The engine version that is obtained from the server when the backup is created.

The EC2 instance profile ARN that is obtained from the server when the backup is created. Because this value is stored, you are not required to provide the InstanceProfileArn again if you restore a backup.

The instance type that is obtained from the server when the backup is created.

The key pair that is obtained from the server when the backup is created.

The preferred backup period that is obtained from the server when the backup is created.

The preferred maintenance period that is obtained from the server when the backup is created.

The Amazon S3 URL of the backup's log file.

The security group IDs that are obtained from the server when the backup is created.

The name of the server from which the backup was made.

The service role ARN that is obtained from the server when the backup is created.

The status of a backup while in progress.

An informational message about backup status.

The subnet IDs that are obtained from the server when the backup is created.

The version of AWS OpsWorks CM-specific tools that is obtained from the server when the backup is created.

The IAM user ARN of the requester for manual backups. This field is empty for automated backups.

Trait Implementations

impl Default for Backup
[src]

Returns the "default value" for a type. Read more

impl PartialEq<Backup> for Backup
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Backup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Backup
[src]

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for Backup

impl Sync for Backup

Blanket Implementations

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

Performs the conversion.

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

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

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

recently added

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

impl<T> From for T
[src]

Performs the conversion.

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T