[][src]Struct rusoto_ssm::DescribeAutomationStepExecutionsRequest

pub struct DescribeAutomationStepExecutionsRequest {
    pub automation_execution_id: String,
    pub filters: Option<Vec<StepExecutionFilter>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub reverse_order: Option<bool>,
}

Fields

automation_execution_id: String

The Automation execution ID for which you want step execution descriptions.

filters: Option<Vec<StepExecutionFilter>>

One or more filters to limit the number of step executions returned by the request.

max_results: Option<i64>

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.

next_token: Option<String>

The token for the next set of items to return. (You received this token from a previous call.)

reverse_order: Option<bool>

A boolean that indicates whether to list step executions in reverse order by start time. The default value is false.

Trait Implementations

impl Clone for DescribeAutomationStepExecutionsRequest[src]

impl Default for DescribeAutomationStepExecutionsRequest[src]

impl PartialEq<DescribeAutomationStepExecutionsRequest> for DescribeAutomationStepExecutionsRequest[src]

impl Debug for DescribeAutomationStepExecutionsRequest[src]

impl Serialize for DescribeAutomationStepExecutionsRequest[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self