interface FunctionSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAgentPropsMixin.FunctionSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAgentPropsMixin_FunctionSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAgentPropsMixin.FunctionSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAgentPropsMixin.FunctionSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const functionSchemaProperty: bedrock.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