AutomationExecution
public struct AutomationExecution : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The execution ID.
Declaration
Swift
public let automationExecutionId: String?
-
The execution status of the Automation.
Declaration
Swift
public let automationExecutionStatus: AutomationExecutionStatus?
-
The action of the step that is currently running.
Declaration
Swift
public let currentAction: String?
-
The name of the step that is currently running.
Declaration
Swift
public let currentStepName: String?
-
The name of the Automation document used during the execution.
Declaration
Swift
public let documentName: String?
-
The version of the document to use during execution.
Declaration
Swift
public let documentVersion: String?
-
The Amazon Resource Name (ARN) of the user who ran the automation.
Declaration
Swift
public let executedBy: String?
-
The time the execution finished.
Declaration
Swift
public let executionEndTime: TimeStamp?
-
The time the execution started.
Declaration
Swift
public let executionStartTime: TimeStamp?
-
A message describing why an execution has failed, if the status is set to Failed.
Declaration
Swift
public let failureMessage: String?
-
The MaxConcurrency value specified by the user when the execution started.
Declaration
Swift
public let maxConcurrency: String?
-
The MaxErrors value specified by the user when the execution started.
Declaration
Swift
public let maxErrors: String?
-
The automation execution mode.
Declaration
Swift
public let mode: ExecutionMode?
-
The list of execution outputs as defined in the automation document.
Declaration
Swift
public let outputs: [String : [String]]?
-
The key-value map of execution parameters, which were supplied when calling StartAutomationExecution.
Declaration
Swift
public let parameters: [String : [String]]?
-
The AutomationExecutionId of the parent automation.
Declaration
Swift
public let parentAutomationExecutionId: String?
-
An aggregate of step execution statuses displayed in the AWS Console for a multi-Region and multi-account Automation execution.
Declaration
Swift
public let progressCounters: ProgressCounters?
-
A list of resolved targets in the rate control execution.
Declaration
Swift
public let resolvedTargets: ResolvedTargets?
-
A list of details about the current state of all steps that comprise an execution. An Automation document contains a list of steps that are run in order.
Declaration
Swift
public let stepExecutions: [StepExecution]?
-
A boolean value that indicates if the response contains the full list of the Automation step executions. If true, use the DescribeAutomationStepExecutions API action to get the full list of step executions.
Declaration
Swift
public let stepExecutionsTruncated: Bool?
-
The target of the execution.
Declaration
Swift
public let target: String?
-
The combination of AWS Regions and/or AWS accounts where you want to run the Automation.
Declaration
Swift
public let targetLocations: [TargetLocation]?
-
The specified key-value mapping of document parameters to target resources.
Declaration
Swift
public let targetMaps: [[String : [String]]]?
-
The parameter name.
Declaration
Swift
public let targetParameterName: String?
-
The specified targets.
Declaration
Swift
public let targets: [Target]?
-
init(automationExecutionId:automationExecutionStatus:currentAction:currentStepName:documentName:documentVersion:executedBy:executionEndTime:executionStartTime:failureMessage:maxConcurrency:maxErrors:mode:outputs:parameters:parentAutomationExecutionId:progressCounters:resolvedTargets:stepExecutions:stepExecutionsTruncated:target:targetLocations:targetMaps:targetParameterName:targets:)
Undocumented
Declaration
Swift
public init(automationExecutionId: String? = nil, automationExecutionStatus: AutomationExecutionStatus? = nil, currentAction: String? = nil, currentStepName: String? = nil, documentName: String? = nil, documentVersion: String? = nil, executedBy: String? = nil, executionEndTime: TimeStamp? = nil, executionStartTime: TimeStamp? = nil, failureMessage: String? = nil, maxConcurrency: String? = nil, maxErrors: String? = nil, mode: ExecutionMode? = nil, outputs: [String : [String]]? = nil, parameters: [String : [String]]? = nil, parentAutomationExecutionId: String? = nil, progressCounters: ProgressCounters? = nil, resolvedTargets: ResolvedTargets? = nil, stepExecutions: [StepExecution]? = nil, stepExecutionsTruncated: Bool? = nil, target: String? = nil, targetLocations: [TargetLocation]? = nil, targetMaps: [[String : [String]]]? = nil, targetParameterName: String? = nil, targets: [Target]? = nil)