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