Struct aws_sdk_s3control::types::S3JobManifestGenerator
source · #[non_exhaustive]pub struct S3JobManifestGenerator { /* private fields */ }
Expand description
The container for the service that will create the S3 manifest.
Implementations§
source§impl S3JobManifestGenerator
impl S3JobManifestGenerator
sourcepub fn expected_bucket_owner(&self) -> Option<&str>
pub fn expected_bucket_owner(&self) -> Option<&str>
The Amazon Web Services account ID that owns the bucket the generated manifest is written to. If provided the generated manifest bucket's owner Amazon Web Services account ID must match this value, else the job fails.
sourcepub fn source_bucket(&self) -> Option<&str>
pub fn source_bucket(&self) -> Option<&str>
The source bucket used by the ManifestGenerator.
sourcepub fn manifest_output_location(&self) -> Option<&S3ManifestOutputLocation>
pub fn manifest_output_location(&self) -> Option<&S3ManifestOutputLocation>
Specifies the location the generated manifest will be written to.
sourcepub fn filter(&self) -> Option<&JobManifestGeneratorFilter>
pub fn filter(&self) -> Option<&JobManifestGeneratorFilter>
Specifies rules the S3JobManifestGenerator should use to use to decide whether an object in the source bucket should or should not be included in the generated job manifest.
sourcepub fn enable_manifest_output(&self) -> bool
pub fn enable_manifest_output(&self) -> bool
Determines whether or not to write the job's generated manifest to a bucket.
source§impl S3JobManifestGenerator
impl S3JobManifestGenerator
sourcepub fn builder() -> S3JobManifestGeneratorBuilder
pub fn builder() -> S3JobManifestGeneratorBuilder
Creates a new builder-style object to manufacture S3JobManifestGenerator
.
Trait Implementations§
source§impl Clone for S3JobManifestGenerator
impl Clone for S3JobManifestGenerator
source§fn clone(&self) -> S3JobManifestGenerator
fn clone(&self) -> S3JobManifestGenerator
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 S3JobManifestGenerator
impl Debug for S3JobManifestGenerator
source§impl PartialEq<S3JobManifestGenerator> for S3JobManifestGenerator
impl PartialEq<S3JobManifestGenerator> for S3JobManifestGenerator
source§fn eq(&self, other: &S3JobManifestGenerator) -> bool
fn eq(&self, other: &S3JobManifestGenerator) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.