interface JavaScriptSourceMapsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RUM.CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrum#CfnAppMonitorPropsMixin_JavaScriptSourceMapsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rum.CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty |
Python | aws_cdk.cfn_property_mixins.aws_rum.CfnAppMonitorPropsMixin.JavaScriptSourceMapsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rum » 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 { aws_rum as rum } from '@aws-cdk/cfn-property-mixins';
const javaScriptSourceMapsProperty: rum.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