Represents the credentials associated with an OAuth token.

interface LemonCredentials {
    AccessKeyId: string;
    Expiration?: string;
    SecretKey: string;
    SessionToken?: string;
    clientId?: string;
    hostKey?: string;
}

Properties

AccessKeyId: string

The Access Key ID.

Expiration?: string

The expiration time of the credentials (optional).

SecretKey: string

The Secret Key.

SessionToken?: string

The session token associated with the credentials (optional).

clientId?: string

The client id for Azure (optional).

hostKey?: string

The host key associated with the credentials for Azure (optional).