Interface CfnGatewayProps

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

@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)", date="2025-11-10T13:39:59.639Z") @Stability(Stable) public interface CfnGatewayProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnGateway.

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.*;
 CfnGatewayProps cfnGatewayProps = CfnGatewayProps.builder()
         .authorizerType("authorizerType")
         .name("name")
         .protocolType("protocolType")
         .roleArn("roleArn")
         // the properties below are optional
         .authorizerConfiguration(AuthorizerConfigurationProperty.builder()
                 .customJwtAuthorizer(CustomJWTAuthorizerConfigurationProperty.builder()
                         .discoveryUrl("discoveryUrl")
                         // the properties below are optional
                         .allowedAudience(List.of("allowedAudience"))
                         .allowedClients(List.of("allowedClients"))
                         .build())
                 .build())
         .description("description")
         .exceptionLevel("exceptionLevel")
         .kmsKeyArn("kmsKeyArn")
         .protocolConfiguration(GatewayProtocolConfigurationProperty.builder()
                 .mcp(MCPGatewayConfigurationProperty.builder()
                         .instructions("instructions")
                         .searchType("searchType")
                         .supportedVersions(List.of("supportedVersions"))
                         .build())
                 .build())
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: