[][src]Struct rusoto_ssm::DescribeAssociationExecutionTargetsRequest

pub struct DescribeAssociationExecutionTargetsRequest {
    pub association_id: String,
    pub execution_id: String,
    pub filters: Option<Vec<AssociationExecutionTargetsFilter>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

The association ID that includes the execution for which you want to view details.

The execution ID for which you want to view details.

Filters for the request. You can specify the following filters and values.

Status (EQUAL)

ResourceId (EQUAL)

ResourceType (EQUAL)

The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

A token to start the list. Use this token to get the next set of results.

Trait Implementations

impl Clone for DescribeAssociationExecutionTargetsRequest
[src]

Performs copy-assignment from source. Read more

impl Default for DescribeAssociationExecutionTargetsRequest
[src]

impl PartialEq<DescribeAssociationExecutionTargetsRequest> for DescribeAssociationExecutionTargetsRequest
[src]

impl Debug for DescribeAssociationExecutionTargetsRequest
[src]

impl Serialize for DescribeAssociationExecutionTargetsRequest
[src]

Auto Trait Implementations

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]

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.

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

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.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T