Struct aws_sdk_s3control::model::S3JobManifestGenerator
source · [−]#[non_exhaustive]pub struct S3JobManifestGenerator {
pub expected_bucket_owner: Option<String>,
pub source_bucket: Option<String>,
pub manifest_output_location: Option<S3ManifestOutputLocation>,
pub filter: Option<JobManifestGeneratorFilter>,
pub enable_manifest_output: bool,
}
Expand description
The container for the service that will create the S3 manifest.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.expected_bucket_owner: Option<String>
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.
source_bucket: Option<String>
The source bucket used by the ManifestGenerator.
manifest_output_location: Option<S3ManifestOutputLocation>
Specifies the location the generated manifest will be written to.
filter: 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.
enable_manifest_output: bool
Determines whether or not to write the job's generated manifest to a bucket.
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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &S3JobManifestGenerator) -> bool
fn ne(&self, other: &S3JobManifestGenerator) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more