aws_sdk_iotmanagedintegrations/client/
put_hub_configuration.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`PutHubConfiguration`](crate::operation::put_hub_configuration::builders::PutHubConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`hub_token_timer_expiry_setting_in_seconds(i64)`](crate::operation::put_hub_configuration::builders::PutHubConfigurationFluentBuilder::hub_token_timer_expiry_setting_in_seconds) / [`set_hub_token_timer_expiry_setting_in_seconds(Option<i64>)`](crate::operation::put_hub_configuration::builders::PutHubConfigurationFluentBuilder::set_hub_token_timer_expiry_setting_in_seconds):<br>required: **true**<br><p>A user-defined integer value that represents the hub token timer expiry setting in seconds.</p><br>
7    /// - On success, responds with [`PutHubConfigurationOutput`](crate::operation::put_hub_configuration::PutHubConfigurationOutput) with field(s):
8    ///   - [`hub_token_timer_expiry_setting_in_seconds(Option<i64>)`](crate::operation::put_hub_configuration::PutHubConfigurationOutput::hub_token_timer_expiry_setting_in_seconds): <p>A user-defined integer value that represents the hub token timer expiry setting in seconds.</p>
9    /// - On failure, responds with [`SdkError<PutHubConfigurationError>`](crate::operation::put_hub_configuration::PutHubConfigurationError)
10    pub fn put_hub_configuration(&self) -> crate::operation::put_hub_configuration::builders::PutHubConfigurationFluentBuilder {
11        crate::operation::put_hub_configuration::builders::PutHubConfigurationFluentBuilder::new(self.handle.clone())
12    }
13}