Interface ReplicationRuleFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReplicationRuleFilter.Builder,ReplicationRuleFilter>,SdkBuilder<ReplicationRuleFilter.Builder,ReplicationRuleFilter>,SdkPojo
- Enclosing class:
- ReplicationRuleFilter
@Mutable @NotThreadSafe 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 to which the rule applies.default ReplicationRuleFilter.Buildertag(Consumer<Tag.Builder> tag)A container for specifying a tag key and value.ReplicationRuleFilter.Buildertag(Tag tag)A container for specifying a tag key and value.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
prefix
ReplicationRuleFilter.Builder prefix(String prefix)
An object key name prefix that identifies the subset of objects to which the rule applies.
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- An object key name prefix that identifies the subset of objects to which the rule applies.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.
-
tag
ReplicationRuleFilter.Builder tag(Tag tag)
A container for specifying a tag key and value.
The rule applies only to objects that have the tag in their tag set.
- Parameters:
tag- A container for specifying a tag key and value.The rule applies only to objects that have the tag in their tag set.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tag
default ReplicationRuleFilter.Builder tag(Consumer<Tag.Builder> tag)
A container for specifying a tag key and value.
The rule applies only to objects that have the tag in their tag set.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totag(Tag).- Parameters:
tag- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tag(Tag)
-
and
ReplicationRuleFilter.Builder and(ReplicationRuleAndOperator and)
A container for specifying rule filters. The filters determine the subset of objects to which the rule applies. 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 anAndtag. -
If you specify a filter based on multiple tags, wrap the
Tagelements in anAndtag.
- Parameters:
and- A container for specifying rule filters. The filters determine the subset of objects to which the rule applies. 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 anAndtag. -
If you specify a filter based on multiple tags, wrap the
Tagelements in anAndtag.
-
- 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 to which the rule applies. 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 anAndtag. -
If you specify a filter based on multiple tags, wrap the
Tagelements in anAndtag.
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)
-
-
-