Module Values.MemberSummarySource

The member object listed by the request.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    The identifier used to reference members of the collaboration. Currently only supports Amazon Web Services account ID.

    *)
  2. status : MemberStatus.t option;
    (*

    The status of the member.

    *)
  3. displayName : DisplayName.t option;
    (*

    The member's display name.

    *)
  4. abilities : MemberAbilities.t option;
    (*

    The abilities granted to the collaboration member.

    *)
  5. mlAbilities : MLMemberAbilities.t option;
    (*

    Provides a summary of the ML abilities for the collaboration member.

    *)
  6. createTime : Timestamp.t option;
    (*

    The time when the member was created.

    *)
  7. updateTime : Timestamp.t option;
    (*

    The time the member metadata was last updated.

    *)
  8. membershipId : UUID.t option;
    (*

    The unique ID for the member's associated membership, if present.

    *)
  9. membershipArn : MembershipArn.t option;
    (*

    The unique ARN for the member's associated membership, if present.

    *)
  10. paymentConfiguration : PaymentConfiguration.t option;
    (*

    The collaboration member's payment responsibilities set by the collaboration creator.

    *)
}
Sourceval make : ?accountId:??? -> ?status:??? -> ?displayName:??? -> ?abilities:??? -> ?mlAbilities:??? -> ?createTime:??? -> ?updateTime:??? -> ?membershipId:??? -> ?membershipArn:??? -> ?paymentConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of AccountId.t | `Structure of (string * [> `List of [> `Enum of string ] list | `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Boolean of Boolean.t ]) list ]) list ]) list | `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