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

.NET
Go
Java
Python
TypeScript