interface ApiGatewayTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnGatewayTargetPropsMixin.ApiGatewayTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnGatewayTargetPropsMixin_ApiGatewayTargetConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnGatewayTargetPropsMixin.ApiGatewayTargetConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnGatewayTargetPropsMixin.ApiGatewayTargetConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnGatewayTargetPropsMixin » ApiGatewayTargetConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const apiGatewayTargetConfigurationProperty: bedrockagentcore_mixins.CfnGatewayTargetPropsMixin.ApiGatewayTargetConfigurationProperty = {
apiGatewayToolConfiguration: {
toolFilters: [{
filterPath: 'filterPath',
methods: ['methods'],
}],
toolOverrides: [{
description: 'description',
method: 'method',
name: 'name',
path: 'path',
}],
},
restApiId: 'restApiId',
stage: 'stage',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | IResolvable | Api | |
| rest | string | |
| stage? | string |
apiGatewayToolConfiguration?
Type:
IResolvable | Api
(optional)
restApiId?
Type:
string
(optional)
stage?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript