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 [`PauseService`](crate::operation::pause_service::builders::PauseServiceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`service_arn(impl Into<String>)`](crate::operation::pause_service::builders::PauseServiceFluentBuilder::service_arn) / [`set_service_arn(Option<String>)`](crate::operation::pause_service::builders::PauseServiceFluentBuilder::set_service_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the App Runner service that you want to pause.</p><br>
    /// - On success, responds with [`PauseServiceOutput`](crate::operation::pause_service::PauseServiceOutput) with field(s):
    ///   - [`service(Option<Service>)`](crate::operation::pause_service::PauseServiceOutput::service): <p>A description of the App Runner service that this request just paused.</p>
    ///   - [`operation_id(Option<String>)`](crate::operation::pause_service::PauseServiceOutput::operation_id): <p>The unique ID of the asynchronous operation that this request started. You can use it combined with the <code>ListOperations</code> call to track the operation's progress.</p>
    /// - On failure, responds with [`SdkError<PauseServiceError>`](crate::operation::pause_service::PauseServiceError)
    pub fn pause_service(&self) -> crate::operation::pause_service::builders::PauseServiceFluentBuilder {
        crate::operation::pause_service::builders::PauseServiceFluentBuilder::new(self.handle.clone())
    }
}