Module Values.TableSummarySource

Returns the name of the specified table, the keyspace it is stored in, and the unique identifier in the format of an Amazon Resource Name (ARN).

Sourcetype nonrec t = {
  1. keyspaceName : KeyspaceName.t option;
    (*

    The name of the keyspace that the table is stored in.

    *)
  2. tableName : TableName.t option;
    (*

    The name of the table.

    *)
  3. resourceArn : ARN.t option;
    (*

    The unique identifier of the table in the format of an Amazon Resource Name (ARN).

    *)
}
Sourceval make : ?keyspaceName:??? -> ?tableName:??? -> ?resourceArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of KeyspaceName.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