Interface LifecycleRule.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LifecycleRule.Builder,LifecycleRule>
,SdkBuilder<LifecycleRule.Builder,LifecycleRule>
,SdkPojo
- Enclosing class:
- LifecycleRule
public static interface LifecycleRule.Builder extends SdkPojo, CopyableBuilder<LifecycleRule.Builder,LifecycleRule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default LifecycleRule.Builder
abortIncompleteMultipartUpload(Consumer<AbortIncompleteMultipartUpload.Builder> abortIncompleteMultipartUpload)
Sets the value of the AbortIncompleteMultipartUpload property for this object.LifecycleRule.Builder
abortIncompleteMultipartUpload(AbortIncompleteMultipartUpload abortIncompleteMultipartUpload)
Sets the value of the AbortIncompleteMultipartUpload property for this object.default LifecycleRule.Builder
expiration(Consumer<LifecycleExpiration.Builder> expiration)
Specifies the expiration for the lifecycle of the object in the form of date, days and, whether the object has a delete marker.LifecycleRule.Builder
expiration(LifecycleExpiration expiration)
Specifies the expiration for the lifecycle of the object in the form of date, days and, whether the object has a delete marker.default LifecycleRule.Builder
filter(Consumer<LifecycleRuleFilter.Builder> filter)
TheFilter
is used to identify objects that a Lifecycle Rule applies to.LifecycleRule.Builder
filter(LifecycleRuleFilter filter)
TheFilter
is used to identify objects that a Lifecycle Rule applies to.LifecycleRule.Builder
id(String id)
Unique identifier for the rule.default LifecycleRule.Builder
noncurrentVersionExpiration(Consumer<NoncurrentVersionExpiration.Builder> noncurrentVersionExpiration)
Sets the value of the NoncurrentVersionExpiration property for this object.LifecycleRule.Builder
noncurrentVersionExpiration(NoncurrentVersionExpiration noncurrentVersionExpiration)
Sets the value of the NoncurrentVersionExpiration property for this object.LifecycleRule.Builder
noncurrentVersionTransitions(Collection<NoncurrentVersionTransition> noncurrentVersionTransitions)
Specifies the transition rule for the lifecycle rule that describes when noncurrent objects transition to a specific storage class.LifecycleRule.Builder
noncurrentVersionTransitions(Consumer<NoncurrentVersionTransition.Builder>... noncurrentVersionTransitions)
Specifies the transition rule for the lifecycle rule that describes when noncurrent objects transition to a specific storage class.LifecycleRule.Builder
noncurrentVersionTransitions(NoncurrentVersionTransition... noncurrentVersionTransitions)
Specifies the transition rule for the lifecycle rule that describes when noncurrent objects transition to a specific storage class.LifecycleRule.Builder
prefix(String prefix)
Deprecated.LifecycleRule.Builder
status(String status)
If 'Enabled', the rule is currently being applied.LifecycleRule.Builder
status(ExpirationStatus status)
If 'Enabled', the rule is currently being applied.LifecycleRule.Builder
transitions(Collection<Transition> transitions)
Specifies when an Amazon S3 object transitions to a specified storage class.LifecycleRule.Builder
transitions(Consumer<Transition.Builder>... transitions)
Specifies when an Amazon S3 object transitions to a specified storage class.LifecycleRule.Builder
transitions(Transition... transitions)
Specifies when an Amazon S3 object transitions to a specified storage class.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
expiration
LifecycleRule.Builder expiration(LifecycleExpiration expiration)
Specifies the expiration for the lifecycle of the object in the form of date, days and, whether the object has a delete marker.
- Parameters:
expiration
- Specifies the expiration for the lifecycle of the object in the form of date, days and, whether the object has a delete marker.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expiration
default LifecycleRule.Builder expiration(Consumer<LifecycleExpiration.Builder> expiration)
Specifies the expiration for the lifecycle of the object in the form of date, days and, whether the object has a delete marker.
This is a convenience method that creates an instance of theLifecycleExpiration.Builder
avoiding the need to create one manually viaLifecycleExpiration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toexpiration(LifecycleExpiration)
.- Parameters:
expiration
- a consumer that will call methods onLifecycleExpiration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
expiration(LifecycleExpiration)
-
id
LifecycleRule.Builder id(String id)
Unique identifier for the rule. The value cannot be longer than 255 characters.
- Parameters:
id
- Unique identifier for the rule. The value cannot be longer than 255 characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefix
@Deprecated LifecycleRule.Builder prefix(String prefix)
Deprecated.Prefix identifying one or more objects to which the rule applies. This is no longer used; use
Filter
instead.Replacement must be made for object keys containing special characters (such as carriage returns) when using XML requests. For more information, see XML related object key constraints.
- Parameters:
prefix
- Prefix identifying one or more objects to which the rule applies. This is no longer used; useFilter
instead.Replacement must be made for object keys containing special characters (such as carriage returns) when using XML requests. For more information, see XML related object key constraints.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
LifecycleRule.Builder filter(LifecycleRuleFilter filter)
The
Filter
is used to identify objects that a Lifecycle Rule applies to. AFilter
must have exactly one ofPrefix
,Tag
, orAnd
specified.Filter
is required if theLifecycleRule
does not contain aPrefix
element.- Parameters:
filter
- TheFilter
is used to identify objects that a Lifecycle Rule applies to. AFilter
must have exactly one ofPrefix
,Tag
, orAnd
specified.Filter
is required if theLifecycleRule
does not contain aPrefix
element.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
default LifecycleRule.Builder filter(Consumer<LifecycleRuleFilter.Builder> filter)
The
This is a convenience method that creates an instance of theFilter
is used to identify objects that a Lifecycle Rule applies to. AFilter
must have exactly one ofPrefix
,Tag
, orAnd
specified.Filter
is required if theLifecycleRule
does not contain aPrefix
element.LifecycleRuleFilter.Builder
avoiding the need to create one manually viaLifecycleRuleFilter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofilter(LifecycleRuleFilter)
.- Parameters:
filter
- a consumer that will call methods onLifecycleRuleFilter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
filter(LifecycleRuleFilter)
-
status
LifecycleRule.Builder status(String status)
If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.
- Parameters:
status
- If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExpirationStatus
,ExpirationStatus
-
status
LifecycleRule.Builder status(ExpirationStatus status)
If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.
- Parameters:
status
- If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExpirationStatus
,ExpirationStatus
-
transitions
LifecycleRule.Builder transitions(Collection<Transition> transitions)
Specifies when an Amazon S3 object transitions to a specified storage class.
- Parameters:
transitions
- Specifies when an Amazon S3 object transitions to a specified storage class.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transitions
LifecycleRule.Builder transitions(Transition... transitions)
Specifies when an Amazon S3 object transitions to a specified storage class.
- Parameters:
transitions
- Specifies when an Amazon S3 object transitions to a specified storage class.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transitions
LifecycleRule.Builder transitions(Consumer<Transition.Builder>... transitions)
Specifies when an Amazon S3 object transitions to a specified storage class.
This is a convenience method that creates an instance of theTransition.Builder
avoiding the need to create one manually viaTransition.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#transitions(List
.) - Parameters:
transitions
- a consumer that will call methods onTransition.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#transitions(java.util.Collection
)
-
noncurrentVersionTransitions
LifecycleRule.Builder noncurrentVersionTransitions(Collection<NoncurrentVersionTransition> noncurrentVersionTransitions)
Specifies the transition rule for the lifecycle rule that describes when noncurrent objects transition to a specific storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to a specific storage class at a set period in the object's lifetime.
- Parameters:
noncurrentVersionTransitions
- Specifies the transition rule for the lifecycle rule that describes when noncurrent objects transition to a specific storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to a specific storage class at a set period in the object's lifetime.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
noncurrentVersionTransitions
LifecycleRule.Builder noncurrentVersionTransitions(NoncurrentVersionTransition... noncurrentVersionTransitions)
Specifies the transition rule for the lifecycle rule that describes when noncurrent objects transition to a specific storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to a specific storage class at a set period in the object's lifetime.
- Parameters:
noncurrentVersionTransitions
- Specifies the transition rule for the lifecycle rule that describes when noncurrent objects transition to a specific storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to a specific storage class at a set period in the object's lifetime.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
noncurrentVersionTransitions
LifecycleRule.Builder noncurrentVersionTransitions(Consumer<NoncurrentVersionTransition.Builder>... noncurrentVersionTransitions)
Specifies the transition rule for the lifecycle rule that describes when noncurrent objects transition to a specific storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to a specific storage class at a set period in the object's lifetime.
This is a convenience method that creates an instance of theNoncurrentVersionTransition.Builder
avoiding the need to create one manually viaNoncurrentVersionTransition.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#noncurrentVersionTransitions(List
.) - Parameters:
noncurrentVersionTransitions
- a consumer that will call methods onNoncurrentVersionTransition.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#noncurrentVersionTransitions(java.util.Collection
)
-
noncurrentVersionExpiration
LifecycleRule.Builder noncurrentVersionExpiration(NoncurrentVersionExpiration noncurrentVersionExpiration)
Sets the value of the NoncurrentVersionExpiration property for this object.- Parameters:
noncurrentVersionExpiration
- The new value for the NoncurrentVersionExpiration property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
noncurrentVersionExpiration
default LifecycleRule.Builder noncurrentVersionExpiration(Consumer<NoncurrentVersionExpiration.Builder> noncurrentVersionExpiration)
Sets the value of the NoncurrentVersionExpiration property for this object. This is a convenience method that creates an instance of theNoncurrentVersionExpiration.Builder
avoiding the need to create one manually viaNoncurrentVersionExpiration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tononcurrentVersionExpiration(NoncurrentVersionExpiration)
.- Parameters:
noncurrentVersionExpiration
- a consumer that will call methods onNoncurrentVersionExpiration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
noncurrentVersionExpiration(NoncurrentVersionExpiration)
-
abortIncompleteMultipartUpload
LifecycleRule.Builder abortIncompleteMultipartUpload(AbortIncompleteMultipartUpload abortIncompleteMultipartUpload)
Sets the value of the AbortIncompleteMultipartUpload property for this object.- Parameters:
abortIncompleteMultipartUpload
- The new value for the AbortIncompleteMultipartUpload property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
abortIncompleteMultipartUpload
default LifecycleRule.Builder abortIncompleteMultipartUpload(Consumer<AbortIncompleteMultipartUpload.Builder> abortIncompleteMultipartUpload)
Sets the value of the AbortIncompleteMultipartUpload property for this object. This is a convenience method that creates an instance of theAbortIncompleteMultipartUpload.Builder
avoiding the need to create one manually viaAbortIncompleteMultipartUpload.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toabortIncompleteMultipartUpload(AbortIncompleteMultipartUpload)
.- Parameters:
abortIncompleteMultipartUpload
- a consumer that will call methods onAbortIncompleteMultipartUpload.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
abortIncompleteMultipartUpload(AbortIncompleteMultipartUpload)
-
-