Class CfnAppMonitor.JavaScriptSourceMapsProperty
A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.RUM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class JavaScriptSourceMapsProperty : Object, CfnAppMonitor.IJavaScriptSourceMapsProperty
Syntax (vb)
Public Class JavaScriptSourceMapsProperty
Inherits Object
Implements CfnAppMonitor.IJavaScriptSourceMapsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RUM;
var javaScriptSourceMapsProperty = new JavaScriptSourceMapsProperty {
Status = "status",
// the properties below are optional
S3Uri = "s3Uri"
};
Synopsis
Constructors
Java |
Properties
S3Uri | The S3Uri of the bucket or folder that stores the source map files. |
Status | Specifies whether JavaScript error stack traces should be unminified for this app monitor. |
Constructors
JavaScriptSourceMapsProperty()
public JavaScriptSourceMapsProperty()
Properties
S3Uri
The S3Uri of the bucket or folder that stores the source map files.
public string S3Uri { get; set; }
Property Value
System.
Remarks
It is required if status is ENABLED.
Status
Specifies whether JavaScript error stack traces should be unminified for this app monitor.
public string Status { get; set; }
Property Value
System.
Remarks
The default is for JavaScript error stack trace unminification to be DISABLED
.