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

AdvancedSecurityOptionsInput

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

The advanced security configuration: whether advanced security is enabled, whether the internal database option is enabled, master username and password (if internal database is enabled), and master user ARN (if IAM is enabled).

interface AdvancedSecurityOptionsInput {
AnonymousAuthEnabled?: boolean | null;
Enabled?: boolean | null;
InternalUserDatabaseEnabled?: boolean | null;
MasterUserOptions?: MasterUserOptions | null;
SAMLOptions?: SAMLOptionsInput | null;
}

§Properties

§
AnonymousAuthEnabled?: boolean | null
[src]

True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

§
Enabled?: boolean | null
[src]

True if advanced security is enabled.

§
InternalUserDatabaseEnabled?: boolean | null
[src]

True if the internal user database is enabled.

§
MasterUserOptions?: MasterUserOptions | null
[src]

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

§
SAMLOptions?: SAMLOptionsInput | null
[src]

The SAML application configuration for the domain.