interface CustomEventsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RUM.Mixins.CfnAppMonitorPropsMixin.CustomEventsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrum/mixins#CfnAppMonitorPropsMixin_CustomEventsProperty |
Java | software.amazon.awscdk.mixins.preview.services.rum.mixins.CfnAppMonitorPropsMixin.CustomEventsProperty |
Python | aws_cdk.mixins_preview.aws_rum.mixins.CfnAppMonitorPropsMixin.CustomEventsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rum » mixins » CfnAppMonitorPropsMixin » CustomEventsProperty |
This structure specifies whether this app monitor allows the web client to define and send custom events.
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 customEventsProperty: rum_mixins.CfnAppMonitorPropsMixin.CustomEventsProperty = {
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| status? | string | Set this to ENABLED to allow the web client to send custom events for this app monitor. |
status?
Type:
string
(optional)
Set this to ENABLED to allow the web client to send custom events for this app monitor.
Valid values are ENABLED and DISABLED .

.NET
Go
Java
Python
TypeScript