Module Values.AccountInfoSource

Provides information about your AWS account.

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

    The identifier of the AWS account that is assigned to the user.

    *)
  2. accountName : AccountNameType.t option;
    (*

    The display name of the AWS account that is assigned to the user.

    *)
  3. emailAddress : EmailAddressType.t option;
    (*

    The email address of the AWS account that is assigned to the user.

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