aws_sdk_iotmanagedintegrations/client/
get_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 [`GetHubConfiguration`](crate::operation::get_hub_configuration::builders::GetHubConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder takes no input, just [`send`](crate::operation::get_hub_configuration::builders::GetHubConfigurationFluentBuilder::send) it.
6    /// - On success, responds with [`GetHubConfigurationOutput`](crate::operation::get_hub_configuration::GetHubConfigurationOutput) with field(s):
7    ///   - [`hub_token_timer_expiry_setting_in_seconds(Option<i64>)`](crate::operation::get_hub_configuration::GetHubConfigurationOutput::hub_token_timer_expiry_setting_in_seconds): <p>A user-defined integer value that represents the hub token timer expiry setting in seconds.</p>
8    ///   - [`updated_at(Option<DateTime>)`](crate::operation::get_hub_configuration::GetHubConfigurationOutput::updated_at): <p>The timestamp value of when the hub configuration was updated.</p>
9    /// - On failure, responds with [`SdkError<GetHubConfigurationError>`](crate::operation::get_hub_configuration::GetHubConfigurationError)
10    pub fn get_hub_configuration(&self) -> crate::operation::get_hub_configuration::builders::GetHubConfigurationFluentBuilder {
11        crate::operation::get_hub_configuration::builders::GetHubConfigurationFluentBuilder::new(self.handle.clone())
12    }
13}