@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-07T23:46:59.821Z") @Stability(value=Experimental) public interface HttpRouteAuthorizerConfig extends software.amazon.jsii.JsiiSerializable
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.*;
HttpRouteAuthorizerConfig httpRouteAuthorizerConfig = HttpRouteAuthorizerConfig.builder()
.authorizationType("authorizationType")
// the properties below are optional
.authorizationScopes(List.of("authorizationScopes"))
.authorizerId("authorizerId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HttpRouteAuthorizerConfig.Builder
A builder for
HttpRouteAuthorizerConfig |
static class |
HttpRouteAuthorizerConfig.Jsii$Proxy
An implementation for
HttpRouteAuthorizerConfig |
| Modifier and Type | Method and Description |
|---|---|
static HttpRouteAuthorizerConfig.Builder |
builder() |
default List<String> |
getAuthorizationScopes()
(experimental) The list of OIDC scopes to include in the authorization.
|
String |
getAuthorizationType()
(experimental) The type of authorization.
|
default String |
getAuthorizerId()
(experimental) The authorizer id.
|
@Stability(value=Experimental) @NotNull String getAuthorizationType()
Possible values are:
@Stability(value=Experimental) @Nullable default List<String> getAuthorizationScopes()
Default: - no authorization scopes
@Stability(value=Experimental) @Nullable default String getAuthorizerId()
Default: - No authorizer id (useful for AWS_IAM route authorizer)
@Stability(value=Experimental) static HttpRouteAuthorizerConfig.Builder builder()
HttpRouteAuthorizerConfig.Builder of HttpRouteAuthorizerConfigCopyright © 2022. All rights reserved.