Show / Hide Table of Contents

Class CfnFlowPropsMixin.InlineCodeFlowNodeConfigurationProperty

Contains configurations for an inline code node in your flow.

Inheritance
object
CfnFlowPropsMixin.InlineCodeFlowNodeConfigurationProperty
Implements
CfnFlowPropsMixin.IInlineCodeFlowNodeConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFlowPropsMixin.InlineCodeFlowNodeConfigurationProperty : CfnFlowPropsMixin.IInlineCodeFlowNodeConfigurationProperty
Syntax (vb)
Public Class CfnFlowPropsMixin.InlineCodeFlowNodeConfigurationProperty Implements CfnFlowPropsMixin.IInlineCodeFlowNodeConfigurationProperty
Remarks

Inline code nodes let you write and execute code directly within your flow, enabling data transformations, custom logic, and integrations without needing an external Lambda function.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-inlinecodeflownodeconfiguration.html

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.Mixins.Preview.AWS.Bedrock.Mixins;

             var inlineCodeFlowNodeConfigurationProperty = new InlineCodeFlowNodeConfigurationProperty {
                 Code = "code",
                 Language = "language"
             };

Synopsis

Constructors

InlineCodeFlowNodeConfigurationProperty()

Contains configurations for an inline code node in your flow.

Properties

Code

The code that's executed in your inline code node.

Language

The programming language used by your inline code node.

Constructors

InlineCodeFlowNodeConfigurationProperty()

Contains configurations for an inline code node in your flow.

public InlineCodeFlowNodeConfigurationProperty()
Remarks

Inline code nodes let you write and execute code directly within your flow, enabling data transformations, custom logic, and integrations without needing an external Lambda function.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-inlinecodeflownodeconfiguration.html

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.Mixins.Preview.AWS.Bedrock.Mixins;

             var inlineCodeFlowNodeConfigurationProperty = new InlineCodeFlowNodeConfigurationProperty {
                 Code = "code",
                 Language = "language"
             };

Properties

Code

The code that's executed in your inline code node.

public string? Code { get; set; }
Property Value

string

Remarks

The code can access input data from previous nodes in the flow, perform operations on that data, and produce output that can be used by other nodes in your flow.

The code must be valid in the programming language that you specify.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-inlinecodeflownodeconfiguration.html#cfn-bedrock-flow-inlinecodeflownodeconfiguration-code

Language

The programming language used by your inline code node.

public string? Language { get; set; }
Property Value

string

Remarks

The code must be valid in the programming language that you specify. Currently, only Python 3 ( Python_3 ) is supported.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-flow-inlinecodeflownodeconfiguration.html#cfn-bedrock-flow-inlinecodeflownodeconfiguration-language

Implements

CfnFlowPropsMixin.IInlineCodeFlowNodeConfigurationProperty
Back to top Generated by DocFX