FlowVersionReference
- class aws_cdk.aws_bedrock.FlowVersionReference(*, flow_arn, version)
Bases:
object
A reference to a FlowVersion resource.
- Parameters:
flow_arn (
str
) – The FlowArn of the FlowVersion resource.version (
str
) – The Version of the FlowVersion resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_bedrock as bedrock flow_version_reference = bedrock.FlowVersionReference( flow_arn="flowArn", version="version" )
Attributes
- flow_arn
The FlowArn of the FlowVersion resource.
- version
The Version of the FlowVersion resource.