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.

Container for the parameters to the UpdateMaintenanceStartTime operation. Updates a gateway's weekly maintenance start time information, including day and time of the week. The maintenance time is the time in your gateway's time zone.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.StorageGateway.AmazonStorageGatewayRequest
      Amazon.StorageGateway.Model.UpdateMaintenanceStartTimeRequest

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

Syntax

C#
public class UpdateMaintenanceStartTimeRequest : AmazonStorageGatewayRequest
         IAmazonWebServiceRequest

The UpdateMaintenanceStartTimeRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property DayOfMonth System.Int32

Gets and sets the property DayOfMonth.

The day of the month component of the maintenance start time represented as an ordinal number from 1 to 28, where 1 represents the first day of the month and 28 represents the last day of the month.

Public Property DayOfWeek System.Int32

Gets and sets the property DayOfWeek.

The day of the week component of the maintenance start time week represented as an ordinal number from 0 to 6, where 0 represents Sunday and 6 Saturday.

Public Property GatewayARN System.String

Gets and sets the property GatewayARN.

Public Property HourOfDay System.Int32

Gets and sets the property HourOfDay.

The hour component of the maintenance start time represented as hh, where hh is the hour (00 to 23). The hour of the day is in the time zone of the gateway.

Public Property MinuteOfHour System.Int32

Gets and sets the property MinuteOfHour.

The minute component of the maintenance start time represented as mm, where mm is the minute (00 to 59). The minute of the hour is in the time zone of the gateway.

Examples

Updates a gateway's weekly maintenance start time information, including day and time of the week. The maintenance time is in your gateway's time zone.

To update a gateway's maintenance start time


var client = new AmazonStorageGatewayClient();
var response = client.UpdateMaintenanceStartTime(new UpdateMaintenanceStartTimeRequest 
{
    DayOfWeek = 2,
    GatewayARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
    HourOfDay = 0,
    MinuteOfHour = 30
});

string gatewayARN = response.GatewayARN;

            

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