interface CfnFlowVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnFlowVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnFlowVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnFlowVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnFlowVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnFlowVersionMixinProps |
Properties for CfnFlowVersionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-flowversion.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const cfnFlowVersionMixinProps: bedrock.CfnFlowVersionMixinProps = {
description: 'description',
flowArn: 'flowArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the flow version. |
| flow | string | The Amazon Resource Name (ARN) of the flow that the version belongs to. |
description?
Type:
string
(optional)
The description of the flow version.
flowArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the flow that the version belongs to.

.NET
Go
Java
Python
TypeScript