Module Values.UpdateLookupTableRequestSource

Updates an existing lookup table by replacing all of its CSV content. After the update completes, queries that use this table will use the new data. This is a full replacement operation. All existing content is replaced with the new CSV data.

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

    The ARN of the lookup table to update.

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

    An updated description of the lookup table.

    *)
  3. tableBody : TableBody.t;
    (*

    The new CSV content to replace the existing data. The first row must be a header row with column names. The content must use UTF-8 encoding and not exceed 10 MB.

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

    The ARN of the KMS key to use to encrypt the lookup table data. You can use this parameter to add, update, or remove the KMS key. To remove the KMS key and use an Amazon Web Services-owned key instead, specify an empty string.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?kmsKeyId:??? -> lookupTableArn:Arn.t -> tableBody:TableBody.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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