interface ParameterDetailProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_bedrock.CfnAgent.ParameterDetailProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAgent_ParameterDetailProperty |
![]() | software.amazon.awscdk.services.bedrock.CfnAgent.ParameterDetailProperty |
![]() | aws_cdk.aws_bedrock.CfnAgent.ParameterDetailProperty |
![]() | aws-cdk-lib » aws_bedrock » CfnAgent » ParameterDetailProperty |
Contains details about a parameter in a function for an action group.
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 parameterDetailProperty: bedrock.CfnAgent.ParameterDetailProperty = {
type: 'type',
// the properties below are optional
description: 'description',
required: false,
};
Properties
Name | Type | Description |
---|---|---|
type | string | The data type of the parameter. |
description? | string | A description of the parameter. |
required? | boolean | IResolvable | Whether the parameter is required for the agent to complete the function for action group invocation. |
type
Type:
string
The data type of the parameter.
description?
Type:
string
(optional)
A description of the parameter.
Helps the foundation model determine how to elicit the parameters from the user.
required?
Type:
boolean |
IResolvable
(optional)
Whether the parameter is required for the agent to complete the function for action group invocation.