Skip to content

Describe Maintenance Start Time

storagegateway_describe_maintenance_start_time R Documentation

Returns your gateway's maintenance window schedule information, with values for monthly or weekly cadence, specific day and time to begin maintenance, and which types of updates to apply

Description

Returns your gateway's maintenance window schedule information, with values for monthly or weekly cadence, specific day and time to begin maintenance, and which types of updates to apply. Time values returned are for the gateway's time zone.

Usage

storagegateway_describe_maintenance_start_time(GatewayARN)

Arguments

GatewayARN

[required] The Amazon Resource Name (ARN) of the gateway. Use the list_gateways operation to return a list of gateways for your account and Amazon Web Services Region.

Value

A list with the following syntax:

list(
  GatewayARN = "string",
  HourOfDay = 123,
  MinuteOfHour = 123,
  DayOfWeek = 123,
  DayOfMonth = 123,
  Timezone = "string",
  SoftwareUpdatePreferences = list(
    AutomaticUpdatePolicy = "ALL_VERSIONS"|"EMERGENCY_VERSIONS_ONLY"
  )
)

Request syntax

svc$describe_maintenance_start_time(
  GatewayARN = "string"
)

Examples

## Not run: 
# Returns your gateway's weekly maintenance start time including the day
# and time of the week.
svc$describe_maintenance_start_time(
  GatewayARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
)

## End(Not run)