[][src]Struct rusoto_sms::ReplicationRun

pub struct ReplicationRun {
    pub ami_id: Option<String>,
    pub completed_time: Option<f64>,
    pub description: Option<String>,
    pub encrypted: Option<bool>,
    pub kms_key_id: Option<String>,
    pub replication_run_id: Option<String>,
    pub scheduled_start_time: Option<f64>,
    pub stage_details: Option<ReplicationRunStageDetails>,
    pub state: Option<String>,
    pub status_message: Option<String>,
    pub type_: Option<String>,
}

Represents a replication run.

Fields

ami_id: Option<String>

The identifier of the Amazon Machine Image (AMI) from the replication run.

completed_time: Option<f64>

The completion time of the last replication run.

description: Option<String>

The description of the replication run.

encrypted: Option<bool>

Whether the replication run should produce encrypted AMI or not. See also KmsKeyId below.

kms_key_id: Option<String>

KMS key ID for replication jobs that produce encrypted AMIs. Can be any of the following:

  • KMS key ID

  • KMS key alias

  • ARN referring to KMS key ID

  • ARN referring to KMS key alias

If encrypted is true but a KMS key id is not specified, the customer's default KMS key for EBS is used.

replication_run_id: Option<String>

The identifier of the replication run.

scheduled_start_time: Option<f64>

The start time of the next replication run.

stage_details: Option<ReplicationRunStageDetails>

Details of the current stage of the replication run.

state: Option<String>

The state of the replication run.

status_message: Option<String>

The description of the current status of the replication job.

type_: Option<String>

The type of replication run.

Trait Implementations

impl PartialEq<ReplicationRun> for ReplicationRun[src]

impl Default for ReplicationRun[src]

impl Clone for ReplicationRun[src]

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

Performs copy-assignment from source. Read more

impl Debug for ReplicationRun[src]

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

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

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