aws-sdk-greengrass 0.26.0

AWS SDK for AWS Greengrass
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetConnectivityInfo`](crate::operation::get_connectivity_info::builders::GetConnectivityInfoFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`thing_name(impl Into<String>)`](crate::operation::get_connectivity_info::builders::GetConnectivityInfoFluentBuilder::thing_name) / [`set_thing_name(Option<String>)`](crate::operation::get_connectivity_info::builders::GetConnectivityInfoFluentBuilder::set_thing_name): The thing name.
    /// - On success, responds with [`GetConnectivityInfoOutput`](crate::operation::get_connectivity_info::GetConnectivityInfoOutput) with field(s):
    ///   - [`connectivity_info(Option<Vec<ConnectivityInfo>>)`](crate::operation::get_connectivity_info::GetConnectivityInfoOutput::connectivity_info): Connectivity info list.
    ///   - [`message(Option<String>)`](crate::operation::get_connectivity_info::GetConnectivityInfoOutput::message): A message about the connectivity info request.
    /// - On failure, responds with [`SdkError<GetConnectivityInfoError>`](crate::operation::get_connectivity_info::GetConnectivityInfoError)
    pub fn get_connectivity_info(
        &self,
    ) -> crate::operation::get_connectivity_info::builders::GetConnectivityInfoFluentBuilder {
        crate::operation::get_connectivity_info::builders::GetConnectivityInfoFluentBuilder::new(
            self.handle.clone(),
        )
    }
}