Interface AssetSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AssetSummary.Builder,AssetSummary>,SdkBuilder<AssetSummary.Builder,AssetSummary>,SdkPojo
- Enclosing class:
- AssetSummary
public static interface AssetSummary.Builder extends SdkPojo, CopyableBuilder<AssetSummary.Builder,AssetSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssetSummary.Builderhashes(Map<HashAlgorithm,String> hashes)The hashes of the asset.AssetSummary.BuilderhashesWithStrings(Map<String,String> hashes)The hashes of the asset.AssetSummary.Buildername(String name)The name of the asset.AssetSummary.Buildersize(Long size)The size of the asset.-
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
-
name
AssetSummary.Builder name(String name)
The name of the asset.
- Parameters:
name- The name of the asset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
size
AssetSummary.Builder size(Long size)
The size of the asset.
- Parameters:
size- The size of the asset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hashesWithStrings
AssetSummary.Builder hashesWithStrings(Map<String,String> hashes)
The hashes of the asset.
- Parameters:
hashes- The hashes of the asset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hashes
AssetSummary.Builder hashes(Map<HashAlgorithm,String> hashes)
The hashes of the asset.
- Parameters:
hashes- The hashes of the asset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-