pub struct S3BatchJobEvent {
pub invocation_schema_version: Option<String>,
pub invocation_id: Option<String>,
pub job: S3BatchJob,
pub tasks: Vec<S3BatchJobTask>,
}Expand description
S3BatchJobEvent encapsulates the detail of a s3 batch job
Fields§
§invocation_schema_version: Option<String>§invocation_id: Option<String>§job: S3BatchJob§tasks: Vec<S3BatchJobTask>Trait Implementations§
Source§impl Clone for S3BatchJobEvent
impl Clone for S3BatchJobEvent
Source§fn clone(&self) -> S3BatchJobEvent
fn clone(&self) -> S3BatchJobEvent
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 S3BatchJobEvent
impl Debug for S3BatchJobEvent
Source§impl Default for S3BatchJobEvent
impl Default for S3BatchJobEvent
Source§fn default() -> S3BatchJobEvent
fn default() -> S3BatchJobEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for S3BatchJobEvent
impl<'de> Deserialize<'de> for S3BatchJobEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for S3BatchJobEvent
impl PartialEq for S3BatchJobEvent
Source§impl Serialize for S3BatchJobEvent
impl Serialize for S3BatchJobEvent
impl Eq for S3BatchJobEvent
impl StructuralPartialEq for S3BatchJobEvent
Auto Trait Implementations§
impl Freeze for S3BatchJobEvent
impl RefUnwindSafe for S3BatchJobEvent
impl Send for S3BatchJobEvent
impl Sync for S3BatchJobEvent
impl Unpin for S3BatchJobEvent
impl UnwindSafe for S3BatchJobEvent
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