interface ApiGatewayToolOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.ApiGatewayToolOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_ApiGatewayToolOverrideProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.ApiGatewayToolOverrideProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.ApiGatewayToolOverrideProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » ApiGatewayToolOverrideProperty |
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 apiGatewayToolOverrideProperty: bedrockagentcore.CfnGatewayTarget.ApiGatewayToolOverrideProperty = {
method: 'method',
name: 'name',
path: 'path',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| method | string | |
| name | string | |
| path | string | |
| description? | string |
method
Type:
string
name
Type:
string
path
Type:
string
description?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript