Module Values.AccountSourceSource

The source of accounts for the account pool. In the current release, it's either a static list of accounts provided by the customer or a custom Amazon Web Services Lambda handler.

Sourcetype nonrec t = {
  1. accounts : AccountInfoList.t option;
    (*

    The static list of accounts within an account pool.

    *)
  2. customAccountPoolHandler : CustomAccountPoolHandler.t option;
    (*

    The custom Amazon Web Services Lambda handler within an account pool.

    *)
}
Sourceval make : ?accounts:??? -> ?customAccountPoolHandler:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of AwsRegion.t ] list | `String of AwsAccountId.t ]) list ] list | `Structure of (string * [> `String of LambdaFunctionArn.t ]) list ]) 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