pub struct S3BatchJobTask {
pub task_id: Option<String>,
pub s3_key: Option<String>,
pub s3_version_id: Option<String>,
pub s3_bucket_arn: Option<String>,
pub other: Map<String, Value>,
}
Available on crate feature
s3
only.Expand description
S3BatchJobTask
represents one task in the s3 batch job and have all task details
Fields§
§task_id: Option<String>
§s3_key: Option<String>
§s3_version_id: Option<String>
§s3_bucket_arn: Option<String>
§other: Map<String, Value>
Available on crate feature
catch-all-fields
only.Catchall to catch any additional fields that were present but not explicitly defined by this struct.
Enabled with Cargo feature catch-all-fields
.
If catch-all-fields
is disabled, any additional fields that are present will be ignored.
Trait Implementations§
Source§impl Clone for S3BatchJobTask
impl Clone for S3BatchJobTask
Source§fn clone(&self) -> S3BatchJobTask
fn clone(&self) -> S3BatchJobTask
Returns a duplicate 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 S3BatchJobTask
impl Debug for S3BatchJobTask
Source§impl Default for S3BatchJobTask
impl Default for S3BatchJobTask
Source§fn default() -> S3BatchJobTask
fn default() -> S3BatchJobTask
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for S3BatchJobTask
impl<'de> Deserialize<'de> for S3BatchJobTask
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 S3BatchJobTask
impl PartialEq for S3BatchJobTask
Source§impl Serialize for S3BatchJobTask
impl Serialize for S3BatchJobTask
impl Eq for S3BatchJobTask
impl StructuralPartialEq for S3BatchJobTask
Auto Trait Implementations§
impl Freeze for S3BatchJobTask
impl RefUnwindSafe for S3BatchJobTask
impl Send for S3BatchJobTask
impl Sync for S3BatchJobTask
impl Unpin for S3BatchJobTask
impl UnwindSafe for S3BatchJobTask
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