@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)", date="2022-08-09T19:16:42.419Z") 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 . |
IResource.Jsii$Default
Modifier | Constructor and Description |
---|---|
protected |
ScheduledAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
ScheduledAction(software.amazon.jsii.JsiiObjectRef objRef) |
|
ScheduledAction(software.constructs.Construct scope,
java.lang.String id,
ScheduledActionProps props) |
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isResource
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getNode
protected ScheduledAction(software.amazon.jsii.JsiiObjectRef objRef)
protected ScheduledAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
public ScheduledAction(software.constructs.Construct scope, java.lang.String id, ScheduledActionProps props)
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.