#[non_exhaustive]pub struct S3ManifestOutputLocationBuilder { /* private fields */ }Expand description
A builder for S3ManifestOutputLocation.
Implementations§
source§impl S3ManifestOutputLocationBuilder
impl S3ManifestOutputLocationBuilder
sourcepub fn expected_manifest_bucket_owner(self, input: impl Into<String>) -> Self
pub fn expected_manifest_bucket_owner(self, input: impl Into<String>) -> Self
The Account ID that owns the bucket the generated manifest is written to.
sourcepub fn set_expected_manifest_bucket_owner(self, input: Option<String>) -> Self
pub fn set_expected_manifest_bucket_owner(self, input: Option<String>) -> Self
The Account ID that owns the bucket the generated manifest is written to.
sourcepub fn get_expected_manifest_bucket_owner(&self) -> &Option<String>
pub fn get_expected_manifest_bucket_owner(&self) -> &Option<String>
The Account ID that owns the bucket the generated manifest is written to.
sourcepub fn bucket(self, input: impl Into<String>) -> Self
pub fn bucket(self, input: impl Into<String>) -> Self
The bucket ARN the generated manifest should be written to.
Directory buckets - Directory buckets aren't supported as the buckets to store the generated manifest.
sourcepub fn set_bucket(self, input: Option<String>) -> Self
pub fn set_bucket(self, input: Option<String>) -> Self
The bucket ARN the generated manifest should be written to.
Directory buckets - Directory buckets aren't supported as the buckets to store the generated manifest.
sourcepub fn get_bucket(&self) -> &Option<String>
pub fn get_bucket(&self) -> &Option<String>
The bucket ARN the generated manifest should be written to.
Directory buckets - Directory buckets aren't supported as the buckets to store the generated manifest.
sourcepub fn manifest_prefix(self, input: impl Into<String>) -> Self
pub fn manifest_prefix(self, input: impl Into<String>) -> Self
Prefix identifying one or more objects to which the manifest applies.
sourcepub fn set_manifest_prefix(self, input: Option<String>) -> Self
pub fn set_manifest_prefix(self, input: Option<String>) -> Self
Prefix identifying one or more objects to which the manifest applies.
sourcepub fn get_manifest_prefix(&self) -> &Option<String>
pub fn get_manifest_prefix(&self) -> &Option<String>
Prefix identifying one or more objects to which the manifest applies.
sourcepub fn manifest_encryption(self, input: GeneratedManifestEncryption) -> Self
pub fn manifest_encryption(self, input: GeneratedManifestEncryption) -> Self
Specifies what encryption should be used when the generated manifest objects are written.
sourcepub fn set_manifest_encryption(
self,
input: Option<GeneratedManifestEncryption>,
) -> Self
pub fn set_manifest_encryption( self, input: Option<GeneratedManifestEncryption>, ) -> Self
Specifies what encryption should be used when the generated manifest objects are written.
sourcepub fn get_manifest_encryption(&self) -> &Option<GeneratedManifestEncryption>
pub fn get_manifest_encryption(&self) -> &Option<GeneratedManifestEncryption>
Specifies what encryption should be used when the generated manifest objects are written.
sourcepub fn manifest_format(self, input: GeneratedManifestFormat) -> Self
pub fn manifest_format(self, input: GeneratedManifestFormat) -> Self
The format of the generated manifest.
This field is required.sourcepub fn set_manifest_format(self, input: Option<GeneratedManifestFormat>) -> Self
pub fn set_manifest_format(self, input: Option<GeneratedManifestFormat>) -> Self
The format of the generated manifest.
sourcepub fn get_manifest_format(&self) -> &Option<GeneratedManifestFormat>
pub fn get_manifest_format(&self) -> &Option<GeneratedManifestFormat>
The format of the generated manifest.
sourcepub fn build(self) -> Result<S3ManifestOutputLocation, BuildError>
pub fn build(self) -> Result<S3ManifestOutputLocation, BuildError>
Consumes the builder and constructs a S3ManifestOutputLocation.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for S3ManifestOutputLocationBuilder
impl Clone for S3ManifestOutputLocationBuilder
source§fn clone(&self) -> S3ManifestOutputLocationBuilder
fn clone(&self) -> S3ManifestOutputLocationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for S3ManifestOutputLocationBuilder
impl Default for S3ManifestOutputLocationBuilder
source§fn default() -> S3ManifestOutputLocationBuilder
fn default() -> S3ManifestOutputLocationBuilder
source§impl PartialEq for S3ManifestOutputLocationBuilder
impl PartialEq for S3ManifestOutputLocationBuilder
source§fn eq(&self, other: &S3ManifestOutputLocationBuilder) -> bool
fn eq(&self, other: &S3ManifestOutputLocationBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for S3ManifestOutputLocationBuilder
Auto Trait Implementations§
impl Freeze for S3ManifestOutputLocationBuilder
impl RefUnwindSafe for S3ManifestOutputLocationBuilder
impl Send for S3ManifestOutputLocationBuilder
impl Sync for S3ManifestOutputLocationBuilder
impl Unpin for S3ManifestOutputLocationBuilder
impl UnwindSafe for S3ManifestOutputLocationBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more