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 [`GetServiceInstance`](crate::operation::get_service_instance::builders::GetServiceInstanceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::get_service_instance::builders::GetServiceInstanceFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_service_instance::builders::GetServiceInstanceFluentBuilder::set_name):<br>required: **true**<br><p>The name of a service instance that you want to get the detailed data for.</p><br>
    ///   - [`service_name(impl Into<String>)`](crate::operation::get_service_instance::builders::GetServiceInstanceFluentBuilder::service_name) / [`set_service_name(Option<String>)`](crate::operation::get_service_instance::builders::GetServiceInstanceFluentBuilder::set_service_name):<br>required: **true**<br><p>The name of the service that you want the service instance input for.</p><br>
    /// - On success, responds with [`GetServiceInstanceOutput`](crate::operation::get_service_instance::GetServiceInstanceOutput) with field(s):
    ///   - [`service_instance(Option<ServiceInstance>)`](crate::operation::get_service_instance::GetServiceInstanceOutput::service_instance): <p>The detailed data of the requested service instance.</p>
    /// - On failure, responds with [`SdkError<GetServiceInstanceError>`](crate::operation::get_service_instance::GetServiceInstanceError)
    pub fn get_service_instance(&self) -> crate::operation::get_service_instance::builders::GetServiceInstanceFluentBuilder {
        crate::operation::get_service_instance::builders::GetServiceInstanceFluentBuilder::new(self.handle.clone())
    }
}