1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteBandwidthRateLimit`](crate::operation::delete_bandwidth_rate_limit::builders::DeleteBandwidthRateLimitFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`gateway_arn(impl Into<String>)`](crate::operation::delete_bandwidth_rate_limit::builders::DeleteBandwidthRateLimitFluentBuilder::gateway_arn) / [`set_gateway_arn(Option<String>)`](crate::operation::delete_bandwidth_rate_limit::builders::DeleteBandwidthRateLimitFluentBuilder::set_gateway_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the gateway. Use the <code>ListGateways</code> operation to return a list of gateways for your account and Amazon Web Services Region.</p><br>
    ///   - [`bandwidth_type(impl Into<String>)`](crate::operation::delete_bandwidth_rate_limit::builders::DeleteBandwidthRateLimitFluentBuilder::bandwidth_type) / [`set_bandwidth_type(Option<String>)`](crate::operation::delete_bandwidth_rate_limit::builders::DeleteBandwidthRateLimitFluentBuilder::set_bandwidth_type):<br>required: **true**<br><p>One of the BandwidthType values that indicates the gateway bandwidth rate limit to delete.</p> <p>Valid Values: <code>UPLOAD</code> | <code>DOWNLOAD</code> | <code>ALL</code></p><br>
    /// - On success, responds with [`DeleteBandwidthRateLimitOutput`](crate::operation::delete_bandwidth_rate_limit::DeleteBandwidthRateLimitOutput) with field(s):
    ///   - [`gateway_arn(Option<String>)`](crate::operation::delete_bandwidth_rate_limit::DeleteBandwidthRateLimitOutput::gateway_arn): <p>The Amazon Resource Name (ARN) of the gateway. Use the <code>ListGateways</code> operation to return a list of gateways for your account and Amazon Web Services Region.</p>
    /// - On failure, responds with [`SdkError<DeleteBandwidthRateLimitError>`](crate::operation::delete_bandwidth_rate_limit::DeleteBandwidthRateLimitError)
    pub fn delete_bandwidth_rate_limit(&self) -> crate::operation::delete_bandwidth_rate_limit::builders::DeleteBandwidthRateLimitFluentBuilder {
        crate::operation::delete_bandwidth_rate_limit::builders::DeleteBandwidthRateLimitFluentBuilder::new(self.handle.clone())
    }
}