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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInstance.TimeBasedAutoScalingProperty
static final class
An implementation forCfnInstance.TimeBasedAutoScalingProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The schedule for Friday.default Object
The schedule for Monday.default Object
The schedule for Saturday.default Object
The schedule for Sunday.default Object
The schedule for Thursday.default Object
The schedule for Tuesday.default Object
The schedule for Wednesday.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFriday
The schedule for Friday. -
getMonday
The schedule for Monday. -
getSaturday
The schedule for Saturday. -
getSunday
The schedule for Sunday. -
getThursday
The schedule for Thursday. -
getTuesday
The schedule for Tuesday. -
getWednesday
The schedule for Wednesday. -
builder
-