CreateFlowDefinitionRequest
public struct CreateFlowDefinitionRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of your flow definition.
Declaration
Swift
public let flowDefinitionName: String
-
An object containing information about the events that trigger a human workflow.
Declaration
Swift
public let humanLoopActivationConfig: HumanLoopActivationConfig?
-
An object containing information about the tasks the human reviewers will perform.
Declaration
Swift
public let humanLoopConfig: HumanLoopConfig
-
Container for configuring the source of human task requests. Use to specify if Amazon Rekognition or Amazon Textract is used as an integration source.
Declaration
Swift
public let humanLoopRequestSource: HumanLoopRequestSource?
-
An object containing information about where the human review results will be uploaded.
Declaration
Swift
public let outputConfig: FlowDefinitionOutputConfig
-
The Amazon Resource Name (ARN) of the role needed to call other services on your behalf. For example, arn:aws:iam::1234567890:role/service-role/AmazonSageMaker-ExecutionRole-20180111T151298.
Declaration
Swift
public let roleArn: String
-
An array of key-value pairs that contain metadata to help you categorize and organize a flow definition. Each tag consists of a key and a value, both of which you define.
Declaration
Swift
public let tags: [Tag]?
-
init(flowDefinitionName:humanLoopActivationConfig:humanLoopConfig:humanLoopRequestSource:outputConfig:roleArn:tags:)
Undocumented
Declaration
Swift
public init(flowDefinitionName: String, humanLoopActivationConfig: HumanLoopActivationConfig? = nil, humanLoopConfig: HumanLoopConfig, humanLoopRequestSource: HumanLoopRequestSource? = nil, outputConfig: FlowDefinitionOutputConfig, roleArn: String, tags: [Tag]? = nil)
-
Declaration
Swift
public func validate(name: String) throws