aws_sdk_personalize/client/stop_solution_version_creation.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 [`StopSolutionVersionCreation`](crate::operation::stop_solution_version_creation::builders::StopSolutionVersionCreationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`solution_version_arn(impl Into<String>)`](crate::operation::stop_solution_version_creation::builders::StopSolutionVersionCreationFluentBuilder::solution_version_arn) / [`set_solution_version_arn(Option<String>)`](crate::operation::stop_solution_version_creation::builders::StopSolutionVersionCreationFluentBuilder::set_solution_version_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the solution version you want to stop creating.</p><br>
7 /// - On success, responds with [`StopSolutionVersionCreationOutput`](crate::operation::stop_solution_version_creation::StopSolutionVersionCreationOutput)
8 /// - On failure, responds with [`SdkError<StopSolutionVersionCreationError>`](crate::operation::stop_solution_version_creation::StopSolutionVersionCreationError)
9 pub fn stop_solution_version_creation(
10 &self,
11 ) -> crate::operation::stop_solution_version_creation::builders::StopSolutionVersionCreationFluentBuilder {
12 crate::operation::stop_solution_version_creation::builders::StopSolutionVersionCreationFluentBuilder::new(self.handle.clone())
13 }
14}