#[non_exhaustive]pub struct CreateBucketMetadataConfigurationInput {
pub bucket: Option<String>,
pub content_md5: Option<String>,
pub checksum_algorithm: Option<ChecksumAlgorithm>,
pub metadata_configuration: Option<MetadataConfiguration>,
pub expected_bucket_owner: Option<String>,
}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.bucket: Option<String>The general purpose bucket that you want to create the metadata configuration for.
content_md5: Option<String>The Content-MD5 header for the metadata configuration.
checksum_algorithm: Option<ChecksumAlgorithm>The checksum algorithm to use with your metadata configuration.
metadata_configuration: Option<MetadataConfiguration>The contents of your metadata configuration.
expected_bucket_owner: Option<String>The expected owner of the general purpose bucket that corresponds to your metadata configuration.
Implementations§
Source§impl CreateBucketMetadataConfigurationInput
impl CreateBucketMetadataConfigurationInput
Sourcepub fn bucket(&self) -> Option<&str>
pub fn bucket(&self) -> Option<&str>
The general purpose bucket that you want to create the metadata configuration for.
Sourcepub fn content_md5(&self) -> Option<&str>
pub fn content_md5(&self) -> Option<&str>
The Content-MD5 header for the metadata configuration.
Sourcepub fn checksum_algorithm(&self) -> Option<&ChecksumAlgorithm>
pub fn checksum_algorithm(&self) -> Option<&ChecksumAlgorithm>
The checksum algorithm to use with your metadata configuration.
Sourcepub fn metadata_configuration(&self) -> Option<&MetadataConfiguration>
pub fn metadata_configuration(&self) -> Option<&MetadataConfiguration>
The contents of your metadata configuration.
Sourcepub fn expected_bucket_owner(&self) -> Option<&str>
pub fn expected_bucket_owner(&self) -> Option<&str>
The expected owner of the general purpose bucket that corresponds to your metadata configuration.
Source§impl CreateBucketMetadataConfigurationInput
impl CreateBucketMetadataConfigurationInput
Sourcepub fn builder() -> CreateBucketMetadataConfigurationInputBuilder
pub fn builder() -> CreateBucketMetadataConfigurationInputBuilder
Creates a new builder-style object to manufacture CreateBucketMetadataConfigurationInput.
Trait Implementations§
Source§impl Clone for CreateBucketMetadataConfigurationInput
impl Clone for CreateBucketMetadataConfigurationInput
Source§fn clone(&self) -> CreateBucketMetadataConfigurationInput
fn clone(&self) -> CreateBucketMetadataConfigurationInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PartialEq for CreateBucketMetadataConfigurationInput
impl PartialEq for CreateBucketMetadataConfigurationInput
Source§fn eq(&self, other: &CreateBucketMetadataConfigurationInput) -> bool
fn eq(&self, other: &CreateBucketMetadataConfigurationInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateBucketMetadataConfigurationInput
Auto Trait Implementations§
impl Freeze for CreateBucketMetadataConfigurationInput
impl RefUnwindSafe for CreateBucketMetadataConfigurationInput
impl Send for CreateBucketMetadataConfigurationInput
impl Sync for CreateBucketMetadataConfigurationInput
impl Unpin for CreateBucketMetadataConfigurationInput
impl UnwindSafe for CreateBucketMetadataConfigurationInput
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§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