Module Values.ReplicaSpecificationSource

The Amazon Web Services Region specific settings of a multi-Region table. For a multi-Region table, you can configure the table's read capacity differently per Amazon Web Services Region. You can do this by configuring the following parameters. region: The Region where these settings are applied. (Required) readCapacityUnits: The provisioned read capacity units. (Optional) readCapacityAutoScaling: The read capacity auto scaling settings for the table. (Optional)

Sourcetype nonrec t = {
  1. region : Region.t;
    (*

    The Amazon Web Services Region.

    *)
  2. readCapacityUnits : CapacityUnits.t option;
    (*

    The provisioned read capacity units for the multi-Region table in the specified Amazon Web Services Region.

    *)
  3. readCapacityAutoScaling : AutoScalingSettings.t option;
    (*

    The read capacity auto scaling settings for the multi-Region table in the specified Amazon Web Services Region.

    *)
}
Sourceval context_ : string
Sourceval make : ?readCapacityUnits:??? -> ?readCapacityAutoScaling:??? -> region:Region.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of CapacityUnits.t | `String of Region.t | `Structure of (string * [> `Boolean of BooleanObject.t | `Long of CapacityUnits.t | `Structure of (string * [> `Structure of (string * [> `Boolean of BooleanObject.t | `Double of DoubleObject.t | `Integer of IntegerObject.t ]) list ]) 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