All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGatewayMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:56.679Z") @Stability(Stable) public interface CfnGatewayMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnGatewayPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.*;
 CfnGatewayMixinProps cfnGatewayMixinProps = CfnGatewayMixinProps.builder()
         .authorizerConfiguration(AuthorizerConfigurationProperty.builder()
                 .customJwtAuthorizer(CustomJWTAuthorizerConfigurationProperty.builder()
                         .allowedAudience(List.of("allowedAudience"))
                         .allowedClients(List.of("allowedClients"))
                         .allowedScopes(List.of("allowedScopes"))
                         .customClaims(List.of(CustomClaimValidationTypeProperty.builder()
                                 .authorizingClaimMatchValue(AuthorizingClaimMatchValueTypeProperty.builder()
                                         .claimMatchOperator("claimMatchOperator")
                                         .claimMatchValue(ClaimMatchValueTypeProperty.builder()
                                                 .matchValueString("matchValueString")
                                                 .matchValueStringList(List.of("matchValueStringList"))
                                                 .build())
                                         .build())
                                 .inboundTokenClaimName("inboundTokenClaimName")
                                 .inboundTokenClaimValueType("inboundTokenClaimValueType")
                                 .build()))
                         .discoveryUrl("discoveryUrl")
                         .build())
                 .build())
         .authorizerType("authorizerType")
         .description("description")
         .exceptionLevel("exceptionLevel")
         .interceptorConfigurations(List.of(GatewayInterceptorConfigurationProperty.builder()
                 .inputConfiguration(InterceptorInputConfigurationProperty.builder()
                         .passRequestHeaders(false)
                         .build())
                 .interceptionPoints(List.of("interceptionPoints"))
                 .interceptor(InterceptorConfigurationProperty.builder()
                         .lambda(LambdaInterceptorConfigurationProperty.builder()
                                 .arn("arn")
                                 .build())
                         .build())
                 .build()))
         .kmsKeyArn("kmsKeyArn")
         .name("name")
         .protocolConfiguration(GatewayProtocolConfigurationProperty.builder()
                 .mcp(MCPGatewayConfigurationProperty.builder()
                         .instructions("instructions")
                         .searchType("searchType")
                         .supportedVersions(List.of("supportedVersions"))
                         .build())
                 .build())
         .protocolType("protocolType")
         .roleArn("roleArn")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: