#[non_exhaustive]pub struct GetAnnotationImportJobOutput {Show 13 fields
pub id: String,
pub destination_name: String,
pub version_name: String,
pub role_arn: String,
pub status: JobStatus,
pub status_message: String,
pub creation_time: DateTime,
pub update_time: DateTime,
pub completion_time: DateTime,
pub items: Vec<AnnotationImportItemDetail>,
pub run_left_normalization: bool,
pub format_options: Option<FormatOptions>,
pub annotation_fields: Option<HashMap<String, String>>,
/* private fields */
}
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.id: String
The job's ID.
destination_name: String
The job's destination annotation store.
version_name: String
The name of the annotation store version.
role_arn: String
The job's service role ARN.
status: JobStatus
The job's status.
status_message: String
The job's status message.
creation_time: DateTime
When the job was created.
update_time: DateTime
When the job was updated.
completion_time: DateTime
When the job completed.
items: Vec<AnnotationImportItemDetail>
The job's imported items.
run_left_normalization: bool
The job's left normalization setting.
format_options: Option<FormatOptions>
Formatting options for a file.
annotation_fields: Option<HashMap<String, String>>
The annotation schema generated by the parsed annotation data.
Implementations§
source§impl GetAnnotationImportJobOutput
impl GetAnnotationImportJobOutput
sourcepub fn destination_name(&self) -> &str
pub fn destination_name(&self) -> &str
The job's destination annotation store.
sourcepub fn version_name(&self) -> &str
pub fn version_name(&self) -> &str
The name of the annotation store version.
sourcepub fn status_message(&self) -> &str
pub fn status_message(&self) -> &str
The job's status message.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
When the job was created.
sourcepub fn update_time(&self) -> &DateTime
pub fn update_time(&self) -> &DateTime
When the job was updated.
sourcepub fn completion_time(&self) -> &DateTime
pub fn completion_time(&self) -> &DateTime
When the job completed.
sourcepub fn items(&self) -> &[AnnotationImportItemDetail]
pub fn items(&self) -> &[AnnotationImportItemDetail]
The job's imported items.
sourcepub fn run_left_normalization(&self) -> bool
pub fn run_left_normalization(&self) -> bool
The job's left normalization setting.
sourcepub fn format_options(&self) -> Option<&FormatOptions>
pub fn format_options(&self) -> Option<&FormatOptions>
Formatting options for a file.
source§impl GetAnnotationImportJobOutput
impl GetAnnotationImportJobOutput
sourcepub fn builder() -> GetAnnotationImportJobOutputBuilder
pub fn builder() -> GetAnnotationImportJobOutputBuilder
Creates a new builder-style object to manufacture GetAnnotationImportJobOutput
.
Trait Implementations§
source§impl Clone for GetAnnotationImportJobOutput
impl Clone for GetAnnotationImportJobOutput
source§fn clone(&self) -> GetAnnotationImportJobOutput
fn clone(&self) -> GetAnnotationImportJobOutput
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 GetAnnotationImportJobOutput
impl Debug for GetAnnotationImportJobOutput
source§impl PartialEq for GetAnnotationImportJobOutput
impl PartialEq for GetAnnotationImportJobOutput
source§fn eq(&self, other: &GetAnnotationImportJobOutput) -> bool
fn eq(&self, other: &GetAnnotationImportJobOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetAnnotationImportJobOutput
impl RequestId for GetAnnotationImportJobOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetAnnotationImportJobOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetAnnotationImportJobOutput
impl Send for GetAnnotationImportJobOutput
impl Sync for GetAnnotationImportJobOutput
impl Unpin for GetAnnotationImportJobOutput
impl UnwindSafe for GetAnnotationImportJobOutput
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.