Amplify Toolbox
    Preparing search index...

    Type Alias LambdaAuthorizationModeProps

    Props for Custom Lambda authorization on the Graphql Api.

    type LambdaAuthorizationModeProps = {
        function: ConstructFactory<AmplifyFunction>;
        timeToLiveInSeconds?: number;
    }
    Index

    Properties

    The authorization lambda function. The specific input type of the function is subject to change or removal.

    timeToLiveInSeconds?: number

    How long the results are cached.

    60