DeploymentGroupAlarmConfiguration constructor

const DeploymentGroupAlarmConfiguration({
  1. Input<List<String>?>? alarms,
  2. Input<bool?>? enabled,
  3. Input<bool?>? ignorePollAlarmFailure,
})

Creates a new DeploymentGroupAlarmConfiguration. alarms A list of alarms configured for the deployment group. enabled Indicates whether the alarm configuration is enabled. This option is useful when you want to temporarily deactivate alarm monitoring for a deployment group without having to add the same alarms again later. ignorePollAlarmFailure Indicates whether a deployment should continue if information about the current state of alarms cannot be retrieved from CloudWatch. The default value is false.

Implementation

const DeploymentGroupAlarmConfiguration({
  this.alarms,
  this.enabled,
  this.ignorePollAlarmFailure,
});