Module Values.GetLogObjectRequestSource

The parameters for the GetLogObject operation.

Sourcetype nonrec t = {
  1. unmask : Unmask.t option;
    (*

    A boolean flag that indicates whether to unmask sensitive log data. When set to true, any masked or redacted data in the log object will be displayed in its original form. Default is false.

    *)
  2. logObjectPointer : LogObjectPointer.t;
    (*

    A pointer to the specific log object to retrieve. This is a required parameter that uniquely identifies the log object within CloudWatch Logs. The pointer is typically obtained from a previous query or filter operation.

    *)
}
Sourceval context_ : string
Sourceval make : ?unmask:??? -> logObjectPointer:LogObjectPointer.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Unmask.t | `String of LogObjectPointer.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