interface FlowNodeOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnFlowPropsMixin.FlowNodeOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnFlowPropsMixin_FlowNodeOutputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnFlowPropsMixin.FlowNodeOutputProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnFlowPropsMixin.FlowNodeOutputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const flowNodeOutputProperty: bedrock.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