Interface CfnApiGatewayManagedOverrides.RouteOverridesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApiGatewayManagedOverrides.RouteOverridesProperty.Jsii$Proxy
- Enclosing class:
CfnApiGatewayManagedOverrides
@Stability(Stable)
public static interface CfnApiGatewayManagedOverrides.RouteOverridesProperty
extends software.amazon.jsii.JsiiSerializable
The
RouteOverrides
property overrides the route configuration for an API Gateway-managed route.
If you remove this property, API Gateway restores the default values.
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.apigatewayv2.*; RouteOverridesProperty routeOverridesProperty = RouteOverridesProperty.builder() .authorizationScopes(List.of("authorizationScopes")) .authorizationType("authorizationType") .authorizerId("authorizerId") .operationName("operationName") .target("target") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApiGatewayManagedOverrides.RouteOverridesProperty
static final class
An implementation forCfnApiGatewayManagedOverrides.RouteOverridesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The authorization scopes supported by this route.default String
The authorization type for the route.default String
The identifier of theAuthorizer
resource to be associated with this route.default String
The operation name for the route.default String
For HTTP integrations, specify a fully qualified URL.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizationScopes
The authorization scopes supported by this route.- See Also:
-
getAuthorizationType
The authorization type for the route.To learn more, see AuthorizationType .
- See Also:
-
getAuthorizerId
The identifier of theAuthorizer
resource to be associated with this route.The authorizer identifier is generated by API Gateway when you created the authorizer.
- See Also:
-
getOperationName
The operation name for the route.- See Also:
-
getTarget
For HTTP integrations, specify a fully qualified URL.For Lambda integrations, specify a function ARN. The type of the integration will be HTTP_PROXY or AWS_PROXY, respectively.
- See Also:
-
builder
-