1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StopBuild`](crate::operation::stop_build::builders::StopBuildFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::stop_build::builders::StopBuildFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::stop_build::builders::StopBuildFluentBuilder::set_id): <p>The ID of the build.</p>
    /// - On success, responds with [`StopBuildOutput`](crate::operation::stop_build::StopBuildOutput) with field(s):
    ///   - [`build_value(Option<Build>)`](crate::operation::stop_build::StopBuildOutput::build_value): <p>Information about the build.</p>
    /// - On failure, responds with [`SdkError<StopBuildError>`](crate::operation::stop_build::StopBuildError)
    pub fn stop_build(&self) -> crate::operation::stop_build::builders::StopBuildFluentBuilder {
        crate::operation::stop_build::builders::StopBuildFluentBuilder::new(self.handle.clone())
    }
}