Interface IntelligentTieringFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IntelligentTieringFilter.Builder,IntelligentTieringFilter>,SdkBuilder<IntelligentTieringFilter.Builder,IntelligentTieringFilter>,SdkPojo
- Enclosing class:
- IntelligentTieringFilter
@Mutable @NotThreadSafe public static interface IntelligentTieringFilter.Builder extends SdkPojo, CopyableBuilder<IntelligentTieringFilter.Builder,IntelligentTieringFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default IntelligentTieringFilter.Builderand(Consumer<IntelligentTieringAndOperator.Builder> and)A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter.IntelligentTieringFilter.Builderand(IntelligentTieringAndOperator and)A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter.IntelligentTieringFilter.Builderprefix(String prefix)An object key name prefix that identifies the subset of objects to which the rule applies.default IntelligentTieringFilter.Buildertag(Consumer<Tag.Builder> tag)Sets the value of the Tag property for this object.IntelligentTieringFilter.Buildertag(Tag 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
prefix
IntelligentTieringFilter.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
IntelligentTieringFilter.Builder tag(Tag 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 IntelligentTieringFilter.Builder tag(Consumer<Tag.Builder> tag)
Sets the value of the Tag property for this object. 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
IntelligentTieringFilter.Builder and(IntelligentTieringAndOperator and)
A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.
- Parameters:
and- A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
and
default IntelligentTieringFilter.Builder and(Consumer<IntelligentTieringAndOperator.Builder> and)
A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.
This is a convenience method that creates an instance of theIntelligentTieringAndOperator.Builderavoiding the need to create one manually viaIntelligentTieringAndOperator.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toand(IntelligentTieringAndOperator).- Parameters:
and- a consumer that will call methods onIntelligentTieringAndOperator.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
and(IntelligentTieringAndOperator)
-
-