Module Values_2.ThroughputConfigUpdateSource

The new throughput configuration for the feature group. You can switch between on-demand and provisioned modes or update the read / write capacity of provisioned feature groups. You can switch a feature group to on-demand only once in a 24 hour period.

Sourcetype nonrec t = {
  1. throughputMode : Values_0.ThroughputMode.t option;
    (*

    Target throughput mode of the feature group. Throughput update is an asynchronous operation, and the outcome should be monitored by polling LastUpdateStatus field in DescribeFeatureGroup response. You cannot update a feature group's throughput while another update is in progress.

    *)
  2. provisionedReadCapacityUnits : Values_0.CapacityUnit.t option;
    (*

    For provisioned feature groups with online store enabled, this indicates the read throughput you are billed for and can consume without throttling.

    *)
  3. provisionedWriteCapacityUnits : Values_0.CapacityUnit.t option;
    (*

    For provisioned feature groups, this indicates the write throughput you are billed for and can consume without throttling.

    *)
}
Sourceval make : ?throughputMode:??? -> ?provisionedReadCapacityUnits:??? -> ?provisionedWriteCapacityUnits:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.CapacityUnit.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