1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeService`](crate::operation::describe_service::builders::DescribeServiceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`service_arn(impl Into<String>)`](crate::operation::describe_service::builders::DescribeServiceFluentBuilder::service_arn) / [`set_service_arn(Option<String>)`](crate::operation::describe_service::builders::DescribeServiceFluentBuilder::set_service_arn): <p>The Amazon Resource Name (ARN) of the App Runner service that you want a description for.</p>
    /// - On success, responds with [`DescribeServiceOutput`](crate::operation::describe_service::DescribeServiceOutput) with field(s):
    ///   - [`service(Option<Service>)`](crate::operation::describe_service::DescribeServiceOutput::service): <p>A full description of the App Runner service that you specified in this request.</p>
    /// - On failure, responds with [`SdkError<DescribeServiceError>`](crate::operation::describe_service::DescribeServiceError)
    pub fn describe_service(
        &self,
    ) -> crate::operation::describe_service::builders::DescribeServiceFluentBuilder {
        crate::operation::describe_service::builders::DescribeServiceFluentBuilder::new(
            self.handle.clone(),
        )
    }
}