[][src]Struct rusoto_sms::UpdateReplicationJobRequest

pub struct UpdateReplicationJobRequest {
    pub description: Option<String>,
    pub encrypted: Option<bool>,
    pub frequency: Option<i64>,
    pub kms_key_id: Option<String>,
    pub license_type: Option<String>,
    pub next_replication_run_start_time: Option<f64>,
    pub number_of_recent_amis_to_keep: Option<i64>,
    pub replication_job_id: String,
    pub role_name: Option<String>,
}

Fields

description: Option<String>

The description of the replication job.

encrypted: Option<bool>

When true, the replication job produces encrypted AMIs . See also KmsKeyId below.

frequency: Option<i64>

The time between consecutive replication runs, in hours.

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.

license_type: Option<String>

The license type to be used for the AMI created by a successful replication run.

next_replication_run_start_time: Option<f64>

The start time of the next replication run.

number_of_recent_amis_to_keep: Option<i64>

The maximum number of SMS-created AMIs to retain. The oldest will be deleted once the maximum number is reached and a new AMI is created.

replication_job_id: String

The identifier of the replication job.

role_name: Option<String>

The name of the IAM role to be used by AWS SMS.

Trait Implementations

impl PartialEq<UpdateReplicationJobRequest> for UpdateReplicationJobRequest[src]

impl Default for UpdateReplicationJobRequest[src]

impl Clone for UpdateReplicationJobRequest[src]

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

Performs copy-assignment from source. Read more

impl Debug for UpdateReplicationJobRequest[src]

impl Serialize for UpdateReplicationJobRequest[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> Erased for T

impl<T> Same for T

type Output = T

Should always be Self