#[non_exhaustive]pub struct GetImportFileTaskOutput {
pub id: Option<String>,
pub status: Option<ImportFileTaskStatus>,
pub start_time: Option<DateTime>,
pub input_s3_bucket: Option<String>,
pub input_s3_key: Option<String>,
pub status_report_s3_bucket: Option<String>,
pub status_report_s3_key: Option<String>,
pub completion_time: Option<DateTime>,
pub number_of_records_success: Option<i32>,
pub number_of_records_failed: Option<i32>,
pub import_name: Option<String>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Option<String> The import file task id returned in the response of StartImportFileTask.
status: Option<ImportFileTaskStatus>Status of import file task.
start_time: Option<DateTime>Start time of the import task.
input_s3_bucket: Option<String>The S3 bucket where import file is located.
input_s3_key: Option<String>The Amazon S3 key name of the import file.
status_report_s3_bucket: Option<String>The S3 bucket name for status report of import task.
status_report_s3_key: Option<String>The Amazon S3 key name for status report of import task. The report contains details about whether each record imported successfully or why it did not.
completion_time: Option<DateTime>The time that the import task completed.
number_of_records_success: Option<i32>The number of records successfully imported.
number_of_records_failed: Option<i32>The number of records that failed to be imported.
import_name: Option<String> The name of the import task given in StartImportFileTask.
Implementations
sourceimpl GetImportFileTaskOutput
impl GetImportFileTaskOutput
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The import file task id returned in the response of StartImportFileTask.
sourcepub fn status(&self) -> Option<&ImportFileTaskStatus>
pub fn status(&self) -> Option<&ImportFileTaskStatus>
Status of import file task.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
Start time of the import task.
sourcepub fn input_s3_bucket(&self) -> Option<&str>
pub fn input_s3_bucket(&self) -> Option<&str>
The S3 bucket where import file is located.
sourcepub fn input_s3_key(&self) -> Option<&str>
pub fn input_s3_key(&self) -> Option<&str>
The Amazon S3 key name of the import file.
sourcepub fn status_report_s3_bucket(&self) -> Option<&str>
pub fn status_report_s3_bucket(&self) -> Option<&str>
The S3 bucket name for status report of import task.
sourcepub fn status_report_s3_key(&self) -> Option<&str>
pub fn status_report_s3_key(&self) -> Option<&str>
The Amazon S3 key name for status report of import task. The report contains details about whether each record imported successfully or why it did not.
sourcepub fn completion_time(&self) -> Option<&DateTime>
pub fn completion_time(&self) -> Option<&DateTime>
The time that the import task completed.
sourcepub fn number_of_records_success(&self) -> Option<i32>
pub fn number_of_records_success(&self) -> Option<i32>
The number of records successfully imported.
sourcepub fn number_of_records_failed(&self) -> Option<i32>
pub fn number_of_records_failed(&self) -> Option<i32>
The number of records that failed to be imported.
sourcepub fn import_name(&self) -> Option<&str>
pub fn import_name(&self) -> Option<&str>
The name of the import task given in StartImportFileTask.
sourceimpl GetImportFileTaskOutput
impl GetImportFileTaskOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetImportFileTaskOutput
Trait Implementations
sourceimpl Clone for GetImportFileTaskOutput
impl Clone for GetImportFileTaskOutput
sourcefn clone(&self) -> GetImportFileTaskOutput
fn clone(&self) -> GetImportFileTaskOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for GetImportFileTaskOutput
impl Debug for GetImportFileTaskOutput
sourceimpl PartialEq<GetImportFileTaskOutput> for GetImportFileTaskOutput
impl PartialEq<GetImportFileTaskOutput> for GetImportFileTaskOutput
sourcefn eq(&self, other: &GetImportFileTaskOutput) -> bool
fn eq(&self, other: &GetImportFileTaskOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GetImportFileTaskOutput) -> bool
fn ne(&self, other: &GetImportFileTaskOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for GetImportFileTaskOutput
Auto Trait Implementations
impl RefUnwindSafe for GetImportFileTaskOutput
impl Send for GetImportFileTaskOutput
impl Sync for GetImportFileTaskOutput
impl Unpin for GetImportFileTaskOutput
impl UnwindSafe for GetImportFileTaskOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more