[−][src]Struct rusoto_sms::ReplicationJob
Represents a replication job.
Fields
description: Option<String>
The description of the replication job.
encrypted: Option<bool>
Whether the replication job should produce encrypted AMIs or not. 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.
latest_ami_id: Option<String>
The ID of the latest Amazon Machine Image (AMI).
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>
Number of recent AMIs to keep in the customer's account for a replication job. By default the value is set to zero, meaning that all AMIs are kept.
replication_job_id: Option<String>
The identifier of the replication job.
replication_run_list: Option<Vec<ReplicationRun>>
Information about the replication runs.
role_name: Option<String>
The name of the IAM role to be used by the Server Migration Service.
run_once: Option<bool>
seed_replication_time: Option<f64>
The seed replication time.
server_id: Option<String>
The identifier of the server.
server_type: Option<String>
The type of server.
state: Option<String>
The state of the replication job.
status_message: Option<String>
The description of the current status of the replication job.
vm_server: Option<VmServer>
Information about the VM server.
Trait Implementations
impl PartialEq<ReplicationJob> for ReplicationJob
[src]
fn eq(&self, other: &ReplicationJob) -> bool
[src]
fn ne(&self, other: &ReplicationJob) -> bool
[src]
impl Default for ReplicationJob
[src]
fn default() -> ReplicationJob
[src]
impl Clone for ReplicationJob
[src]
fn clone(&self) -> ReplicationJob
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ReplicationJob
[src]
impl<'de> Deserialize<'de> for ReplicationJob
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for ReplicationJob
impl Sync for ReplicationJob
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self