Show / Hide Table of Contents

Class ScheduleState

Inheritance
System.Object
InputArgs
ResourceArgs
ScheduleState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.AutoScaling
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ScheduleState : ResourceArgs

Constructors

View Source

ScheduleState()

Declaration
public ScheduleState()

Properties

View Source

Arn

The ARN assigned by AWS to the autoscaling schedule.

Declaration
public Input<string> Arn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

AutoscalingGroupName

The name or Amazon Resource Name (ARN) of the Auto Scaling group.

Declaration
public Input<string> AutoscalingGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DesiredCapacity

The number of EC2 instances that should be running in the group. Default 0. Set to -1 if you don't want to change the desired capacity at the scheduled time.

Declaration
public Input<int> DesiredCapacity { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

EndTime

The time for this action to end, in "YYYY-MM-DDThh:mm:ssZ" format in UTC/GMT only (for example, 2014-06-01T00:00:00Z ). If you try to schedule your action in the past, Auto Scaling returns an error message.

Declaration
public Input<string> EndTime { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MaxSize

The maximum size for the Auto Scaling group. Default 0. Set to -1 if you don't want to change the maximum size at the scheduled time.

Declaration
public Input<int> MaxSize { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

MinSize

The minimum size for the Auto Scaling group. Default 0. Set to -1 if you don't want to change the minimum size at the scheduled time.

Declaration
public Input<int> MinSize { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Recurrence

The time when recurring future actions will start. Start time is specified by the user following the Unix cron syntax format.

Declaration
public Input<string> Recurrence { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ScheduledActionName

The name of this scaling action.

Declaration
public Input<string> ScheduledActionName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

StartTime

The time for this action to start, in "YYYY-MM-DDThh:mm:ssZ" format in UTC/GMT only (for example, 2014-06-01T00:00:00Z ). If you try to schedule your action in the past, Auto Scaling returns an error message.

Declaration
public Input<string> StartTime { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.