ExecutionListItem

public struct ExecutionListItem : 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 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 date the execution started.

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

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

    Declaration

    Swift

    public let stopDate: TimeStamp?
  • Undocumented

    Declaration

    Swift

    public init(executionArn: String, name: String, startDate: TimeStamp, stateMachineArn: String, status: ExecutionStatus, stopDate: TimeStamp? = nil)