Module Values.DescribeEnvironmentMembershipsRequestSource

Gets information about environment members for an Cloud9 development environment. Cloud9 is no longer available to new customers. Existing customers of Cloud9 can continue to use the service as normal. Learn more"

Sourcetype nonrec t = {
  1. userArn : UserArn.t option;
    (*

    The Amazon Resource Name (ARN) of an individual environment member to get information about. If no value is specified, information about all environment members are returned.

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

    The ID of the environment to get environment member information about.

    *)
  3. permissions : PermissionsList.t option;
    (*

    The type of environment member permissions to get information about. 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. If no value is specified, information about all environment members are returned.

    *)
  4. nextToken : String_.t option;
    (*

    During a previous call, if there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.

    *)
  5. maxResults : MaxResults.t option;
    (*

    The maximum number of environment members to get information about.

    *)
}
Sourceval make : ?userArn:??? -> ?environmentId:??? -> ?permissions:??? -> ?nextToken:??? -> ?maxResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Enum of string ] list | `String of UserArn.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