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 [`CreateExportJob`](crate::operation::create_export_job::builders::CreateExportJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`export_data_source(ExportDataSource)`](crate::operation::create_export_job::builders::CreateExportJobFluentBuilder::export_data_source) / [`set_export_data_source(Option<ExportDataSource>)`](crate::operation::create_export_job::builders::CreateExportJobFluentBuilder::set_export_data_source):<br>required: **true**<br><p>The data source for the export job.</p><br>
    ///   - [`export_destination(ExportDestination)`](crate::operation::create_export_job::builders::CreateExportJobFluentBuilder::export_destination) / [`set_export_destination(Option<ExportDestination>)`](crate::operation::create_export_job::builders::CreateExportJobFluentBuilder::set_export_destination):<br>required: **true**<br><p>The destination for the export job.</p><br>
    /// - On success, responds with [`CreateExportJobOutput`](crate::operation::create_export_job::CreateExportJobOutput) with field(s):
    ///   - [`job_id(Option<String>)`](crate::operation::create_export_job::CreateExportJobOutput::job_id): <p>A string that represents the export job ID.</p>
    /// - On failure, responds with [`SdkError<CreateExportJobError>`](crate::operation::create_export_job::CreateExportJobError)
    pub fn create_export_job(&self) -> crate::operation::create_export_job::builders::CreateExportJobFluentBuilder {
        crate::operation::create_export_job::builders::CreateExportJobFluentBuilder::new(self.handle.clone())
    }
}