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
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();
- See Also:
-
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.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getMonday
The schedule for Monday.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getSaturday
The schedule for Saturday.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getSunday
The schedule for Sunday.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getThursday
The schedule for Thursday.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getTuesday
The schedule for Tuesday.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getWednesday
The schedule for Wednesday.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
builder
-