Update an existing event monitor given its ID.
Represents the input for updating an event monitor.
Event Monitor ID.
Indicates whether the event monitor should be active (true) or inactive (false).
1const response = await client.updateEventMonitor({
2 id: 'c4d1da72-111e-4d52-bdbf-2e74a2d803d5',
3 isEnabled: true,
4})
5console.log(response.data)