interface AgentFlowNodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnFlowPropsMixin.AgentFlowNodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnFlowPropsMixin_AgentFlowNodeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnFlowPropsMixin.AgentFlowNodeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnFlowPropsMixin.AgentFlowNodeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnFlowPropsMixin » AgentFlowNodeConfigurationProperty |
Defines an agent node in your flow.
You specify the agent to invoke at this point in the flow. For more information, see Node types in a flow in the Amazon Bedrock User Guide.
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 agentFlowNodeConfigurationProperty: bedrock.CfnFlowPropsMixin.AgentFlowNodeConfigurationProperty = {
agentAliasArn: 'agentAliasArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The Amazon Resource Name (ARN) of the alias of the agent to invoke. |
agentAliasArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the alias of the agent to invoke.

.NET
Go
Java
Python
TypeScript