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.4/services/es.ts?docs=full";

Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana.

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

§Properties

§
Enabled?: boolean | null
[src]

Specifies the option to enable Cognito for Kibana authentication.

§
IdentityPoolId?: string | null
[src]

Specifies the Cognito identity pool ID for Kibana authentication.

§
RoleArn?: string | null
[src]

Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

§
UserPoolId?: string | null
[src]

Specifies the Cognito user pool ID for Kibana authentication.