Struct rusoto_ssm::AutomationExecutionFilter[][src]

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

A filter used to match specific automation executions. This is used to limit the scope of Automation execution information returned.

Fields

One or more keys to limit the results. Valid filter keys include the following: DocumentNamePrefix, ExecutionStatus, ExecutionId, ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter.

The values used to limit the execution information associated with the filter's key.

Trait Implementations

impl Default for AutomationExecutionFilter
[src]

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

impl Debug for AutomationExecutionFilter
[src]

Formats the value using the given formatter. Read more

impl Clone for AutomationExecutionFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AutomationExecutionFilter
[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