CreateStateMachineInput
public struct CreateStateMachineInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The Amazon States Language definition of the state machine. See Amazon States Language.
Declaration
Swift
public let definition: String
-
Defines what execution history events are logged and where they are logged. By default, the level is set to OFF. For more information see Log Levels in the AWS Step Functions User Guide.
Declaration
Swift
public let loggingConfiguration: LoggingConfiguration?
-
The name of the state machine. 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 IAM role to use for this state machine.
Declaration
Swift
public let roleArn: String
-
Tags to be added when creating a state machine. An array of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide, and Controlling Access Using IAM Tags. Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @.
Declaration
Swift
public let tags: [Tag]?
-
Determines whether a Standard or Express state machine is created. The default is STANDARD. You cannot update the type of a state machine once it has been created.
Declaration
Swift
public let type: StateMachineType?
-
Undocumented
Declaration
Swift
public init(definition: String, loggingConfiguration: LoggingConfiguration? = nil, name: String, roleArn: String, tags: [Tag]? = nil, type: StateMachineType? = nil)
-
Declaration
Swift
public func validate(name: String) throws