interface GatewayInterceptorConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnGatewayPropsMixin.GatewayInterceptorConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnGatewayPropsMixin_GatewayInterceptorConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnGatewayPropsMixin.GatewayInterceptorConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnGatewayPropsMixin.GatewayInterceptorConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnGatewayPropsMixin » GatewayInterceptorConfigurationProperty |
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 gatewayInterceptorConfigurationProperty: bedrockagentcore_mixins.CfnGatewayPropsMixin.GatewayInterceptorConfigurationProperty = {
inputConfiguration: {
passRequestHeaders: false,
},
interceptionPoints: ['interceptionPoints'],
interceptor: {
lambda: {
arn: 'arn',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| input | IResolvable | Interceptor | |
| interception | string[] | |
| interceptor? | IResolvable | Interceptor |
inputConfiguration?
Type:
IResolvable | Interceptor
(optional)
interceptionPoints?
Type:
string[]
(optional)
interceptor?
Type:
IResolvable | Interceptor
(optional)

.NET
Go
Java
Python
TypeScript