AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

This is the response object from the PutScheduledAction operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.ApplicationAutoScaling.Model.PutScheduledActionResponse

Namespace: Amazon.ApplicationAutoScaling.Model
Assembly: AWSSDK.ApplicationAutoScaling.dll
Version: 3.x.y.z

Syntax

C#
public class PutScheduledActionResponse : AmazonWebServiceResponse

The PutScheduledActionResponse type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

This example adds a scheduled action to a DynamoDB table called TestTable to scale out on a recurring schedule. On the specified schedule (every day at 12:15pm UTC), if the current capacity is below the value specified for MinCapacity, Application Auto Scaling scales out to the value specified by MinCapacity.

To create a recurring scheduled action


var client = new AmazonApplicationAutoScalingClient();
var response = client.PutScheduledAction(new PutScheduledActionRequest 
{
    ResourceId = "table/TestTable",
    ScalableDimension = "dynamodb:table:WriteCapacityUnits",
    ScalableTargetAction = new ScalableTargetAction { MinCapacity = 6 },
    Schedule = "cron(15 12 * * ? *)",
    ScheduledActionName = "my-recurring-action",
    ServiceNamespace = "dynamodb"
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5