Struct aws_sdk_mgn::types::ImportTask
source · #[non_exhaustive]pub struct ImportTask {
pub import_id: Option<String>,
pub s3_bucket_source: Option<S3BucketSource>,
pub creation_date_time: Option<String>,
pub end_date_time: Option<String>,
pub status: Option<ImportStatus>,
pub progress_percentage: Option<f32>,
pub summary: Option<ImportTaskSummary>,
}Expand description
Import task.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.import_id: Option<String>Import task id.
s3_bucket_source: Option<S3BucketSource>Import task s3 bucket source.
creation_date_time: Option<String>Import task creation datetime.
end_date_time: Option<String>Import task end datetime.
status: Option<ImportStatus>Import task status.
progress_percentage: Option<f32>Import task progress percentage.
summary: Option<ImportTaskSummary>Import task summary.
Implementations§
source§impl ImportTask
impl ImportTask
sourcepub fn s3_bucket_source(&self) -> Option<&S3BucketSource>
pub fn s3_bucket_source(&self) -> Option<&S3BucketSource>
Import task s3 bucket source.
sourcepub fn creation_date_time(&self) -> Option<&str>
pub fn creation_date_time(&self) -> Option<&str>
Import task creation datetime.
sourcepub fn end_date_time(&self) -> Option<&str>
pub fn end_date_time(&self) -> Option<&str>
Import task end datetime.
sourcepub fn status(&self) -> Option<&ImportStatus>
pub fn status(&self) -> Option<&ImportStatus>
Import task status.
sourcepub fn progress_percentage(&self) -> Option<f32>
pub fn progress_percentage(&self) -> Option<f32>
Import task progress percentage.
sourcepub fn summary(&self) -> Option<&ImportTaskSummary>
pub fn summary(&self) -> Option<&ImportTaskSummary>
Import task summary.
source§impl ImportTask
impl ImportTask
sourcepub fn builder() -> ImportTaskBuilder
pub fn builder() -> ImportTaskBuilder
Creates a new builder-style object to manufacture ImportTask.
Trait Implementations§
source§impl Clone for ImportTask
impl Clone for ImportTask
source§fn clone(&self) -> ImportTask
fn clone(&self) -> ImportTask
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ImportTask
impl Debug for ImportTask
source§impl PartialEq for ImportTask
impl PartialEq for ImportTask
source§fn eq(&self, other: &ImportTask) -> bool
fn eq(&self, other: &ImportTask) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ImportTask
Auto Trait Implementations§
impl RefUnwindSafe for ImportTask
impl Send for ImportTask
impl Sync for ImportTask
impl Unpin for ImportTask
impl UnwindSafe for ImportTask
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.