interface AgentFlowNodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowVersionPropsMixin.AgentFlowNodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowVersionPropsMixin_AgentFlowNodeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowVersionPropsMixin.AgentFlowNodeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowVersionPropsMixin.AgentFlowNodeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowVersionPropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const agentFlowNodeConfigurationProperty: bedrock_mixins.CfnFlowVersionPropsMixin.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