@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.818Z") @Stability(value=Stable) public class ScheduledAction extends Resource
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.autoscaling.*;
AutoScalingGroup autoScalingGroup;
Schedule schedule;
ScheduledAction scheduledAction = ScheduledAction.Builder.create(this, "MyScheduledAction")
.autoScalingGroup(autoScalingGroup)
.schedule(schedule)
// the properties below are optional
.desiredCapacity(123)
.endTime(new Date())
.maxCapacity(123)
.minCapacity(123)
.startTime(new Date())
.timeZone("timeZone")
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
ScheduledAction.Builder
A fluent builder for
ScheduledAction. |
software.amazon.jsii.JsiiObject.InitializationModeIResource.Jsii$Default| Modifier | Constructor and Description |
|---|---|
|
ScheduledAction(software.constructs.Construct scope,
String id,
ScheduledActionProps props) |
protected |
ScheduledAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
ScheduledAction(software.amazon.jsii.JsiiObjectRef objRef) |
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isOwnedResource, isResourcejsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetprotected ScheduledAction(software.amazon.jsii.JsiiObjectRef objRef)
protected ScheduledAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public ScheduledAction(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
ScheduledActionProps props)
scope - This parameter is required.id - This parameter is required.props - This parameter is required.Copyright © 2022. All rights reserved.