Interface ETag.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ETag.Builder,ETag>,SdkBuilder<ETag.Builder,ETag>,SdkPojo
- Enclosing class:
- ETag
public static interface ETag.Builder extends SdkPojo, CopyableBuilder<ETag.Builder,ETag>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ETag.Builderalgorithm(String algorithm)The algorithm used to calculate the read set’s ETag(s).ETag.Builderalgorithm(ETagAlgorithm algorithm)The algorithm used to calculate the read set’s ETag(s).ETag.Buildersource1(String source1)The ETag hash calculated on Source1 of the read set.ETag.Buildersource2(String source2)The ETag hash calculated on Source2 of the read set.-
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
-
algorithm
ETag.Builder algorithm(String algorithm)
The algorithm used to calculate the read set’s ETag(s).
- Parameters:
algorithm- The algorithm used to calculate the read set’s ETag(s).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ETagAlgorithm,ETagAlgorithm
-
algorithm
ETag.Builder algorithm(ETagAlgorithm algorithm)
The algorithm used to calculate the read set’s ETag(s).
- Parameters:
algorithm- The algorithm used to calculate the read set’s ETag(s).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ETagAlgorithm,ETagAlgorithm
-
source1
ETag.Builder source1(String source1)
The ETag hash calculated on Source1 of the read set.
- Parameters:
source1- The ETag hash calculated on Source1 of the read set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source2
ETag.Builder source2(String source2)
The ETag hash calculated on Source2 of the read set.
- Parameters:
source2- The ETag hash calculated on Source2 of the read set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-