#[non_exhaustive]pub struct CreateDatasetExportJobInput { /* private fields */ }
Implementations§
source§impl CreateDatasetExportJobInput
impl CreateDatasetExportJobInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDatasetExportJob, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDatasetExportJob, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateDatasetExportJob
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateDatasetExportJobInput
.
source§impl CreateDatasetExportJobInput
impl CreateDatasetExportJobInput
sourcepub fn dataset_arn(&self) -> Option<&str>
pub fn dataset_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the dataset that contains the data to export.
sourcepub fn ingestion_mode(&self) -> Option<&IngestionMode>
pub fn ingestion_mode(&self) -> Option<&IngestionMode>
The data to export, based on how you imported the data. You can choose to export only BULK
data that you imported using a dataset import job, only PUT
data that you imported incrementally (using the console, PutEvents, PutUsers and PutItems operations), or ALL
for both types. The default value is PUT
.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM service role that has permissions to add data to your output Amazon S3 bucket.
sourcepub fn job_output(&self) -> Option<&DatasetExportJobOutput>
pub fn job_output(&self) -> Option<&DatasetExportJobOutput>
The path to the Amazon S3 bucket where the job's output is stored.
A list of tags to apply to the dataset export job.
Trait Implementations§
source§impl Clone for CreateDatasetExportJobInput
impl Clone for CreateDatasetExportJobInput
source§fn clone(&self) -> CreateDatasetExportJobInput
fn clone(&self) -> CreateDatasetExportJobInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateDatasetExportJobInput
impl Debug for CreateDatasetExportJobInput
source§impl PartialEq<CreateDatasetExportJobInput> for CreateDatasetExportJobInput
impl PartialEq<CreateDatasetExportJobInput> for CreateDatasetExportJobInput
source§fn eq(&self, other: &CreateDatasetExportJobInput) -> bool
fn eq(&self, other: &CreateDatasetExportJobInput) -> bool
self
and other
values to be equal, and is used
by ==
.