Module Values.AccountInfoSource

The account information within an account pool.

Sourcetype nonrec t = {
  1. awsAccountId : AwsAccountId.t;
    (*

    The account ID.

    *)
  2. supportedRegions : AwsRegionList.t;
    (*

    The regions supported for an account within an account pool.

    *)
  3. awsAccountName : AwsAccountName.t option;
    (*

    The account name.

    *)
}
Sourceval context_ : string
Sourceval make : ?awsAccountName:??? -> awsAccountId:AwsAccountId.t -> supportedRegions:AwsRegionList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AwsRegion.t ] list | `String of AwsAccountId.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