Struct aws_sdk_glue::types::BatchStopJobRunError
source · #[non_exhaustive]pub struct BatchStopJobRunError {
pub job_name: Option<String>,
pub job_run_id: Option<String>,
pub error_detail: Option<ErrorDetail>,
}Expand description
Records an error that occurred when attempting to stop a specified job run.
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.job_name: Option<String>The name of the job definition that is used in the job run in question.
job_run_id: Option<String>The JobRunId of the job run in question.
error_detail: Option<ErrorDetail>Specifies details about the error that was encountered.
Implementations§
source§impl BatchStopJobRunError
impl BatchStopJobRunError
sourcepub fn job_name(&self) -> Option<&str>
pub fn job_name(&self) -> Option<&str>
The name of the job definition that is used in the job run in question.
sourcepub fn job_run_id(&self) -> Option<&str>
pub fn job_run_id(&self) -> Option<&str>
The JobRunId of the job run in question.
sourcepub fn error_detail(&self) -> Option<&ErrorDetail>
pub fn error_detail(&self) -> Option<&ErrorDetail>
Specifies details about the error that was encountered.
source§impl BatchStopJobRunError
impl BatchStopJobRunError
sourcepub fn builder() -> BatchStopJobRunErrorBuilder
pub fn builder() -> BatchStopJobRunErrorBuilder
Creates a new builder-style object to manufacture BatchStopJobRunError.
Trait Implementations§
source§impl Clone for BatchStopJobRunError
impl Clone for BatchStopJobRunError
source§fn clone(&self) -> BatchStopJobRunError
fn clone(&self) -> BatchStopJobRunError
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 BatchStopJobRunError
impl Debug for BatchStopJobRunError
source§impl PartialEq for BatchStopJobRunError
impl PartialEq for BatchStopJobRunError
source§fn eq(&self, other: &BatchStopJobRunError) -> bool
fn eq(&self, other: &BatchStopJobRunError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchStopJobRunError
Auto Trait Implementations§
impl RefUnwindSafe for BatchStopJobRunError
impl Send for BatchStopJobRunError
impl Sync for BatchStopJobRunError
impl Unpin for BatchStopJobRunError
impl UnwindSafe for BatchStopJobRunError
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.