Class: Aws::CloudWatchRUM::Types::CwLog
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchRUM::Types::CwLog
- Includes:
- Structure
- Defined in:
- 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
-
#cw_log_enabled ⇒ Boolean
Indicated whether the app monitor stores copies of the data that RUM collects in CloudWatch Logs.
-
#cw_log_group ⇒ String
The name of the log group where the copies are stored.
Instance Attribute Details
#cw_log_enabled ⇒ Boolean
Indicated whether the app monitor stores copies of the data that RUM collects in CloudWatch Logs.
669 670 671 672 673 674 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 669 class CwLog < Struct.new( :cw_log_enabled, :cw_log_group) SENSITIVE = [] include Aws::Structure end |