Module Values.GlobalTableDescriptionSource

Contains details about the global table.

Sourcetype nonrec t = {
  1. replicationGroup : ReplicaDescriptionList.t option;
    (*

    The Regions where the global table has replicas.

    *)
  2. globalTableArn : GlobalTableArnString.t option;
    (*

    The unique identifier of the global table.

    *)
  3. creationDateTime : Date.t option;
    (*

    The creation time of the global table.

    *)
  4. globalTableStatus : GlobalTableStatus.t option;
    (*

    The current state of the global table: CREATING - The global table is being created. UPDATING - The global table is being updated. DELETING - The global table is being deleted. ACTIVE - The global table is ready for use.

    *)
  5. globalTableName : TableName.t option;
    (*

    The global table name.

    *)
}
Sourceval make : ?replicationGroup:??? -> ?globalTableArn:??? -> ?creationDateTime:??? -> ?globalTableStatus:??? -> ?globalTableName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of IndexName.t | `Structure of (string * [> `Enum of string | `Long of PositiveLongObject.t ]) list ]) list ] list | `String of RegionName.t | `Structure of (string * [> `Enum of string | `Long of PositiveLongObject.t | `Timestamp of Date.t ]) list | `Timestamp of Date.t ]) list ] list | `String of GlobalTableArnString.t | `Timestamp of Date.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