Skip to content

Update Lookup Table

cloudwatchlogs_update_lookup_table R Documentation

Updates an existing lookup table by replacing all of its CSV content

Description

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.

Usage

cloudwatchlogs_update_lookup_table(lookupTableArn, description,
  tableBody, kmsKeyId)

Arguments

lookupTableArn

[required] The ARN of the lookup table to update.

description

An updated description of the lookup table.

tableBody

[required] 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.

kmsKeyId

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.

Value

A list with the following syntax:

list(
  lookupTableArn = "string",
  lastUpdatedTime = 123
)

Request syntax

svc$update_lookup_table(
  lookupTableArn = "string",
  description = "string",
  tableBody = "string",
  kmsKeyId = "string"
)