Struct rusoto_ssm::GetMaintenanceWindowTaskResult[][src]

pub struct GetMaintenanceWindowTaskResult {
    pub description: Option<String>,
    pub logging_info: Option<LoggingInfo>,
    pub max_concurrency: Option<String>,
    pub max_errors: Option<String>,
    pub name: Option<String>,
    pub priority: Option<i64>,
    pub service_role_arn: Option<String>,
    pub targets: Option<Vec<Target>>,
    pub task_arn: Option<String>,
    pub task_invocation_parameters: Option<MaintenanceWindowTaskInvocationParameters>,
    pub task_parameters: Option<HashMap<String, MaintenanceWindowTaskParameterValueExpression>>,
    pub task_type: Option<String>,
    pub window_id: Option<String>,
    pub window_task_id: Option<String>,
}

Fields

The retrieved task description.

The location in Amazon S3 where the task results are logged.

LoggingInfo has been deprecated. To specify an S3 bucket to contain logs, instead use the OutputS3BucketName and OutputS3KeyPrefix options in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported Maintenance Window task types, see MaintenanceWindowTaskInvocationParameters.

The maximum number of targets allowed to run this task in parallel.

The maximum number of errors allowed before the task stops being scheduled.

The retrieved task name.

The priority of the task when it executes. The lower the number, the higher the priority. Tasks that have the same priority are scheduled in parallel.

The IAM service role to assume during task execution.

The targets where the task should execute.

The resource that the task used during execution. For RUN_COMMAND and AUTOMATION task types, the TaskArn is the Systems Manager Document name/ARN. For LAMBDA tasks, the value is the function name/ARN. For STEP_FUNCTION tasks, the value is the state machine ARN.

The parameters to pass to the task when it executes.

The parameters to pass to the task when it executes.

TaskParameters has been deprecated. To specify parameters to pass to a task when it runs, instead use the Parameters option in the TaskInvocationParameters structure. For information about how Systems Manager handles these options for the supported Maintenance Window task types, see MaintenanceWindowTaskInvocationParameters.

The type of task to execute.

The retrieved Maintenance Window ID.

The retrieved Maintenance Window task ID.

Trait Implementations

impl Default for GetMaintenanceWindowTaskResult
[src]

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

impl Debug for GetMaintenanceWindowTaskResult
[src]

Formats the value using the given formatter. Read more

impl Clone for GetMaintenanceWindowTaskResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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