interface ApiGatewayToolConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.ApiGatewayToolConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_ApiGatewayToolConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.ApiGatewayToolConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.ApiGatewayToolConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » ApiGatewayToolConfigurationProperty |
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-lib';
const apiGatewayToolConfigurationProperty: bedrockagentcore.CfnGatewayTarget.ApiGatewayToolConfigurationProperty = {
toolFilters: [{
filterPath: 'filterPath',
methods: ['methods'],
}],
// the properties below are optional
toolOverrides: [{
method: 'method',
name: 'name',
path: 'path',
// the properties below are optional
description: 'description',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| tool | IResolvable | (IResolvable | Api)[] | |
| tool | IResolvable | (IResolvable | Api)[] |
toolFilters
Type:
IResolvable | (IResolvable | Api)[]
toolOverrides?
Type:
IResolvable | (IResolvable | Api)[]
(optional)

.NET
Go
Java
Python
TypeScript