Class: Aws::StorageGateway::Types::DeleteBandwidthRateLimitInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-storagegateway/types.rb

Overview

Note:

When making an API call, you may pass DeleteBandwidthRateLimitInput data as a hash:

{
  gateway_arn: "GatewayARN", # required
  bandwidth_type: "BandwidthType", # required
}

A JSON object containing the following fields:

  • DeleteBandwidthRateLimitInput$BandwidthType

^

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bandwidth_typeString

One of the BandwidthType values that indicates the gateway bandwidth rate limit to delete.

Valid Values: ‘UPLOAD` | `DOWNLOAD` | `ALL`

Returns:

  • (String)


2250
2251
2252
2253
2254
2255
# File 'lib/aws-sdk-storagegateway/types.rb', line 2250

class DeleteBandwidthRateLimitInput < Struct.new(
  :gateway_arn,
  :bandwidth_type)
  SENSITIVE = []
  include Aws::Structure
end

#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)


2250
2251
2252
2253
2254
2255
# File 'lib/aws-sdk-storagegateway/types.rb', line 2250

class DeleteBandwidthRateLimitInput < Struct.new(
  :gateway_arn,
  :bandwidth_type)
  SENSITIVE = []
  include Aws::Structure
end