Interface CfnInstance.TimeBasedAutoScalingProperty

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

@Stability(Stable) public static interface CfnInstance.TimeBasedAutoScalingProperty extends software.amazon.jsii.JsiiSerializable
Describes an instance's time-based auto scaling configuration.

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.opsworks.*;
 TimeBasedAutoScalingProperty timeBasedAutoScalingProperty = TimeBasedAutoScalingProperty.builder()
         .friday(Map.of(
                 "fridayKey", "friday"))
         .monday(Map.of(
                 "mondayKey", "monday"))
         .saturday(Map.of(
                 "saturdayKey", "saturday"))
         .sunday(Map.of(
                 "sundayKey", "sunday"))
         .thursday(Map.of(
                 "thursdayKey", "thursday"))
         .tuesday(Map.of(
                 "tuesdayKey", "tuesday"))
         .wednesday(Map.of(
                 "wednesdayKey", "wednesday"))
         .build();
 
  • Method Details