Interface CfnDaemonPropsMixin.DaemonDeploymentConfigurationProperty

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

@Stability(Stable) public static interface CfnDaemonPropsMixin.DaemonDeploymentConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ecs.*;
 DaemonDeploymentConfigurationProperty daemonDeploymentConfigurationProperty = DaemonDeploymentConfigurationProperty.builder()
         .alarms(DaemonAlarmConfigurationProperty.builder()
                 .alarmNames(List.of("alarmNames"))
                 .enable(false)
                 .build())
         .bakeTimeInMinutes(123)
         .drainPercent(123)
         .build();
 

See Also: