Values.BatchGetMemberAccountDetailsRequestSourceProvides 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.
type nonrec t = {membershipId : MembershipId.t;Required element used in combination with BatchGetMemberAccountDetails to identify the membership ID to query.
*)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.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of AWSAccountId.t ] list
| `String of MembershipId.t ])
list ]