#[non_exhaustive]pub struct S3GeneratedManifestDescriptor {
pub format: Option<GeneratedManifestFormat>,
pub location: Option<JobManifestLocation>,
}
Expand description
Describes the specified job's generated manifest. Batch Operations jobs created with a ManifestGenerator populate details of this descriptor after execution of the ManifestGenerator.
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.format: Option<GeneratedManifestFormat>
The format of the generated manifest.
location: Option<JobManifestLocation>
Contains the information required to locate a manifest object.
Implementations§
source§impl S3GeneratedManifestDescriptor
impl S3GeneratedManifestDescriptor
sourcepub fn format(&self) -> Option<&GeneratedManifestFormat>
pub fn format(&self) -> Option<&GeneratedManifestFormat>
The format of the generated manifest.
sourcepub fn location(&self) -> Option<&JobManifestLocation>
pub fn location(&self) -> Option<&JobManifestLocation>
Contains the information required to locate a manifest object.
source§impl S3GeneratedManifestDescriptor
impl S3GeneratedManifestDescriptor
sourcepub fn builder() -> S3GeneratedManifestDescriptorBuilder
pub fn builder() -> S3GeneratedManifestDescriptorBuilder
Creates a new builder-style object to manufacture S3GeneratedManifestDescriptor
.
Trait Implementations§
source§impl Clone for S3GeneratedManifestDescriptor
impl Clone for S3GeneratedManifestDescriptor
source§fn clone(&self) -> S3GeneratedManifestDescriptor
fn clone(&self) -> S3GeneratedManifestDescriptor
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 PartialEq for S3GeneratedManifestDescriptor
impl PartialEq for S3GeneratedManifestDescriptor
source§fn eq(&self, other: &S3GeneratedManifestDescriptor) -> bool
fn eq(&self, other: &S3GeneratedManifestDescriptor) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for S3GeneratedManifestDescriptor
Auto Trait Implementations§
impl RefUnwindSafe for S3GeneratedManifestDescriptor
impl Send for S3GeneratedManifestDescriptor
impl Sync for S3GeneratedManifestDescriptor
impl Unpin for S3GeneratedManifestDescriptor
impl UnwindSafe for S3GeneratedManifestDescriptor
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.