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 [`GetRecommendationReportDetails`](crate::operation::get_recommendation_report_details::builders::GetRecommendationReportDetailsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::get_recommendation_report_details::builders::GetRecommendationReportDetailsFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_recommendation_report_details::builders::GetRecommendationReportDetailsFluentBuilder::set_id):<br>required: **true**<br><p>The recommendation report generation task <code>id</code> returned by <code>StartRecommendationReportGeneration</code>.</p><br>
    /// - On success, responds with [`GetRecommendationReportDetailsOutput`](crate::operation::get_recommendation_report_details::GetRecommendationReportDetailsOutput) with field(s):
    ///   - [`id(Option<String>)`](crate::operation::get_recommendation_report_details::GetRecommendationReportDetailsOutput::id): <p>The ID of the recommendation report generation task. See the response of <code>StartRecommendationReportGeneration</code>.</p>
    ///   - [`recommendation_report_details(Option<RecommendationReportDetails>)`](crate::operation::get_recommendation_report_details::GetRecommendationReportDetailsOutput::recommendation_report_details): <p>Detailed information about the recommendation report.</p>
    /// - On failure, responds with [`SdkError<GetRecommendationReportDetailsError>`](crate::operation::get_recommendation_report_details::GetRecommendationReportDetailsError)
    pub fn get_recommendation_report_details(
        &self,
    ) -> crate::operation::get_recommendation_report_details::builders::GetRecommendationReportDetailsFluentBuilder {
        crate::operation::get_recommendation_report_details::builders::GetRecommendationReportDetailsFluentBuilder::new(self.handle.clone())
    }
}