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

CognitoOptions

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

Options to specify the Cognito user and identity pools for OpenSearch Dashboards authentication. For more information, see Configuring Amazon Cognito authentication for OpenSearch Dashboards.

interface CognitoOptions {
Enabled?: boolean | null;
IdentityPoolId?: string | null;
RoleArn?: string | null;
UserPoolId?: string | null;
}

§Properties

§
Enabled?: boolean | null
[src]

The option to enable Cognito for OpenSearch Dashboards authentication.

§
IdentityPoolId?: string | null
[src]

The Cognito identity pool ID for OpenSearch Dashboards authentication.

§
RoleArn?: string | null
[src]

The role ARN that provides OpenSearch permissions for accessing Cognito resources.

§
UserPoolId?: string | null
[src]

The Cognito user pool ID for OpenSearch Dashboards authentication.