Module Values.AwsDynamoDbTableProvisionedThroughputSource

Information about the provisioned throughput for the table or for a global secondary index.

Sourcetype nonrec t = {
  1. lastDecreaseDateTime : NonEmptyString.t option;
    (*

    Indicates when the provisioned throughput was last decreased. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  2. lastIncreaseDateTime : NonEmptyString.t option;
    (*

    Indicates when the provisioned throughput was last increased. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  3. numberOfDecreasesToday : Integer.t option;
    (*

    The number of times during the current UTC calendar day that the provisioned throughput was decreased.

    *)
  4. readCapacityUnits : Integer.t option;
    (*

    The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.

    *)
  5. writeCapacityUnits : Integer.t option;
    (*

    The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.

    *)
}
Sourceval make : ?lastDecreaseDateTime:??? -> ?lastIncreaseDateTime:??? -> ?numberOfDecreasesToday:??? -> ?readCapacityUnits:??? -> ?writeCapacityUnits:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.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