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

EnvironmentMember

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

Information about an environment member for an Cloud9 development environment.

interface EnvironmentMember {
environmentId: string;
lastAccess?: Date | number | null;
permissions: Permissions;
userArn: string;
userId: string;
}

§Properties

§
environmentId: string
[src]

The ID of the environment for the environment member.

§
lastAccess?: Date | number | null
[src]

The time, expressed in epoch time format, when the environment member last opened the environment.

§
permissions: Permissions
[src]

The type of environment member permissions associated with this environment member. Available values include:

  • owner: Owns the environment.
  • read-only: Has read-only access to the environment.
  • read-write: Has read-write access to the environment.
§
userArn: string
[src]

The Amazon Resource Name (ARN) of the environment member.

§
userId: string
[src]

The user ID in Identity and Access Management (IAM) of the environment member.