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

ACL

import type { ACL } from "https://aws-api.deno.dev/v0.4/services/memorydb.ts?docs=full";

An Access Control List. You can authenticate users with Access Contol Lists. ACLs enable you to control cluster access by grouping users. These Access control lists are designed as a way to organize access to clusters.

interface ACL {
ARN?: string | null;
Clusters?: string[] | null;
MinimumEngineVersion?: string | null;
Name?: string | null;
PendingChanges?: ACLPendingChanges | null;
Status?: string | null;
UserNames?: string[] | null;
}

§Properties

§
ARN?: string | null
[src]

The Amazon Resource Name (ARN) of the ACL

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

A list of clusters associated with the ACL.

§
MinimumEngineVersion?: string | null
[src]

The minimum engine version supported for the ACL

§
Name?: string | null
[src]

The name of the Access Control List

§
PendingChanges?: ACLPendingChanges | null
[src]

A list of updates being applied to the ACL.

§
Status?: string | null
[src]

Indicates ACL status. Can be "creating", "active", "modifying", "deleting".

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

The list of user names that belong to the ACL.