interface ToolSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayTargetPropsMixin.ToolSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayTargetPropsMixin_ToolSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayTargetPropsMixin.ToolSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayTargetPropsMixin.ToolSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayTargetPropsMixin » ToolSchemaProperty |
The tool schema for the gateway target.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
declare const schemaDefinitionProperty_: bedrockagentcore.CfnGatewayTargetPropsMixin.SchemaDefinitionProperty;
const toolSchemaProperty: bedrockagentcore.CfnGatewayTargetPropsMixin.ToolSchemaProperty = {
inlinePayload: [{
description: 'description',
inputSchema: {
description: 'description',
items: schemaDefinitionProperty_,
properties: {
propertiesKey: schemaDefinitionProperty_,
},
required: ['required'],
type: 'type',
},
name: 'name',
outputSchema: {
description: 'description',
items: schemaDefinitionProperty_,
properties: {
propertiesKey: schemaDefinitionProperty_,
},
required: ['required'],
type: 'type',
},
}],
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| inline | IResolvable | (IResolvable | Tool)[] | The inline payload for the gateway target. |
| s3? | IResolvable | S3 | The S3 tool schema for the gateway target. |
inlinePayload?
Type:
IResolvable | (IResolvable | Tool)[]
(optional)
The inline payload for the gateway target.
s3?
Type:
IResolvable | S3
(optional)
The S3 tool schema for the gateway target.

.NET
Go
Java
Python
TypeScript