interface FlowNodeOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowPropsMixin.FlowNodeOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowPropsMixin_FlowNodeOutputProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowPropsMixin.FlowNodeOutputProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowPropsMixin.FlowNodeOutputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowPropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const flowNodeOutputProperty: bedrock_mixins.CfnFlowPropsMixin.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
(optional)
A name for the output that you can reference.
type?
Type:
string
(optional)
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