Module Values.BatchGetMemberAccountDetailsRequestSource

Provides information on whether the supplied account IDs are associated with a membership. AWS account ID's may appear less than 12 characters and need to be zero-prepended. An example would be 123123123 which is nine digits, and with zero-prepend would be 000123123123. Not zero-prepending to 12 digits could result in errors.

Sourcetype nonrec t = {
  1. membershipId : MembershipId.t;
    (*

    Required element used in combination with BatchGetMemberAccountDetails to identify the membership ID to query.

    *)
  2. accountIds : AWSAccountIds.t;
    (*

    Optional element to query the membership relationship status to a provided list of account IDs. AWS account ID's may appear less than 12 characters and need to be zero-prepended. An example would be 123123123 which is nine digits, and with zero-prepend would be 000123123123. Not zero-prepending to 12 digits could result in errors.

    *)
}
Sourceval context_ : string
Sourceval make : membershipId:MembershipId.t -> accountIds:AWSAccountIds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AWSAccountId.t ] list | `String of MembershipId.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