Struct aws_sdk_migrationhubstrategy::operation::get_import_file_task::GetImportFileTaskOutput
source · #[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>,
/* private fields */
}
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§
source§impl 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
.
source§impl GetImportFileTaskOutput
impl GetImportFileTaskOutput
sourcepub fn builder() -> GetImportFileTaskOutputBuilder
pub fn builder() -> GetImportFileTaskOutputBuilder
Creates a new builder-style object to manufacture GetImportFileTaskOutput
.
Trait Implementations§
source§impl Clone for GetImportFileTaskOutput
impl Clone for GetImportFileTaskOutput
source§fn clone(&self) -> GetImportFileTaskOutput
fn clone(&self) -> GetImportFileTaskOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetImportFileTaskOutput
impl Debug for GetImportFileTaskOutput
source§impl PartialEq for GetImportFileTaskOutput
impl PartialEq for GetImportFileTaskOutput
source§fn eq(&self, other: &GetImportFileTaskOutput) -> bool
fn eq(&self, other: &GetImportFileTaskOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetImportFileTaskOutput
impl RequestId for GetImportFileTaskOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetImportFileTaskOutput
Auto Trait Implementations§
impl Freeze for GetImportFileTaskOutput
impl RefUnwindSafe for GetImportFileTaskOutput
impl Send for GetImportFileTaskOutput
impl Sync for GetImportFileTaskOutput
impl Unpin for GetImportFileTaskOutput
impl UnwindSafe for GetImportFileTaskOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more