DescribeExecutionOutput

public struct DescribeExecutionOutput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The Amazon Resource Name (ARN) that id entifies the execution.

    Declaration

    Swift

    public let executionArn: String
  • The string that contains the JSON input data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

    Declaration

    Swift

    public let input: String?
  • Undocumented

    Declaration

    Swift

    public let inputDetails: CloudWatchEventsExecutionDataDetails?
  • The name of the execution. A name must not contain: white space brackets < > { } [ ] wildcard characters ? * special characters “ # % \ ^ | ~ ` $ & , ; : / control characters (U+0000-001F, U+007F-009F) To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

    Declaration

    Swift

    public let name: String?
  • The JSON output data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding. This field is set only if the execution succeeds. If the execution fails, this field is null.

    Declaration

    Swift

    public let output: String?
  • Undocumented

    Declaration

    Swift

    public let outputDetails: CloudWatchEventsExecutionDataDetails?
  • The date the execution is started.

    Declaration

    Swift

    public let startDate: TimeStamp
  • The Amazon Resource Name (ARN) of the executed stated machine.

    Declaration

    Swift

    public let stateMachineArn: String
  • The current status of the execution.

    Declaration

    Swift

    public let status: ExecutionStatus
  • If the execution has already ended, the date the execution stopped.

    Declaration

    Swift

    public let stopDate: TimeStamp?
  • Undocumented

    Declaration

    Swift

    public init(executionArn: String, input: String? = nil, inputDetails: CloudWatchEventsExecutionDataDetails? = nil, name: String? = nil, output: String? = nil, outputDetails: CloudWatchEventsExecutionDataDetails? = nil, startDate: TimeStamp, stateMachineArn: String, status: ExecutionStatus, stopDate: TimeStamp? = nil)