Show / Hide Table of Contents

Class CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty

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

Inheritance
object
CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty
Implements
CfnAppMonitorPropsMixin.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.CfnPropertyMixins.AWS.RUM
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty : CfnAppMonitorPropsMixin.IJavaScriptSourceMapsProperty
Syntax (vb)
Public Class CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty Implements CfnAppMonitorPropsMixin.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.CfnPropertyMixins.AWS.RUM;

             var javaScriptSourceMapsProperty = new JavaScriptSourceMapsProperty {
                 S3Uri = "s3Uri",
                 Status = "status"
             };

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.CfnPropertyMixins.AWS.RUM;

             var javaScriptSourceMapsProperty = new JavaScriptSourceMapsProperty {
                 S3Uri = "s3Uri",
                 Status = "status"
             };

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

CfnAppMonitorPropsMixin.IJavaScriptSourceMapsProperty
Back to top Generated by DocFX