Class: Aws::CloudWatchLogs::Types::GetLogObjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::GetLogObjectRequest
- Defined in:
- gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb
Overview
The parameters for the GetLogObject operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#log_object_pointer ⇒ String
A pointer to the specific log object to retrieve.
-
#unmask ⇒ Boolean
A boolean flag that indicates whether to unmask sensitive log data.
Instance Attribute Details
#log_object_pointer ⇒ String
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.
3419 3420 3421 3422 3423 3424 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 3419 class GetLogObjectRequest < Struct.new( :unmask, :log_object_pointer) SENSITIVE = [] include Aws::Structure end |
#unmask ⇒ Boolean
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.
3419 3420 3421 3422 3423 3424 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 3419 class GetLogObjectRequest < Struct.new( :unmask, :log_object_pointer) SENSITIVE = [] include Aws::Structure end |