Interface CfnRouteV2Props
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouteV2Props.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:44.877Z")
@Stability(Deprecated)
@Deprecated
public interface CfnRouteV2Props
extends software.amazon.jsii.JsiiSerializable
Deprecated.
moved to package aws-apigatewayv2
(deprecated) Properties for defining a
AWS::ApiGatewayV2::Route.
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.apigateway.*;
Object requestModels;
Object requestParameters;
CfnRouteV2Props cfnRouteV2Props = CfnRouteV2Props.builder()
.apiId("apiId")
.routeKey("routeKey")
// the properties below are optional
.apiKeyRequired(false)
.authorizationScopes(List.of("authorizationScopes"))
.authorizationType("authorizationType")
.authorizerId("authorizerId")
.modelSelectionExpression("modelSelectionExpression")
.operationName("operationName")
.requestModels(requestModels)
.requestParameters(requestParameters)
.routeResponseSelectionExpression("routeResponseSelectionExpression")
.target("target")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnRouteV2Props.Builderbuilder()Deprecated.getApiId()Deprecated.default ObjectDeprecated.Deprecated.default StringDeprecated.default StringDeprecated.default StringDeprecated.default StringDeprecated.default ObjectDeprecated.default ObjectDeprecated.Deprecated.default StringDeprecated.default StringDeprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.ApiId. -
getRouteKey
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.RouteKey. -
getApiKeyRequired
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.ApiKeyRequired. -
getAuthorizationScopes
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.AuthorizationScopes. -
getAuthorizationType
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.AuthorizationType. -
getAuthorizerId
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.AuthorizerId. -
getModelSelectionExpression
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.ModelSelectionExpression. -
getOperationName
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.OperationName. -
getRequestModels
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.RequestModels. -
getRequestParameters
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.RequestParameters. -
getRouteResponseSelectionExpression
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.RouteResponseSelectionExpression. -
getTarget
Deprecated.(deprecated)AWS::ApiGatewayV2::Route.Target. -
builder
Deprecated.- Returns:
- a
CfnRouteV2Props.BuilderofCfnRouteV2Props
-