Module Values.LookupTableSource

Contains metadata about a lookup table returned by DescribeLookupTables.

Sourcetype nonrec t = {
  1. lookupTableArn : Arn.t option;
    (*

    The ARN of the lookup table.

    *)
  2. lookupTableName : LookupTableName.t option;
    (*

    The name of the lookup table.

    *)
  3. description : LookupTableDescription.t option;
    (*

    The description of the lookup table.

    *)
  4. tableFields : TableFields.t option;
    (*

    The column headers from the first row of the CSV file.

    *)
  5. recordsCount : RecordsCount.t option;
    (*

    The number of data rows in the lookup table, excluding the header row.

    *)
  6. sizeBytes : StoredBytes.t option;
    (*

    The size of the lookup table in bytes.

    *)
  7. lastUpdatedTime : Timestamp.t option;
    (*

    The time when the lookup table was last updated, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.

    *)
  8. kmsKeyId : KmsKeyId.t option;
    (*

    The ARN of the KMS key used to encrypt the lookup table data, if applicable.

    *)
}
Sourceval make : ?lookupTableArn:??? -> ?lookupTableName:??? -> ?description:??? -> ?tableFields:??? -> ?recordsCount:??? -> ?sizeBytes:??? -> ?lastUpdatedTime:??? -> ?kmsKeyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Long of RecordsCount.t | `String of Arn.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