@finnairoyj/cdk-constructs-lib - v0.1.11
    Preparing search index...

    Interface OIDCAuthorizerLambdaProps

    interface OIDCAuthorizerLambdaProps {
        logLevel?: ApplicationLogLevel;
        oidcConfig: OAuthOptions;
        timeout?: Duration;
    }
    Index

    Properties

    logLevel?: ApplicationLogLevel

    Lambda@Edge function log level. Enabling the DEBUG logging will cause the logging of all request data including headers and cookies. This will expose sensitive data such as access tokens in the logs. Enable DEBUG logging with care!

    INFO
    
    oidcConfig: OAuthOptions

    OIDC configuration

    timeout?: Duration

    Lambda function timeout. Must be between 1 and 5 seconds

    Duration.seconds(5)