Class: Aws::CloudWatchRUM::Types::CwLog

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb

Overview

A structure that contains the information about whether the app monitor stores copies of the data that RUM collects in CloudWatch Logs. If it does, this structure also contains the name of the log group.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cw_log_enabledBoolean

Indicated whether the app monitor stores copies of the data that RUM collects in CloudWatch Logs.

Returns:

  • (Boolean)


669
670
671
672
673
674
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 669

class CwLog < Struct.new(
  :cw_log_enabled,
  :cw_log_group)
  SENSITIVE = []
  include Aws::Structure
end

#cw_log_groupString

The name of the log group where the copies are stored.

Returns:

  • (String)


669
670
671
672
673
674
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 669

class CwLog < Struct.new(
  :cw_log_enabled,
  :cw_log_group)
  SENSITIVE = []
  include Aws::Structure
end