aws_sdk_apprunner/client/start_deployment.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 [`StartDeployment`](crate::operation::start_deployment::builders::StartDeploymentFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`service_arn(impl Into<String>)`](crate::operation::start_deployment::builders::StartDeploymentFluentBuilder::service_arn) / [`set_service_arn(Option<String>)`](crate::operation::start_deployment::builders::StartDeploymentFluentBuilder::set_service_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the App Runner service that you want to manually deploy to.</p><br>
7 /// - On success, responds with [`StartDeploymentOutput`](crate::operation::start_deployment::StartDeploymentOutput) with field(s):
8 /// - [`operation_id(String)`](crate::operation::start_deployment::StartDeploymentOutput::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>
9 /// - On failure, responds with [`SdkError<StartDeploymentError>`](crate::operation::start_deployment::StartDeploymentError)
10 pub fn start_deployment(&self) -> crate::operation::start_deployment::builders::StartDeploymentFluentBuilder {
11 crate::operation::start_deployment::builders::StartDeploymentFluentBuilder::new(self.handle.clone())
12 }
13}