ts-lambda-api - v2.5.2
    Preparing search index...

    Interface HttpAuthSchemeInternal

    Interface that defines an HttpAuthScheme

    interface HttpAuthScheme {
        schemeId: string;
        signer: HttpSigner;
        identityProvider(
            config: IdentityProviderConfig,
        ): IdentityProvider<Identity>;
    }
    Index

    Properties

    Methods

    Properties

    schemeId: string

    ID for an HttpAuthScheme, typically the absolute shape ID of a Smithy auth trait.

    signer: HttpSigner

    HttpSigner corresponding to an HttpAuthScheme.

    Methods