Interface ReplicationRuleFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReplicationRuleFilter.Builder,ReplicationRuleFilter>,SdkBuilder<ReplicationRuleFilter.Builder,ReplicationRuleFilter>,SdkPojo
- Enclosing class:
- ReplicationRuleFilter
public static interface ReplicationRuleFilter.Builder extends SdkPojo, CopyableBuilder<ReplicationRuleFilter.Builder,ReplicationRuleFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ReplicationRuleFilter.Builderand(Consumer<ReplicationRuleAndOperator.Builder> and)A container for specifying rule filters.ReplicationRuleFilter.Builderand(ReplicationRuleAndOperator and)A container for specifying rule filters.ReplicationRuleFilter.Builderprefix(String prefix)An object key name prefix that identifies the subset of objects that the rule applies to.default ReplicationRuleFilter.Buildertag(Consumer<S3Tag.Builder> tag)Sets the value of the Tag property for this object.ReplicationRuleFilter.Buildertag(S3Tag tag)Sets the value of the Tag property for this object.-
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
-
prefix
ReplicationRuleFilter.Builder prefix(String prefix)
An object key name prefix that identifies the subset of objects that the rule applies to.
When you're using XML requests, you must replace special characters (such as carriage returns) in object keys with their equivalent XML entity codes. For more information, see XML-related object key constraints in the Amazon S3 User Guide.
- Parameters:
prefix- An object key name prefix that identifies the subset of objects that the rule applies to.When you're using XML requests, you must replace special characters (such as carriage returns) in object keys with their equivalent XML entity codes. For more information, see XML-related object key constraints in the Amazon S3 User Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tag
ReplicationRuleFilter.Builder tag(S3Tag tag)
Sets the value of the Tag property for this object.- Parameters:
tag- The new value for the Tag property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tag
default ReplicationRuleFilter.Builder tag(Consumer<S3Tag.Builder> tag)
Sets the value of the Tag property for this object. This is a convenience method that creates an instance of theS3Tag.Builderavoiding the need to create one manually viaS3Tag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totag(S3Tag).- Parameters:
tag- a consumer that will call methods onS3Tag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tag(S3Tag)
-
and
ReplicationRuleFilter.Builder and(ReplicationRuleAndOperator and)
A container for specifying rule filters. The filters determine the subset of objects that the rule applies to. This element is required only if you specify more than one filter. For example:
-
If you specify both a
Prefixand aTagfilter, wrap these filters in anAndelement. -
If you specify a filter based on multiple tags, wrap the
Tagelements in anAndelement.
- Parameters:
and- A container for specifying rule filters. The filters determine the subset of objects that the rule applies to. This element is required only if you specify more than one filter. For example:-
If you specify both a
Prefixand aTagfilter, wrap these filters in anAndelement. -
If you specify a filter based on multiple tags, wrap the
Tagelements in anAndelement.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
and
default ReplicationRuleFilter.Builder and(Consumer<ReplicationRuleAndOperator.Builder> and)
A container for specifying rule filters. The filters determine the subset of objects that the rule applies to. This element is required only if you specify more than one filter. For example:
-
If you specify both a
Prefixand aTagfilter, wrap these filters in anAndelement. -
If you specify a filter based on multiple tags, wrap the
Tagelements in anAndelement.
ReplicationRuleAndOperator.Builderavoiding the need to create one manually viaReplicationRuleAndOperator.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toand(ReplicationRuleAndOperator).- Parameters:
and- a consumer that will call methods onReplicationRuleAndOperator.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
and(ReplicationRuleAndOperator)
-
-
-