Module Values.MemberSpecificationSource

Basic metadata used to construct a new member.

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

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

    *)
  2. memberAbilities : MemberAbilities.t;
    (*

    The abilities granted to the collaboration member.

    *)
  3. mlMemberAbilities : MLMemberAbilities.t option;
    (*

    The ML abilities granted to the collaboration member.

    *)
  4. displayName : DisplayName.t;
    (*

    The member's display name.

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

    The collaboration member's payment responsibilities set by the collaboration creator. If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer.

    *)
}
Sourceval context_ : string
Sourceval make : ?mlMemberAbilities:??? -> ?paymentConfiguration:??? -> accountId:AccountId.t -> memberAbilities:MemberAbilities.t -> displayName:DisplayName.t -> unit -> t
Sourceval to_value : t -> [> `Structure 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 ]) 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