Module Values.ProvisionedPollerConfigSource

The provisioned mode configuration for the event source. Use Provisioned Mode to customize the minimum and maximum number of event pollers for your event source.

Sourcetype nonrec t = {
  1. minimumPollers : MinimumNumberOfPollers.t option;
    (*

    The minimum number of event pollers this event source can scale down to. For Amazon SQS events source mappings, default is 2, and minimum 2 required. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 1.

    *)
  2. maximumPollers : MaximumNumberOfPollers.t option;
    (*

    The maximum number of event pollers this event source can scale up to. For Amazon SQS events source mappings, default is 200, and minimum value allowed is 2. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 200, and minimum value allowed is 1.

    *)
  3. pollerGroupName : ProvisionedPollerGroupName.t option;
    (*

    (Amazon MSK and self-managed Apache Kafka) The name of the provisioned poller group. Use this option to group multiple ESMs within the event source's VPC to share Event Poller Unit (EPU) capacity. You can use this option to optimize Provisioned mode costs for your ESMs. You can group up to 100 ESMs per poller group and aggregate maximum pollers across all ESMs in a group cannot exceed 2000.

    *)
}
Sourceval make : ?minimumPollers:??? -> ?maximumPollers:??? -> ?pollerGroupName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MinimumNumberOfPollers.t | `String of ProvisionedPollerGroupName.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