1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeRecommendationExportJobs`](crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`job_ids(impl Into<String>)`](crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder::job_ids) / [`set_job_ids(Option<Vec::<String>>)`](crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder::set_job_ids):<br>required: **false**<br><p>The identification numbers of the export jobs to return.</p> <p>An export job ID is returned when you create an export using the <code>ExportAutoScalingGroupRecommendations</code> or <code>ExportEC2InstanceRecommendations</code> actions.</p> <p>All export jobs created in the last seven days are returned if this parameter is omitted.</p><br>
    ///   - [`filters(JobFilter)`](crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder::filters) / [`set_filters(Option<Vec::<JobFilter>>)`](crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder::set_filters):<br>required: **false**<br><p>An array of objects to specify a filter that returns a more specific list of export jobs.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token to advance to the next page of export jobs.</p><br>
    ///   - [`max_results(i32)`](crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of export jobs to return with a single request.</p> <p>To retrieve the remaining results, make another request with the returned <code>nextToken</code> value.</p><br>
    /// - On success, responds with [`DescribeRecommendationExportJobsOutput`](crate::operation::describe_recommendation_export_jobs::DescribeRecommendationExportJobsOutput) with field(s):
    ///   - [`recommendation_export_jobs(Option<Vec::<RecommendationExportJob>>)`](crate::operation::describe_recommendation_export_jobs::DescribeRecommendationExportJobsOutput::recommendation_export_jobs): <p>An array of objects that describe recommendation export jobs.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_recommendation_export_jobs::DescribeRecommendationExportJobsOutput::next_token): <p>The token to use to advance to the next page of export jobs.</p> <p>This value is null when there are no more pages of export jobs to return.</p>
    /// - On failure, responds with [`SdkError<DescribeRecommendationExportJobsError>`](crate::operation::describe_recommendation_export_jobs::DescribeRecommendationExportJobsError)
    pub fn describe_recommendation_export_jobs(
        &self,
    ) -> crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder {
        crate::operation::describe_recommendation_export_jobs::builders::DescribeRecommendationExportJobsFluentBuilder::new(self.handle.clone())
    }
}