Interface CfnDeploymentGroup.AlarmConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeploymentGroup.AlarmConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDeploymentGroup

@Stability(Stable) public static interface CfnDeploymentGroup.AlarmConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The AlarmConfiguration property type configures CloudWatch alarms for an AWS CodeDeploy deployment group.

AlarmConfiguration is a property of the DeploymentGroup resource.

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.codedeploy.*;
 AlarmConfigurationProperty alarmConfigurationProperty = AlarmConfigurationProperty.builder()
         .alarms(List.of(AlarmProperty.builder()
                 .name("name")
                 .build()))
         .enabled(false)
         .ignorePollAlarmFailure(false)
         .build();
 

See Also: