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

RevokeTokenRequest

import type { RevokeTokenRequest } from "https://aws-api.deno.dev/v0.3/services/cognitoidentityserviceprovider.ts?docs=full";
interface RevokeTokenRequest {
ClientId: string;
ClientSecret?: string | null;
Token: string;
}

§Properties

§
ClientId: string
[src]

The client ID for the token that you want to revoke.

§
ClientSecret?: string | null
[src]

The secret for the client ID. This is required only if the client ID has a secret.

§
Token: string
[src]

The token that you want to revoke.