#[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 ==.