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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGateway.GatewayInterceptorConfigurationPropertystatic final classAn implementation forCfnGateway.GatewayInterceptorConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnGateway.InterceptorInputConfigurationPropertyReturns union: eitherIResolvableorCfnGateway.InterceptorConfigurationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInterceptionPoints
- See Also:
-
getInterceptor
Returns union: eitherIResolvableorCfnGateway.InterceptorConfigurationProperty- See Also:
-
getInputConfiguration
Returns union: eitherIResolvableorCfnGateway.InterceptorInputConfigurationProperty- See Also:
-
builder
-