interface FunctionSchemaProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_bedrock.CfnAgent.FunctionSchemaProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAgent_FunctionSchemaProperty |
![]() | software.amazon.awscdk.services.bedrock.CfnAgent.FunctionSchemaProperty |
![]() | aws_cdk.aws_bedrock.CfnAgent.FunctionSchemaProperty |
![]() | aws-cdk-lib » aws_bedrock » CfnAgent » FunctionSchemaProperty |
Contains details about the function schema for the action group or the JSON or YAML-formatted payload defining the schema.
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 functionSchemaProperty: bedrock.CfnAgent.FunctionSchemaProperty = {
functions: [{
name: 'name',
// the properties below are optional
description: 'description',
parameters: {
parametersKey: {
type: 'type',
// the properties below are optional
description: 'description',
required: false,
},
},
requireConfirmation: 'requireConfirmation',
}],
};
Properties
Name | Type | Description |
---|---|---|
functions | IResolvable | IResolvable | Function [] | A list of functions that each define an action in the action group. |
functions
Type:
IResolvable
|
IResolvable
|
Function
[]
A list of functions that each define an action in the action group.