You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::StorageGateway::Types::UpdateBandwidthRateLimitScheduleInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateBandwidthRateLimitScheduleInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  gateway_arn: "GatewayARN", # required
  bandwidth_rate_limit_intervals: [ # required
    {
      start_hour_of_day: 1, # required
      start_minute_of_hour: 1, # required
      end_hour_of_day: 1, # required
      end_minute_of_hour: 1, # required
      days_of_week: [1], # required
      average_upload_rate_limit_in_bits_per_sec: 1,
      average_download_rate_limit_in_bits_per_sec: 1,
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#bandwidth_rate_limit_intervalsArray<Types::BandwidthRateLimitInterval>

An array containing bandwidth rate limit schedule intervals for a gateway. When no bandwidth rate limit intervals have been scheduled, the array is empty.

Returns:

#gateway_arnString

The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and AWS Region.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the gateway.