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

MasterUserOptions

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

Credentials for the master user: username and password, ARN, or both.

interface MasterUserOptions {
MasterUserARN?: string | null;
MasterUserName?: string | null;
MasterUserPassword?: string | null;
}

§Properties

§
MasterUserARN?: string | null
[src]

ARN for the master user (if IAM is enabled).

§
MasterUserName?: string | null
[src]

The master user's username, which is stored in the Amazon OpenSearch Service domain's internal database.

§
MasterUserPassword?: string | null
[src]

The master user's password, which is stored in the Amazon OpenSearch Service domain's internal database.