Interface CfnDaemon.DaemonAlarmConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDaemon.DaemonAlarmConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDaemon
@Stability(Stable)
public static interface CfnDaemon.DaemonAlarmConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The CloudWatch alarm configuration for a daemon.
When enabled, CloudWatch alarms determine whether a daemon deployment has failed.
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.ecs.*;
DaemonAlarmConfigurationProperty daemonAlarmConfigurationProperty = DaemonAlarmConfigurationProperty.builder()
.alarmNames(List.of("alarmNames"))
.enable(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDaemon.DaemonAlarmConfigurationPropertystatic final classAn implementation forCfnDaemon.DaemonAlarmConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlarmNames
The CloudWatch alarm names to monitor during a daemon deployment.- See Also:
-
getEnable
Determines whether to use the CloudWatch alarm option in the daemon deployment process.The default value is
false.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-