Module Values.DatabaseSource

A top-level container for a table. Databases and tables are the fundamental management concepts in Amazon Timestream. All tables in a database are encrypted with the same KMS key.

Sourcetype nonrec t = {
  1. arn : String_.t option;
    (*

    The Amazon Resource Name that uniquely identifies this database.

    *)
  2. databaseName : ResourceName.t option;
    (*

    The name of the Timestream database.

    *)
  3. tableCount : Long.t option;
    (*

    The total number of tables found within a Timestream database.

    *)
  4. kmsKeyId : StringValue2048.t option;
    (*

    The identifier of the KMS key used to encrypt the data stored in the database.

    *)
  5. creationTime : Date.t option;
    (*

    The time when the database was created, calculated from the Unix epoch time.

    *)
  6. lastUpdatedTime : Date.t option;
    (*

    The last time that this database was updated.

    *)
}
Sourceval make : ?arn:??? -> ?databaseName:??? -> ?tableCount:??? -> ?kmsKeyId:??? -> ?creationTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of String_.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