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

    Interface AuthSchemeInternal

    Authentication schemes represent a way that the service will authenticate the customer’s identity.

    interface AuthScheme {
        name: string;
        properties: Record<string, unknown>;
        signingName: string;
        signingRegion: string;
        signingRegionSet?: string[];
        signingScope?: never;
    }
    Index

    Properties

    name: string
    "sigv4a" or "sigv4"
    
    properties: Record<string, unknown>
    signingName: string
    "s3"
    
    signingRegion: string
    "us-east-1"
    
    signingRegionSet?: string[]
    ["*"]
    
    ["us-west-2", "us-east-1"]
    
    signingScope?: never

    this field was renamed to signingRegion.