Updates a notification subscription.
Represents the input to update a subscription .
Whether the subscription is enabled. true
indicates the subscription is active.
Subscription ID.
Name of the subscription.
1const response = await client.updateSubscription({
2 id: 'subscription-id',
3 name: 'new-name',
4 enabled: true,
5})
6console.log(response)