/** *
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:
owner: Owns the environment.
read-only: Has read-only access to the environment.
read-write: Has read-write access to the environment.
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; }