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

UpdateIdentityProviderRequest

import type { UpdateIdentityProviderRequest } from "https://aws-api.deno.dev/v0.3/services/cognitoidentityserviceprovider.ts?docs=full";
interface UpdateIdentityProviderRequest {
AttributeMapping?: {
[key: string]: string | null | undefined;
}
| null;
IdpIdentifiers?: string[] | null;
ProviderDetails?: {
[key: string]: string | null | undefined;
}
| null;
ProviderName: string;
UserPoolId: string;
}

§Properties

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

The identity provider attribute mapping to be changed.

§
IdpIdentifiers?: string[] | null
[src]

A list of identity provider identifiers.

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

The identity provider details to be updated, such as MetadataURL and MetadataFile.

§
ProviderName: string
[src]

The identity provider name.

§
UserPoolId: string
[src]

The user pool ID.