pub struct LifecycleRuleBuilder { /* private fields */ }Expand description
Builder for S3 lifecycle rules.
Defines rules for automatic object expiration and transitions between storage classes.
Implementations§
Source§impl LifecycleRuleBuilder
impl LifecycleRuleBuilder
pub fn new(status: LifecycleRuleStatus) -> LifecycleRuleBuilder
pub fn id<T>(self, id: T) -> LifecycleRuleBuilder
pub fn expiration_in_days(self, days: u16) -> LifecycleRuleBuilder
pub fn prefix<T>(self, prefix: T) -> LifecycleRuleBuilder
pub fn object_size(self, sizes: S3LifecycleObjectSizes) -> LifecycleRuleBuilder
pub fn abort_incomplete_multipart_upload( self, days: u16, ) -> LifecycleRuleBuilder
pub fn non_current_version_expiration(self, days: u16) -> LifecycleRuleBuilder
pub fn add_transition( self, transition: LifecycleRuleTransition, ) -> LifecycleRuleBuilder
pub fn add_non_current_version_transitions( self, transition: NonCurrentVersionTransition, ) -> LifecycleRuleBuilder
pub fn build(self) -> LifecycleRule
Auto Trait Implementations§
impl Freeze for LifecycleRuleBuilder
impl RefUnwindSafe for LifecycleRuleBuilder
impl Send for LifecycleRuleBuilder
impl Sync for LifecycleRuleBuilder
impl Unpin for LifecycleRuleBuilder
impl UnwindSafe for LifecycleRuleBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.