interface AgentFlowNodeConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_bedrock.CfnFlowVersion.AgentFlowNodeConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnFlowVersion_AgentFlowNodeConfigurationProperty | 
|  Java | software.amazon.awscdk.services.bedrock.CfnFlowVersion.AgentFlowNodeConfigurationProperty | 
|  Python | aws_cdk.aws_bedrock.CfnFlowVersion.AgentFlowNodeConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_bedrock»CfnFlowVersion»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-lib';
const agentFlowNodeConfigurationProperty: bedrock.CfnFlowVersion.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
The Amazon Resource Name (ARN) of the alias of the agent to invoke.
