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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGatewayPropsstatic final classAn implementation forCfnGatewayProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGatewayProps.Builderbuilder()default ObjectReturns union: eitherIResolvableorCfnGateway.AuthorizerConfigurationPropertyThe authorizer type for the gateway.default StringThe description for the gateway.default StringThe exception level for the gateway.default StringThe KMS key ARN for the gateway.getName()The name for the gateway.default ObjectThe protocol configuration for the gateway target.The protocol type for the gateway target.getTags()The tags for the gateway.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizerType
The authorizer type for the gateway.- See Also:
-
getName
The name for the gateway.- See Also:
-
getProtocolType
The protocol type for the gateway target.- See Also:
-
getRoleArn
- See Also:
-
getAuthorizerConfiguration
Returns union: eitherIResolvableorCfnGateway.AuthorizerConfigurationProperty- See Also:
-
getDescription
The description for the gateway.- See Also:
-
getExceptionLevel
The exception level for the gateway.- See Also:
-
getKmsKeyArn
The KMS key ARN for the gateway.- See Also:
-
getProtocolConfiguration
The protocol configuration for the gateway target.Returns union: either
IResolvableorCfnGateway.GatewayProtocolConfigurationProperty- See Also:
-
getTags
The tags for the gateway.- See Also:
-
builder
- Returns:
- a
CfnGatewayProps.BuilderofCfnGatewayProps
-