/** *

Information about an environment member for an AWS Cloud9 development environment.

*/ export interface _EnvironmentMember { /** *

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

*/ permissions?: "owner" | "read-write" | "read-only" | string; /** *

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

*/ userId?: string; /** *

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

*/ userArn?: string; /** *

The ID of the environment for the environment member.

*/ environmentId?: string; /** *

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

*/ lastAccess?: Date | string | number; } export interface _UnmarshalledEnvironmentMember extends _EnvironmentMember { /** *

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

*/ lastAccess?: Date; }