Show / Hide Table of Contents

Class CfnAppMonitor.JavaScriptSourceMapsProperty

A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.

Inheritance
object
CfnAppMonitor.JavaScriptSourceMapsProperty
Implements
CfnAppMonitor.IJavaScriptSourceMapsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.RUM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAppMonitor.JavaScriptSourceMapsProperty : CfnAppMonitor.IJavaScriptSourceMapsProperty
Syntax (vb)
Public Class CfnAppMonitor.JavaScriptSourceMapsProperty Implements CfnAppMonitor.IJavaScriptSourceMapsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-javascriptsourcemaps.html

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

JavaScriptSourceMapsProperty()

A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.

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()

A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.

public JavaScriptSourceMapsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-javascriptsourcemaps.html

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"
             };

Properties

S3Uri

The S3Uri of the bucket or folder that stores the source map files.

public string? S3Uri { get; set; }
Property Value

string

Remarks

It is required if status is ENABLED.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-javascriptsourcemaps.html#cfn-rum-appmonitor-javascriptsourcemaps-s3uri

Status

Specifies whether JavaScript error stack traces should be unminified for this app monitor.

public string Status { get; set; }
Property Value

string

Remarks

The default is for JavaScript error stack trace unminification to be DISABLED .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-javascriptsourcemaps.html#cfn-rum-appmonitor-javascriptsourcemaps-status

Implements

CfnAppMonitor.IJavaScriptSourceMapsProperty
Back to top Generated by DocFX