Module Values.CreateLookupTableRequestSource

Creates a lookup table by uploading CSV data. You can use lookup tables to enrich log data in CloudWatch Logs Insights queries with reference data such as user details, application names, or error descriptions. The table name must be unique within your account and Region. The CSV content must include a header row with column names, use UTF-8 encoding, and not exceed 10 MB.

Sourcetype nonrec t = {
  1. lookupTableName : LookupTableName.t;
    (*

    The name of the lookup table. The name must be unique within your account and Region. The name can contain only alphanumeric characters and underscores, and can be up to 256 characters long.

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

    A description of the lookup table. The description can be up to 1024 characters long.

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

    The CSV content of the lookup table. 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. If you don't specify a key, the data is encrypted with an Amazon Web Services-owned key.

    *)
  5. tags : Tags.t option;
    (*

    A list of key-value pairs to associate with the lookup table. You can associate as many as 50 tags with a lookup table. Tags can help you organize and categorize your resources.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?kmsKeyId:??? -> ?tags:??? -> lookupTableName:LookupTableName.t -> tableBody:TableBody.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of LookupTableName.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