Module Values.GetLookupTableResponseSource

Retrieves the full content of a lookup table, including the CSV data.

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. tableBody : TableBody.t option;
    (*

    The full CSV content of the lookup table.

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

    The size of the lookup table in bytes.

    *)
  6. 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.

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

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

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InvalidParameterException of InvalidParameterException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ServiceUnavailableException of ServiceUnavailableException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?lookupTableArn:??? -> ?lookupTableName:??? -> ?description:??? -> ?tableBody:??? -> ?sizeBytes:??? -> ?lastUpdatedTime:??? -> ?kmsKeyId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of unit | `InvalidParameterException of unit | `ResourceNotFoundException of unit | `ServiceUnavailableException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of unit | `InvalidParameterException of unit | `ResourceNotFoundException of unit | `ServiceUnavailableException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of StoredBytes.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