pub struct PutBucketVersioningInput {
pub bucket: String,
pub checksum_algorithm: Option<ChecksumAlgorithm>,
pub content_md5: Option<String>,
pub expected_bucket_owner: Option<String>,
pub mfa: Option<String>,
pub versioning_configuration: VersioningConfiguration,
}Expand description
S3 PutBucketVersioningInput.
Fields§
§bucket: StringHTTP label (URI path).
checksum_algorithm: Option<ChecksumAlgorithm>HTTP header: x-amz-sdk-checksum-algorithm.
content_md5: Option<String>HTTP header: Content-MD5.
expected_bucket_owner: Option<String>HTTP header: x-amz-expected-bucket-owner.
mfa: Option<String>HTTP header: x-amz-mfa.
versioning_configuration: VersioningConfigurationHTTP payload body.
Trait Implementations§
Source§impl Clone for PutBucketVersioningInput
impl Clone for PutBucketVersioningInput
Source§fn clone(&self) -> PutBucketVersioningInput
fn clone(&self) -> PutBucketVersioningInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PutBucketVersioningInput
impl Debug for PutBucketVersioningInput
Source§impl Default for PutBucketVersioningInput
impl Default for PutBucketVersioningInput
Source§fn default() -> PutBucketVersioningInput
fn default() -> PutBucketVersioningInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PutBucketVersioningInput
impl RefUnwindSafe for PutBucketVersioningInput
impl Send for PutBucketVersioningInput
impl Sync for PutBucketVersioningInput
impl Unpin for PutBucketVersioningInput
impl UnsafeUnpin for PutBucketVersioningInput
impl UnwindSafe for PutBucketVersioningInput
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
Mutably borrows from an owned value. Read more