create_flow¶
Operation¶
create_flow
async
¶
create_flow(input: CreateFlowInput, plugins: list[Plugin] | None = None) -> CreateFlowOutput
Creates 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.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
CreateFlowInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
CreateFlowOutput
|
An instance of |
Input¶
CreateFlowInput
dataclass
¶
Dataclass for CreateFlowInput structure.
Attributes¶
client_token
class-attribute
instance-attribute
¶
client_token: str | None = None
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.
customer_encryption_key_arn
class-attribute
instance-attribute
¶
customer_encryption_key_arn: str | None = None
The Amazon Resource Name (ARN) of the KMS key to encrypt the flow.
definition
class-attribute
instance-attribute
¶
definition: FlowDefinition | None = field(repr=False, default=None)
A definition of the nodes and connections between nodes in the flow.
description
class-attribute
instance-attribute
¶
description: str | None = None
A description for the flow.
execution_role_arn
class-attribute
instance-attribute
¶
execution_role_arn: str | None = None
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.
tags
class-attribute
instance-attribute
¶
tags: dict[str, str] | None = None
Any tags that you want to attach to the flow. For more information, see Tagging resources in Amazon Bedrock.
Output¶
CreateFlowOutput
dataclass
¶
Dataclass for CreateFlowOutput structure.
Attributes¶
customer_encryption_key_arn
class-attribute
instance-attribute
¶
customer_encryption_key_arn: str | None = None
The Amazon Resource Name (ARN) of the KMS key that you encrypted the flow with.
definition
class-attribute
instance-attribute
¶
definition: FlowDefinition | None = field(repr=False, default=None)
A definition of the nodes and connections between nodes in the flow.
description
class-attribute
instance-attribute
¶
description: str | None = None
The description of the flow.
execution_role_arn
instance-attribute
¶
execution_role_arn: str
The Amazon Resource Name (ARN) of the service role with permissions to create a flow. For more information, see Create a service role for flows in Amazon Bedrock in the Amazon Bedrock User Guide.
status
instance-attribute
¶
status: FlowStatus
The status of the flow. When you submit this request, the status will be
NotPrepared. If creation fails, the status becomes Failed.
version
instance-attribute
¶
version: str
The version of the flow. When you create a flow, the version created is
the DRAFT version.