[][src]Struct rusoto_ssm::AssociationExecutionTarget

pub struct AssociationExecutionTarget {
    pub association_id: Option<String>,
    pub association_version: Option<String>,
    pub detailed_status: Option<String>,
    pub execution_id: Option<String>,
    pub last_execution_date: Option<f64>,
    pub output_source: Option<OutputSource>,
    pub resource_id: Option<String>,
    pub resource_type: Option<String>,
    pub status: Option<String>,
}

Includes information about the specified association execution.

Fields

association_id: Option<String>

The association ID.

association_version: Option<String>

The association version.

detailed_status: Option<String>

Detailed information about the execution status.

execution_id: Option<String>

The execution ID.

last_execution_date: Option<f64>

The date of the last execution.

output_source: Option<OutputSource>

The location where the association details are saved.

resource_id: Option<String>

The resource ID, for example, the instance ID where the association ran.

resource_type: Option<String>

The resource type, for example, instance.

status: Option<String>

The association execution status.

Trait Implementations

impl PartialEq<AssociationExecutionTarget> for AssociationExecutionTarget[src]

impl Default for AssociationExecutionTarget[src]

impl Clone for AssociationExecutionTarget[src]

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

Performs copy-assignment from source. Read more

impl Debug for AssociationExecutionTarget[src]

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

Auto Trait Implementations

impl Send for AssociationExecutionTarget

impl Sync for AssociationExecutionTarget

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