interface FunctionSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAgentPropsMixin.FunctionSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAgentPropsMixin_FunctionSchemaProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAgentPropsMixin.FunctionSchemaProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAgentPropsMixin.FunctionSchemaProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnAgentPropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const functionSchemaProperty: bedrock_mixins.CfnAgentPropsMixin.FunctionSchemaProperty = {
functions: [{
description: 'description',
name: 'name',
parameters: {
parametersKey: {
description: 'description',
required: false,
type: 'type',
},
},
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)[]
(optional)
A list of functions that each define an action in the action group.

.NET
Go
Java
Python
TypeScript