Databricks SDK for JavaScript
    Preparing search index...

    Represents a token that can be used to sign requests.

    interface Token {
        expiry?: Date;
        type?: string;
        value: string;
    }
    Index

    Properties

    Properties

    expiry?: Date

    The time at which the token expires. If undefined, the token is considered to be valid indefinitely.

    type?: string

    The type of token. If empty, the token type is assumed to be "Bearer".

    value: string

    The raw value to sign requests with. It typically is an access token but can represent other types of tokens (e.g., ID tokens).