Struct rusoto_ssm::StepExecutionFilter[][src]

pub struct StepExecutionFilter {
    pub key: String,
    pub values: Vec<String>,
}

A filter to limit the amount of step execution information returned by the call.

Fields

One or more keys to limit the results. Valid filter keys include the following: StepName, Action, StepExecutionId, StepExecutionStatus, StartTimeBefore, StartTimeAfter.

The values of the filter key.

Trait Implementations

impl Default for StepExecutionFilter
[src]

Returns the "default value" for a type. Read more

impl Debug for StepExecutionFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for StepExecutionFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StepExecutionFilter
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations