interface FlowNodeOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnFlow.FlowNodeOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnFlow_FlowNodeOutputProperty |
Java | software.amazon.awscdk.services.bedrock.CfnFlow.FlowNodeOutputProperty |
Python | aws_cdk.aws_bedrock.CfnFlow.FlowNodeOutputProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnFlow » FlowNodeOutputProperty |
Contains configurations for an output from a node.
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-lib';
const flowNodeOutputProperty: bedrock.CfnFlow.FlowNodeOutputProperty = {
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | A name for the output that you can reference. |
| type | string | The data type of the output. |
name
Type:
string
A name for the output that you can reference.
type
Type:
string
The data type of the output.
If the output doesn't match this type at runtime, a validation error will be thrown.

.NET
Go
Java
Python
TypeScript