Class CfnFlowVersionPropsMixin.FlowNodeOutputProperty
Contains configurations for an output from a node.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Bedrock
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFlowVersionPropsMixin.FlowNodeOutputProperty : CfnFlowVersionPropsMixin.IFlowNodeOutputProperty
Syntax (vb)
Public Class CfnFlowVersionPropsMixin.FlowNodeOutputProperty Implements CfnFlowVersionPropsMixin.IFlowNodeOutputProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Bedrock;
var flowNodeOutputProperty = new FlowNodeOutputProperty {
Name = "name",
Type = "type"
};
Synopsis
Constructors
| FlowNodeOutputProperty() | Contains configurations for an output from a node. |
Properties
| Name | A name for the output that you can reference. |
| Type | The data type of the output. |
Constructors
FlowNodeOutputProperty()
Contains configurations for an output from a node.
public FlowNodeOutputProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Bedrock;
var flowNodeOutputProperty = new FlowNodeOutputProperty {
Name = "name",
Type = "type"
};
Properties
Name
A name for the output that you can reference.
public string? Name { get; set; }
Property Value
Remarks
Type
The data type of the output.
public string? Type { get; set; }
Property Value
Remarks
If the output doesn't match this type at runtime, a validation error will be thrown.