Interface Checksum.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Checksum.Builder,Checksum>,SdkBuilder<Checksum.Builder,Checksum>,SdkPojo
- Enclosing class:
- Checksum
public static interface Checksum.Builder extends SdkPojo, CopyableBuilder<Checksum.Builder,Checksum>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Checksum.Buildersum(String sum)The checksum of the model.Checksum.Buildertype(String type)The type of the checksum.Checksum.Buildertype(ChecksumType type)The type of the checksum.-
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
-
type
Checksum.Builder type(String type)
The type of the checksum.
- Parameters:
type- The type of the checksum.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChecksumType,ChecksumType
-
type
Checksum.Builder type(ChecksumType type)
The type of the checksum.
- Parameters:
type- The type of the checksum.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChecksumType,ChecksumType
-
sum
Checksum.Builder sum(String sum)
The checksum of the model.
- Parameters:
sum- The checksum of the model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-