Interface CfnAppMonitor.DeobfuscationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppMonitor.DeobfuscationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAppMonitor
@Stability(Stable)
public static interface CfnAppMonitor.DeobfuscationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
A structure that contains the configuration for how an app monitor can deobfuscate stack traces.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.rum.*;
DeobfuscationConfigurationProperty deobfuscationConfigurationProperty = DeobfuscationConfigurationProperty.builder()
.javaScriptSourceMaps(JavaScriptSourceMapsProperty.builder()
.status("status")
// the properties below are optional
.s3Uri("s3Uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppMonitor.DeobfuscationConfigurationPropertystatic final classAn implementation forCfnAppMonitor.DeobfuscationConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJavaScriptSourceMaps
A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.Returns union: either
IResolvableorCfnAppMonitor.JavaScriptSourceMapsProperty- See Also:
-
builder
-