Get Bandwidth Rate Limit Schedule
backupgateway_get_bandwidth_rate_limit_schedule | R Documentation |
Retrieves the bandwidth rate limit schedule for a specified gateway¶
Description¶
Retrieves the bandwidth rate limit schedule for a specified gateway. By default, gateways do not have bandwidth rate limit schedules, which means no bandwidth rate limiting is in effect. Use this to get a gateway's bandwidth rate limit schedule.
Usage¶
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(
BandwidthRateLimitIntervals = list(
list(
AverageUploadRateLimitInBitsPerSec = 123,
DaysOfWeek = list(
123
),
EndHourOfDay = 123,
EndMinuteOfHour = 123,
StartHourOfDay = 123,
StartMinuteOfHour = 123
)
),
GatewayArn = "string"
)