Class: Aws::CloudWatchRUM::Types::JavaScriptSourceMaps
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchRUM::Types::JavaScriptSourceMaps
- Defined in:
- gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb
Overview
A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_uri ⇒ String
The S3Uri of the bucket or folder that stores the source map files.
-
#status ⇒ String
Specifies whether JavaScript error stack traces should be unminified for this app monitor.
Instance Attribute Details
#s3_uri ⇒ String
The S3Uri of the bucket or folder that stores the source map files. It is required if status is ENABLED.
996 997 998 999 1000 1001 |
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 996 class JavaScriptSourceMaps < Struct.new( :status, :s3_uri) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Specifies whether JavaScript error stack traces should be unminified
for this app monitor. The default is for JavaScript error stack
trace unminification to be DISABLED.
996 997 998 999 1000 1001 |
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 996 class JavaScriptSourceMaps < Struct.new( :status, :s3_uri) SENSITIVE = [] include Aws::Structure end |