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

.NET
Go
Java
Python
TypeScript