aws-sdk-migrationhubstrategy 0.25.0

AWS SDK for Migration Hub Strategy Recommendations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StopAssessment`](crate::operation::stop_assessment::builders::StopAssessmentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`assessment_id(impl Into<String>)`](crate::operation::stop_assessment::builders::StopAssessmentFluentBuilder::assessment_id) / [`set_assessment_id(Option<String>)`](crate::operation::stop_assessment::builders::StopAssessmentFluentBuilder::set_assessment_id): <p> The <code>assessmentId</code> returned by <code>StartAssessment</code>. </p>
    /// - On success, responds with [`StopAssessmentOutput`](crate::operation::stop_assessment::StopAssessmentOutput)
    /// - On failure, responds with [`SdkError<StopAssessmentError>`](crate::operation::stop_assessment::StopAssessmentError)
    pub fn stop_assessment(
        &self,
    ) -> crate::operation::stop_assessment::builders::StopAssessmentFluentBuilder {
        crate::operation::stop_assessment::builders::StopAssessmentFluentBuilder::new(
            self.handle.clone(),
        )
    }
}