Struct aws_sdk_s3control::model::S3JobManifestGenerator
source · [−]#[non_exhaustive]pub struct S3JobManifestGenerator { /* private fields */ }Expand description
The container for the service that will create the S3 manifest.
Implementations
sourceimpl 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.
sourceimpl S3JobManifestGenerator
impl S3JobManifestGenerator
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture S3JobManifestGenerator.
Trait Implementations
sourceimpl Clone for S3JobManifestGenerator
impl Clone for S3JobManifestGenerator
sourcefn clone(&self) -> S3JobManifestGenerator
fn clone(&self) -> S3JobManifestGenerator
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for S3JobManifestGenerator
impl Debug for S3JobManifestGenerator
sourceimpl PartialEq<S3JobManifestGenerator> for S3JobManifestGenerator
impl PartialEq<S3JobManifestGenerator> for S3JobManifestGenerator
sourcefn eq(&self, other: &S3JobManifestGenerator) -> bool
fn eq(&self, other: &S3JobManifestGenerator) -> bool
impl StructuralPartialEq for S3JobManifestGenerator
Auto Trait Implementations
impl RefUnwindSafe for S3JobManifestGenerator
impl Send for S3JobManifestGenerator
impl Sync for S3JobManifestGenerator
impl Unpin for S3JobManifestGenerator
impl UnwindSafe for S3JobManifestGenerator
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more