Module Values.CreateAccountPoolInputSource

Creates an account pool.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The ID of the domain where the account pool is created.

    *)
  2. name : AccountPoolName.t;
    (*

    The name of the account pool.

    *)
  3. description : Description.t option;
    (*

    The description of the account pool.

    *)
  4. resolutionStrategy : ResolutionStrategy.t;
    (*

    The mechanism used to resolve the account selection from the account pool.

    *)
  5. accountSource : AccountSource.t;
    (*

    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.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> domainIdentifier:DomainId.t -> name:AccountPoolName.t -> resolutionStrategy:ResolutionStrategy.t -> accountSource:AccountSource.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.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 ]) 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