Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OAuth2Credentials

import type { OAuth2Credentials } from "https://aws-api.deno.dev/v0.4/services/appflow.ts?docs=full";

The OAuth 2.0 credentials required for OAuth 2.0 authentication.

interface OAuth2Credentials {
accessToken?: string | null;
clientId?: string | null;
clientSecret?: string | null;
oAuthRequest?: ConnectorOAuthRequest | null;
refreshToken?: string | null;
}

§Properties

§
accessToken?: string | null
[src]

The access token used to access the connector on your behalf.

§
clientId?: string | null
[src]

The identifier for the desired client.

§
clientSecret?: string | null
[src]

The client secret used by the OAuth client to authenticate to the authorization server.

§
oAuthRequest?: ConnectorOAuthRequest | null
[src]
§
refreshToken?: string | null
[src]

The refresh token used to refresh an expired access token.