interface InterceptorInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGateway.InterceptorInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGateway_InterceptorInputConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGateway.InterceptorInputConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGateway.InterceptorInputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGateway » InterceptorInputConfigurationProperty |
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 interceptorInputConfigurationProperty: bedrockagentcore.CfnGateway.InterceptorInputConfigurationProperty = {
passRequestHeaders: false,
// the properties below are optional
payloadFilter: {
exclude: [{
field: 'field',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| pass | boolean | IResolvable | |
| payload | IResolvable | Interceptor |
passRequestHeaders
Type:
boolean | IResolvable
payloadFilter?
Type:
IResolvable | Interceptor
(optional)

.NET
Go
Java
Python
TypeScript