interface JavaScriptSourceMapsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RUM.Mixins.CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrum/mixins#CfnAppMonitorPropsMixin_JavaScriptSourceMapsProperty |
Java | software.amazon.awscdk.mixins.preview.services.rum.mixins.CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty |
Python | aws_cdk.mixins_preview.aws_rum.mixins.CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rum » mixins » CfnAppMonitorPropsMixin » JavaScriptSourceMapsProperty |
A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as rum_mixins } from '@aws-cdk/mixins-preview/aws-rum';
const javaScriptSourceMapsProperty: rum_mixins.CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty = {
s3Uri: 's3Uri',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | 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. |
s3Uri?
Type:
string
(optional)
The S3Uri of the bucket or folder that stores the source map files.
It is required if status is ENABLED.
status?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript