pub struct PutObjectLockConfigurationInput {
pub bucket: String,
pub checksum_algorithm: Option<ChecksumAlgorithm>,
pub content_md5: Option<String>,
pub expected_bucket_owner: Option<String>,
pub object_lock_configuration: Option<ObjectLockConfiguration>,
pub request_payer: Option<RequestPayer>,
pub token: Option<String>,
}Expand description
S3 PutObjectLockConfigurationInput.
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.
object_lock_configuration: Option<ObjectLockConfiguration>HTTP payload body.
request_payer: Option<RequestPayer>HTTP header: x-amz-request-payer.
token: Option<String>HTTP header: x-amz-bucket-object-lock-token.
Trait Implementations§
Source§impl Clone for PutObjectLockConfigurationInput
impl Clone for PutObjectLockConfigurationInput
Source§fn clone(&self) -> PutObjectLockConfigurationInput
fn clone(&self) -> PutObjectLockConfigurationInput
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 Default for PutObjectLockConfigurationInput
impl Default for PutObjectLockConfigurationInput
Source§fn default() -> PutObjectLockConfigurationInput
fn default() -> PutObjectLockConfigurationInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PutObjectLockConfigurationInput
impl RefUnwindSafe for PutObjectLockConfigurationInput
impl Send for PutObjectLockConfigurationInput
impl Sync for PutObjectLockConfigurationInput
impl Unpin for PutObjectLockConfigurationInput
impl UnsafeUnpin for PutObjectLockConfigurationInput
impl UnwindSafe for PutObjectLockConfigurationInput
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