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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInstance.TimeBasedAutoScalingPropertystatic final classAn implementation forCfnInstance.TimeBasedAutoScalingProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe schedule for Friday.default ObjectThe schedule for Monday.default ObjectThe schedule for Saturday.default ObjectThe schedule for Sunday.default ObjectThe schedule for Thursday.default ObjectThe schedule for Tuesday.default ObjectThe 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
-