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

UnlinkIdentityInput

import type { UnlinkIdentityInput } from "https://aws-api.deno.dev/v0.3/services/cognitoidentity.ts?docs=full";

Input to the UnlinkIdentity action.

interface UnlinkIdentityInput {
IdentityId: string;
Logins: {
[key: string]: string | null | undefined;
}
;
LoginsToRemove: string[];
}

§Properties

§
IdentityId: string
[src]

A unique identifier in the format REGION:GUID.

§
Logins: {
[key: string]: string | null | undefined;
}
[src]

A set of optional name-value pairs that map provider names to provider tokens.

§
LoginsToRemove: string[]
[src]

Provider names to unlink from this identity.