interface FunctionSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnAgent.FunctionSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAgent_FunctionSchemaProperty |
Java | software.amazon.awscdk.services.bedrock.CfnAgent.FunctionSchemaProperty |
Python | aws_cdk.aws_bedrock.CfnAgent.FunctionSchemaProperty |
TypeScript | 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.

.NET
Go
Java
Python
TypeScript