@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:04.859Z") @Stability(value=Stable) public interface CfnAuthorizerProps 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.*;
CfnAuthorizerProps cfnAuthorizerProps = CfnAuthorizerProps.builder()
.apiId("apiId")
.authorizerType("authorizerType")
.name("name")
// the properties below are optional
.authorizerCredentialsArn("authorizerCredentialsArn")
.authorizerPayloadFormatVersion("authorizerPayloadFormatVersion")
.authorizerResultTtlInSeconds(123)
.authorizerUri("authorizerUri")
.enableSimpleResponses(false)
.identitySource(List.of("identitySource"))
.identityValidationExpression("identityValidationExpression")
.jwtConfiguration(JWTConfigurationProperty.builder()
.audience(List.of("audience"))
.issuer("issuer")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAuthorizerProps.Builder
A builder for
CfnAuthorizerProps |
static class |
CfnAuthorizerProps.Jsii$Proxy
An implementation for
CfnAuthorizerProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAuthorizerProps.Builder |
builder() |
String |
getApiId()
`AWS::ApiGatewayV2::Authorizer.ApiId`.
|
default String |
getAuthorizerCredentialsArn()
`AWS::ApiGatewayV2::Authorizer.AuthorizerCredentialsArn`.
|
default String |
getAuthorizerPayloadFormatVersion()
`AWS::ApiGatewayV2::Authorizer.AuthorizerPayloadFormatVersion`.
|
default Number |
getAuthorizerResultTtlInSeconds()
`AWS::ApiGatewayV2::Authorizer.AuthorizerResultTtlInSeconds`.
|
String |
getAuthorizerType()
`AWS::ApiGatewayV2::Authorizer.AuthorizerType`.
|
default String |
getAuthorizerUri()
`AWS::ApiGatewayV2::Authorizer.AuthorizerUri`.
|
default Object |
getEnableSimpleResponses()
`AWS::ApiGatewayV2::Authorizer.EnableSimpleResponses`.
|
default List<String> |
getIdentitySource()
`AWS::ApiGatewayV2::Authorizer.IdentitySource`.
|
default String |
getIdentityValidationExpression()
`AWS::ApiGatewayV2::Authorizer.IdentityValidationExpression`.
|
default Object |
getJwtConfiguration()
`AWS::ApiGatewayV2::Authorizer.JwtConfiguration`.
|
String |
getName()
`AWS::ApiGatewayV2::Authorizer.Name`.
|
@Stability(value=Stable) @NotNull String getApiId()
@Stability(value=Stable) @Nullable default String getAuthorizerCredentialsArn()
@Stability(value=Stable) @Nullable default String getAuthorizerPayloadFormatVersion()
@Stability(value=Stable) @Nullable default Number getAuthorizerResultTtlInSeconds()
@Stability(value=Stable) @NotNull String getAuthorizerType()
@Stability(value=Stable) @Nullable default String getAuthorizerUri()
@Stability(value=Stable) @Nullable default Object getEnableSimpleResponses()
@Stability(value=Stable) @Nullable default List<String> getIdentitySource()
@Stability(value=Stable) @Nullable default String getIdentityValidationExpression()
@Stability(value=Stable) @Nullable default Object getJwtConfiguration()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) static CfnAuthorizerProps.Builder builder()
CfnAuthorizerProps.Builder of CfnAuthorizerPropsCopyright © 2021. All rights reserved.