Module Values.ReplicaSpecificationSummarySource

The Region-specific settings of a multi-Region table in the specified Amazon Web Services Region. If the multi-Region table is using provisioned capacity and has optional auto scaling policies configured, note that the Region specific summary returns both read and write capacity settings. But only Region specific read capacity settings can be configured for a multi-Region table. In a multi-Region table, your write capacity units will be synced across all Amazon Web Services Regions to ensure that there is enough capacity to replicate write events across Regions.

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

    The Amazon Web Services Region.

    *)
  2. status : TableStatus.t option;
    (*

    The status of the multi-Region table in the specified Amazon Web Services Region.

    *)
  3. capacitySpecification : CapacitySpecificationSummary.t option;
  4. warmThroughputSpecification : WarmThroughputSpecificationSummary.t option;
    (*

    The warm throughput settings for this replica, including the current status and configured read and write capacity units.

    *)
}
Sourceval make : ?region:??? -> ?status:??? -> ?capacitySpecification:??? -> ?warmThroughputSpecification:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Region.t | `Structure of (string * [> `Enum of string | `Long of CapacityUnits.t | `Timestamp of Timestamp.t ]) 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