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

UserGroup

import type { UserGroup } from "https://aws-api.deno.dev/v0.3/services/elasticache.ts?docs=full";
interface UserGroup {
ARN?: string | null;
Engine?: string | null;
MinimumEngineVersion?: string | null;
PendingChanges?: UserGroupPendingChanges | null;
ReplicationGroups: string[];
Status?: string | null;
UserGroupId?: string | null;
UserIds: string[];
}

§Properties

§
ARN?: string | null
[src]

The Amazon Resource Name (ARN) of the user group.

§
Engine?: string | null
[src]

The current supported value is Redis.

§
MinimumEngineVersion?: string | null
[src]

The minimum engine version required, which is Redis 6.0

§
PendingChanges?: UserGroupPendingChanges | null
[src]

A list of updates being applied to the user group.

§
ReplicationGroups: string[]
[src]

A list of replication groups that the user group can access.

§
Status?: string | null
[src]

Indicates user group status. Can be "creating", "active", "modifying", "deleting".

§
UserGroupId?: string | null
[src]

The ID of the user group.

§
UserIds: string[]
[src]

The list of user IDs that belong to the user group.