interface ApiGatewayTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayTargetPropsMixin.ApiGatewayTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayTargetPropsMixin_ApiGatewayTargetConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayTargetPropsMixin.ApiGatewayTargetConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayTargetPropsMixin.ApiGatewayTargetConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayTargetPropsMixin » ApiGatewayTargetConfigurationProperty |
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 apiGatewayTargetConfigurationProperty: bedrockagentcore.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