Skip to content

Delete Bandwidth Rate Limit

storagegateway_delete_bandwidth_rate_limit R Documentation

Deletes the bandwidth rate limits of a gateway

Description

Deletes the bandwidth rate limits of a gateway. You can delete either the upload and download bandwidth rate limit, or you can delete both. If you delete only one of the limits, the other limit remains unchanged. To specify which gateway to work with, use the Amazon Resource Name (ARN) of the gateway in your request. This operation is supported only for the stored volume, cached volume, and tape gateway types.

Usage

storagegateway_delete_bandwidth_rate_limit(GatewayARN, BandwidthType)

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.

BandwidthType

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

Valid Values: UPLOAD | DOWNLOAD | ALL

Value

A list with the following syntax:

list(
  GatewayARN = "string"
)

Request syntax

svc$delete_bandwidth_rate_limit(
  GatewayARN = "string",
  BandwidthType = "string"
)

Examples

## Not run: 
# Deletes the bandwidth rate limits of a gateway; either the upload or
# download limit, or both.
svc$delete_bandwidth_rate_limit(
  BandwidthType = "All",
  GatewayARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
)

## End(Not run)