#[non_exhaustive]pub struct S3GeneratedManifestDescriptor { /* private fields */ }
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.
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() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture S3GeneratedManifestDescriptor
.
Examples found in repository?
src/xml_deser.rs (line 3418)
3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449
pub fn deser_structure_crate_model_s3_generated_manifest_descriptor(
decoder: &mut aws_smithy_xml::decode::ScopedDecoder,
) -> Result<crate::model::S3GeneratedManifestDescriptor, aws_smithy_xml::decode::XmlDecodeError> {
#[allow(unused_mut)]
let mut builder = crate::model::S3GeneratedManifestDescriptor::builder();
while let Some(mut tag) = decoder.next_tag() {
match tag.start_el() {
s if s.matches("Format") /* Format com.amazonaws.s3control#S3GeneratedManifestDescriptor$Format */ => {
let var_146 =
Some(
Result::<crate::model::GeneratedManifestFormat, aws_smithy_xml::decode::XmlDecodeError>::Ok(
crate::model::GeneratedManifestFormat::from(
aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
)
)
?
)
;
builder = builder.set_format(var_146);
}
,
s if s.matches("Location") /* Location com.amazonaws.s3control#S3GeneratedManifestDescriptor$Location */ => {
let var_147 =
Some(
crate::xml_deser::deser_structure_crate_model_job_manifest_location(&mut tag)
?
)
;
builder = builder.set_location(var_147);
}
,
_ => {}
}
}
Ok(builder.build())
}
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 more