AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the DeleteBandwidthRateLimit operation. 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.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.StorageGateway.AmazonStorageGatewayRequest
      Amazon.StorageGateway.Model.DeleteBandwidthRateLimitRequest

Namespace: Amazon.StorageGateway.Model
Assembly: AWSSDK.StorageGateway.dll
Version: 3.x.y.z

Syntax

C#
public class DeleteBandwidthRateLimitRequest : AmazonStorageGatewayRequest
         IAmazonWebServiceRequest

The DeleteBandwidthRateLimitRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property BandwidthType System.String

Gets and sets the property BandwidthType.

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

Valid Values: UPLOAD | DOWNLOAD | ALL

Public Property GatewayARN System.String

Gets and sets the property GatewayARN.

Examples

Deletes the bandwidth rate limits of a gateway; either the upload or download limit, or both.

To delete bandwidth rate limits of gateway


var client = new AmazonStorageGatewayClient();
var response = client.DeleteBandwidthRateLimit(new DeleteBandwidthRateLimitRequest 
{
    BandwidthType = "All",
    GatewayARN = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
});

string gatewayARN = response.GatewayARN;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5