pub struct CreateExportJobFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateExportJob.
Creates an export job for a data source and destination.
You can execute this operation no more than once per second.
Implementations§
source§impl CreateExportJobFluentBuilder
impl CreateExportJobFluentBuilder
sourcepub fn as_input(&self) -> &CreateExportJobInputBuilder
pub fn as_input(&self) -> &CreateExportJobInputBuilder
Access the CreateExportJob as a reference.
sourcepub async fn send(
self
) -> Result<CreateExportJobOutput, SdkError<CreateExportJobError, HttpResponse>>
pub async fn send( self ) -> Result<CreateExportJobOutput, SdkError<CreateExportJobError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<CreateExportJobOutput, CreateExportJobError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateExportJobOutput, CreateExportJobError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn export_data_source(self, input: ExportDataSource) -> Self
pub fn export_data_source(self, input: ExportDataSource) -> Self
The data source for the export job.
sourcepub fn set_export_data_source(self, input: Option<ExportDataSource>) -> Self
pub fn set_export_data_source(self, input: Option<ExportDataSource>) -> Self
The data source for the export job.
sourcepub fn get_export_data_source(&self) -> &Option<ExportDataSource>
pub fn get_export_data_source(&self) -> &Option<ExportDataSource>
The data source for the export job.
sourcepub fn export_destination(self, input: ExportDestination) -> Self
pub fn export_destination(self, input: ExportDestination) -> Self
The destination for the export job.
sourcepub fn set_export_destination(self, input: Option<ExportDestination>) -> Self
pub fn set_export_destination(self, input: Option<ExportDestination>) -> Self
The destination for the export job.
sourcepub fn get_export_destination(&self) -> &Option<ExportDestination>
pub fn get_export_destination(&self) -> &Option<ExportDestination>
The destination for the export job.
Trait Implementations§
source§impl Clone for CreateExportJobFluentBuilder
impl Clone for CreateExportJobFluentBuilder
source§fn clone(&self) -> CreateExportJobFluentBuilder
fn clone(&self) -> CreateExportJobFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more