Struct rusoto_ssm::StartAutomationExecutionRequest[][src]

pub struct StartAutomationExecutionRequest {
    pub client_token: Option<String>,
    pub document_name: String,
    pub document_version: Option<String>,
    pub max_concurrency: Option<String>,
    pub max_errors: Option<String>,
    pub mode: Option<String>,
    pub parameters: Option<HashMap<String, Vec<String>>>,
    pub target_parameter_name: Option<String>,
    pub targets: Option<Vec<Target>>,
}

Fields

User-provided idempotency token. The token must be unique, is case insensitive, enforces the UUID format, and can't be reused.

The name of the Automation document to use for this execution.

The version of the Automation document to use for this execution.

The maximum number of targets allowed to run this task in parallel. You can specify a number, such as 10, or a percentage, such as 10%. The default value is 10.

The number of errors that are allowed before the system stops running the automation on additional targets. You can specify either an absolute number of errors, for example 10, or a percentage of the target set, for example 10%. If you specify 3, for example, the system stops running the automation when the fourth error is received. If you specify 0, then the system stops running the automation on additional targets after the first error result is returned. If you run an automation on 50 resources and set max-errors to 10%, then the system stops running the automation on additional targets when the sixth error is received.

Executions that are already running an automation when max-errors is reached are allowed to complete, but some of these executions may fail as well. If you need to ensure that there won't be more than max-errors failed executions, set max-concurrency to 1 so the executions proceed one at a time.

The execution mode of the automation. Valid modes include the following: Auto and Interactive. The default mode is Auto.

A key-value map of execution parameters, which match the declared parameters in the Automation document.

The name of the parameter used as the target resource for the rate-controlled execution. Required if you specify Targets.

A key-value mapping to target resources. Required if you specify TargetParameterName.

Trait Implementations

impl Default for StartAutomationExecutionRequest
[src]

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

impl Debug for StartAutomationExecutionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for StartAutomationExecutionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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