#[non_exhaustive]pub struct CreateBulkImportJobOutput {
pub job_id: String,
pub job_name: String,
pub job_status: JobStatus,
/* 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.job_id: StringThe ID of the job.
job_name: StringThe unique name that helps identify the job request.
job_status: JobStatusThe status of the bulk import job can be one of following values:
-
PENDING– IoT SiteWise is waiting for the current bulk import job to finish. -
CANCELLED– The bulk import job has been canceled. -
RUNNING– IoT SiteWise is processing your request to import your data from Amazon S3. -
COMPLETED– IoT SiteWise successfully completed your request to import data from Amazon S3. -
FAILED– IoT SiteWise couldn't process your request to import data from Amazon S3. You can use logs saved in the specified error report location in Amazon S3 to troubleshoot issues. -
COMPLETED_WITH_FAILURES– IoT SiteWise completed your request to import data from Amazon S3 with errors. You can use logs saved in the specified error report location in Amazon S3 to troubleshoot issues.
Implementations§
source§impl CreateBulkImportJobOutput
impl CreateBulkImportJobOutput
sourcepub fn job_status(&self) -> &JobStatus
pub fn job_status(&self) -> &JobStatus
The status of the bulk import job can be one of following values:
-
PENDING– IoT SiteWise is waiting for the current bulk import job to finish. -
CANCELLED– The bulk import job has been canceled. -
RUNNING– IoT SiteWise is processing your request to import your data from Amazon S3. -
COMPLETED– IoT SiteWise successfully completed your request to import data from Amazon S3. -
FAILED– IoT SiteWise couldn't process your request to import data from Amazon S3. You can use logs saved in the specified error report location in Amazon S3 to troubleshoot issues. -
COMPLETED_WITH_FAILURES– IoT SiteWise completed your request to import data from Amazon S3 with errors. You can use logs saved in the specified error report location in Amazon S3 to troubleshoot issues.
source§impl CreateBulkImportJobOutput
impl CreateBulkImportJobOutput
sourcepub fn builder() -> CreateBulkImportJobOutputBuilder
pub fn builder() -> CreateBulkImportJobOutputBuilder
Creates a new builder-style object to manufacture CreateBulkImportJobOutput.
Trait Implementations§
source§impl Clone for CreateBulkImportJobOutput
impl Clone for CreateBulkImportJobOutput
source§fn clone(&self) -> CreateBulkImportJobOutput
fn clone(&self) -> CreateBulkImportJobOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateBulkImportJobOutput
impl Debug for CreateBulkImportJobOutput
source§impl PartialEq for CreateBulkImportJobOutput
impl PartialEq for CreateBulkImportJobOutput
source§fn eq(&self, other: &CreateBulkImportJobOutput) -> bool
fn eq(&self, other: &CreateBulkImportJobOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateBulkImportJobOutput
impl RequestId for CreateBulkImportJobOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for CreateBulkImportJobOutput
Auto Trait Implementations§
impl Freeze for CreateBulkImportJobOutput
impl RefUnwindSafe for CreateBulkImportJobOutput
impl Send for CreateBulkImportJobOutput
impl Sync for CreateBulkImportJobOutput
impl Unpin for CreateBulkImportJobOutput
impl UnwindSafe for CreateBulkImportJobOutput
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