Module Values.AWSAccountSource

The wrapper of Amazon Web Services account details, such as account ID or email address.

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

    The identifier for the Amazon Web Services account.

    *)
  2. emailAddress : EmailAddress.t option;
    (*

    The email address that's associated with the Amazon Web Services account.

    *)
  3. name : AccountName.t option;
    (*

    The name of the Amazon Web Services account.

    *)
}
Sourceval make : ?id:??? -> ?emailAddress:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountId.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