Interface CfnGateway.GatewayInterceptorConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGateway.GatewayInterceptorConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnGateway

@Stability(Stable) public static interface CfnGateway.GatewayInterceptorConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrockagentcore.*;
 GatewayInterceptorConfigurationProperty gatewayInterceptorConfigurationProperty = GatewayInterceptorConfigurationProperty.builder()
         .interceptionPoints(List.of("interceptionPoints"))
         .interceptor(InterceptorConfigurationProperty.builder()
                 .lambda(LambdaInterceptorConfigurationProperty.builder()
                         .arn("arn")
                         .build())
                 .build())
         // the properties below are optional
         .inputConfiguration(InterceptorInputConfigurationProperty.builder()
                 .passRequestHeaders(false)
                 .build())
         .build();
 

See Also: