StartExecutionInput
public struct StartExecutionInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The string that contains the JSON input data for the execution, for example: “input”: “{\"first_name\” : \“test\”}“ If you don’t include any JSON input data, you still must include the two braces, for example: "input”: “{}” Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
Declaration
Swift
public let input: String?
-
The name of the execution. This name must be unique for your AWS account, region, and state machine for 90 days. For more information, see Limits Related to State Machine Executions in the AWS Step Functions Developer Guide. 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 Amazon Resource Name (ARN) of the state machine to execute.
Declaration
Swift
public let stateMachineArn: String
-
Undocumented
Declaration
Swift
public init(input: String? = nil, name: String? = nil, stateMachineArn: String)
-
Declaration
Swift
public func validate(name: String) throws