Show / Hide Table of Contents

Class ScheduledActionArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ScheduledActionArgs
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.AppAutoScaling
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ScheduledActionArgs : ResourceArgs

Constructors

View Source

ScheduledActionArgs()

Declaration
public ScheduledActionArgs()

Properties

View Source

EndTime

The date and time for the scheduled action to end. Specify the following format: 2006-01-02T15:04:05Z

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

Name

The name of the scheduled action.

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

ResourceId

The identifier of the resource associated with the scheduled action. Documentation can be found in the parameter at: AWS Application Auto Scaling API Reference

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

ScalableDimension

The scalable dimension. Documentation can be found in the parameter at: AWS Application Auto Scaling API Reference Example: ecs:service:DesiredCount

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

ScalableTargetAction

The new minimum and maximum capacity. You can set both values or just one. See below

Declaration
public Input<ScheduledActionScalableTargetActionArgs> ScalableTargetAction { get; set; }
Property Value
Type Description
Input<ScheduledActionScalableTargetActionArgs>
View Source

Schedule

The schedule for this action. The following formats are supported: At expressions - at(yyyy-mm-ddThh:mm:ss), Rate expressions - rate(valueunit), Cron expressions - cron(fields). In UTC. Documentation can be found in the parameter at: AWS Application Auto Scaling API Reference

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

ServiceNamespace

The namespace of the AWS service. Documentation can be found in the parameter at: AWS Application Auto Scaling API Reference Example: ecs

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

StartTime

The date and time for the scheduled action to start. Specify the following format: 2006-01-02T15:04:05Z

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