pub struct PutBucketLifecycleConfigurationRequest {
pub bucket: String,
pub lifecycle_configuration: Option<BucketLifecycleConfiguration>,
}Fields§
§bucket: StringThe name of the bucket for which to set the configuration.
lifecycle_configuration: Option<BucketLifecycleConfiguration>Container for lifecycle rules. You can add as many as 1,000 rules.
Trait Implementations§
Source§impl Clone for PutBucketLifecycleConfigurationRequest
impl Clone for PutBucketLifecycleConfigurationRequest
Source§fn clone(&self) -> PutBucketLifecycleConfigurationRequest
fn clone(&self) -> PutBucketLifecycleConfigurationRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 PutBucketLifecycleConfigurationRequest
impl Default for PutBucketLifecycleConfigurationRequest
Source§fn default() -> PutBucketLifecycleConfigurationRequest
fn default() -> PutBucketLifecycleConfigurationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutBucketLifecycleConfigurationRequest
impl PartialEq for PutBucketLifecycleConfigurationRequest
Source§fn eq(&self, other: &PutBucketLifecycleConfigurationRequest) -> bool
fn eq(&self, other: &PutBucketLifecycleConfigurationRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PutBucketLifecycleConfigurationRequest
Auto Trait Implementations§
impl Freeze for PutBucketLifecycleConfigurationRequest
impl RefUnwindSafe for PutBucketLifecycleConfigurationRequest
impl Send for PutBucketLifecycleConfigurationRequest
impl Sync for PutBucketLifecycleConfigurationRequest
impl Unpin for PutBucketLifecycleConfigurationRequest
impl UnwindSafe for PutBucketLifecycleConfigurationRequest
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