Module Values.EnvironmentMemberSource

Information about an environment member for an Cloud9 development environment.

Sourcetype nonrec t = {
  1. permissions : Permissions.t option;
    (*

    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.

    *)
  2. userId : String_.t option;
    (*

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

    *)
  3. userArn : UserArn.t option;
    (*

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

    *)
  4. environmentId : EnvironmentId.t option;
    (*

    The ID of the environment for the environment member.

    *)
  5. lastAccess : Timestamp.t option;
    (*

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

    *)
}
Sourceval make : ?permissions:??? -> ?userId:??? -> ?userArn:??? -> ?environmentId:??? -> ?lastAccess:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t