Module Values.UpdateAccountPoolInputSource

Updates the account pool.

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

    The domain ID where the account pool that is to be updated lives.

    *)
  2. identifier : AccountPoolId.t;
    (*

    The ID of the account pool that is to be updated.

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

    The name of the account pool that is to be updated.

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

    The description of the account pool that is to be udpated.

    *)
  5. resolutionStrategy : ResolutionStrategy.t option;
    (*

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

    *)
  6. accountSource : AccountSource.t option;
    (*

    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 : ?name:??? -> ?description:??? -> ?resolutionStrategy:??? -> ?accountSource:??? -> domainIdentifier:DomainId.t -> identifier:AccountPoolId.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