1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartReportJob`](crate::operation::start_report_job::builders::StartReportJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`report_plan_name(impl Into<String>)`](crate::operation::start_report_job::builders::StartReportJobFluentBuilder::report_plan_name) / [`set_report_plan_name(Option<String>)`](crate::operation::start_report_job::builders::StartReportJobFluentBuilder::set_report_plan_name):<br>required: **true**<br><p>The unique name of a report plan.</p><br>
    ///   - [`idempotency_token(impl Into<String>)`](crate::operation::start_report_job::builders::StartReportJobFluentBuilder::idempotency_token) / [`set_idempotency_token(Option<String>)`](crate::operation::start_report_job::builders::StartReportJobFluentBuilder::set_idempotency_token):<br>required: **false**<br><p>A customer-chosen string that you can use to distinguish between otherwise identical calls to <code>StartReportJobInput</code>. Retrying a successful request with the same idempotency token results in a success message with no action taken.</p><br>
    /// - On success, responds with [`StartReportJobOutput`](crate::operation::start_report_job::StartReportJobOutput) with field(s):
    ///   - [`report_job_id(Option<String>)`](crate::operation::start_report_job::StartReportJobOutput::report_job_id): <p>The identifier of the report job. A unique, randomly generated, Unicode, UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot be edited.</p>
    /// - On failure, responds with [`SdkError<StartReportJobError>`](crate::operation::start_report_job::StartReportJobError)
    pub fn start_report_job(&self) -> crate::operation::start_report_job::builders::StartReportJobFluentBuilder {
        crate::operation::start_report_job::builders::StartReportJobFluentBuilder::new(self.handle.clone())
    }
}