1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateBandwidthRateLimit`](crate::operation::update_bandwidth_rate_limit::builders::UpdateBandwidthRateLimitFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`gateway_arn(impl Into<String>)`](crate::operation::update_bandwidth_rate_limit::builders::UpdateBandwidthRateLimitFluentBuilder::gateway_arn) / [`set_gateway_arn(Option<String>)`](crate::operation::update_bandwidth_rate_limit::builders::UpdateBandwidthRateLimitFluentBuilder::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>
    ///   - [`average_upload_rate_limit_in_bits_per_sec(i64)`](crate::operation::update_bandwidth_rate_limit::builders::UpdateBandwidthRateLimitFluentBuilder::average_upload_rate_limit_in_bits_per_sec) / [`set_average_upload_rate_limit_in_bits_per_sec(Option<i64>)`](crate::operation::update_bandwidth_rate_limit::builders::UpdateBandwidthRateLimitFluentBuilder::set_average_upload_rate_limit_in_bits_per_sec):<br>required: **false**<br><p>The average upload bandwidth rate limit in bits per second.</p><br>
    ///   - [`average_download_rate_limit_in_bits_per_sec(i64)`](crate::operation::update_bandwidth_rate_limit::builders::UpdateBandwidthRateLimitFluentBuilder::average_download_rate_limit_in_bits_per_sec) / [`set_average_download_rate_limit_in_bits_per_sec(Option<i64>)`](crate::operation::update_bandwidth_rate_limit::builders::UpdateBandwidthRateLimitFluentBuilder::set_average_download_rate_limit_in_bits_per_sec):<br>required: **false**<br><p>The average download bandwidth rate limit in bits per second.</p><br>
    /// - On success, responds with [`UpdateBandwidthRateLimitOutput`](crate::operation::update_bandwidth_rate_limit::UpdateBandwidthRateLimitOutput) with field(s):
    ///   - [`gateway_arn(Option<String>)`](crate::operation::update_bandwidth_rate_limit::UpdateBandwidthRateLimitOutput::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<UpdateBandwidthRateLimitError>`](crate::operation::update_bandwidth_rate_limit::UpdateBandwidthRateLimitError)
    pub fn update_bandwidth_rate_limit(&self) -> crate::operation::update_bandwidth_rate_limit::builders::UpdateBandwidthRateLimitFluentBuilder {
        crate::operation::update_bandwidth_rate_limit::builders::UpdateBandwidthRateLimitFluentBuilder::new(self.handle.clone())
    }
}