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

    Interface AwsCredentialIdentity

    interface AwsCredentialIdentity {
        accessKeyId: string;
        accountId?: string;
        credentialScope?: string;
        expiration?: Date;
        secretAccessKey: string;
        sessionToken?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    accessKeyId: string

    AWS access key ID

    accountId?: string

    AWS accountId.

    credentialScope?: string

    AWS credential scope for this set of credentials.

    expiration?: Date

    A Date when the identity or credential will no longer be accepted.

    secretAccessKey: string

    AWS secret access key

    sessionToken?: string

    A security or session token to use with these credentials. Usually present for temporary credentials.