Values.CreateFlowRequestSourceCreates a prompt flow that you can use to send an input through various steps to yield an output. Configure nodes, each of which corresponds to a step of the flow, and create connections between the nodes to create paths to different outputs. For more information, see How it works and Create a flow in Amazon Bedrock in the Amazon Bedrock User Guide.
type nonrec t = {name : FlowName.t;A name for the flow.
*)description : FlowDescription.t option;A description for the flow.
*)executionRoleArn : FlowExecutionRoleArn.t;The Amazon Resource Name (ARN) of the service role with permissions to create and manage a flow. For more information, see Create a service role for flows in Amazon Bedrock in the Amazon Bedrock User Guide.
*)customerEncryptionKeyArn : KmsKeyArn.t option;The Amazon Resource Name (ARN) of the KMS key to encrypt the flow.
*)definition : FlowDefinition.t option;A definition of the nodes and connections between nodes in the flow.
*)clientToken : ClientToken.t option;A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.
*)}val make :
?description:??? ->
?customerEncryptionKeyArn:??? ->
?definition:??? ->
?clientToken:??? ->
?tags:??? ->
name:FlowName.t ->
executionRoleArn:FlowExecutionRoleArn.t ->
unit ->
t