#[non_exhaustive]pub struct DescribeTableDataImportJobOutput {
pub job_status: Option<TableDataImportJobStatus>,
pub message: Option<String>,
pub job_metadata: Option<TableDataImportJobMetadata>,
pub error_code: Option<ErrorCode>,
}
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.job_status: Option<TableDataImportJobStatus>
The current status of the import job.
message: Option<String>
A message providing more details about the current status of the import job.
job_metadata: Option<TableDataImportJobMetadata>
The metadata about the job that was submitted for import.
error_code: Option<ErrorCode>
If job status is failed, error code to understand reason for the failure.
Implementations
sourceimpl DescribeTableDataImportJobOutput
impl DescribeTableDataImportJobOutput
sourcepub fn job_status(&self) -> Option<&TableDataImportJobStatus>
pub fn job_status(&self) -> Option<&TableDataImportJobStatus>
The current status of the import job.
sourcepub fn message(&self) -> Option<&str>
pub fn message(&self) -> Option<&str>
A message providing more details about the current status of the import job.
sourcepub fn job_metadata(&self) -> Option<&TableDataImportJobMetadata>
pub fn job_metadata(&self) -> Option<&TableDataImportJobMetadata>
The metadata about the job that was submitted for import.
sourcepub fn error_code(&self) -> Option<&ErrorCode>
pub fn error_code(&self) -> Option<&ErrorCode>
If job status is failed, error code to understand reason for the failure.
sourceimpl DescribeTableDataImportJobOutput
impl DescribeTableDataImportJobOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeTableDataImportJobOutput
Trait Implementations
sourceimpl Clone for DescribeTableDataImportJobOutput
impl Clone for DescribeTableDataImportJobOutput
sourcefn clone(&self) -> DescribeTableDataImportJobOutput
fn clone(&self) -> DescribeTableDataImportJobOutput
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 PartialEq<DescribeTableDataImportJobOutput> for DescribeTableDataImportJobOutput
impl PartialEq<DescribeTableDataImportJobOutput> for DescribeTableDataImportJobOutput
sourcefn eq(&self, other: &DescribeTableDataImportJobOutput) -> bool
fn eq(&self, other: &DescribeTableDataImportJobOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeTableDataImportJobOutput) -> bool
fn ne(&self, other: &DescribeTableDataImportJobOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeTableDataImportJobOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeTableDataImportJobOutput
impl Send for DescribeTableDataImportJobOutput
impl Sync for DescribeTableDataImportJobOutput
impl Unpin for DescribeTableDataImportJobOutput
impl UnwindSafe for DescribeTableDataImportJobOutput
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> 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