Class CfnAuthorizerV2

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.749Z") @Stability(Deprecated) @Deprecated public class CfnAuthorizerV2 extends CfnResource implements IInspectable
Deprecated.
moved to package aws-apigatewayv2
(deprecated) A CloudFormation AWS::ApiGatewayV2::Authorizer.

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.*;
 CfnAuthorizerV2 cfnAuthorizerV2 = CfnAuthorizerV2.Builder.create(this, "MyCfnAuthorizerV2")
         .apiId("apiId")
         .authorizerType("authorizerType")
         .identitySource(List.of("identitySource"))
         .name("name")
         // the properties below are optional
         .authorizerCredentialsArn("authorizerCredentialsArn")
         .authorizerResultTtlInSeconds(123)
         .authorizerUri("authorizerUri")
         .identityValidationExpression("identityValidationExpression")
         .jwtConfiguration(JWTConfigurationProperty.builder()
                 .audience(List.of("audience"))
                 .issuer("issuer")
                 .build())
         .build();
 

See Also: