Interface PutObjectResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<PutObjectResponse.Builder,PutObjectResponse>,MediaStoreDataResponse.Builder,SdkBuilder<PutObjectResponse.Builder,PutObjectResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- PutObjectResponse
public static interface PutObjectResponse.Builder extends MediaStoreDataResponse.Builder, SdkPojo, CopyableBuilder<PutObjectResponse.Builder,PutObjectResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutObjectResponse.BuildercontentSHA256(String contentSHA256)The SHA256 digest of the object that is persisted.PutObjectResponse.BuildereTag(String eTag)Unique identifier of the object in the container.PutObjectResponse.BuilderstorageClass(String storageClass)The storage class where the object was persisted.PutObjectResponse.BuilderstorageClass(StorageClass storageClass)The storage class where the object was persisted.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.mediastoredata.model.MediaStoreDataResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
contentSHA256
PutObjectResponse.Builder contentSHA256(String contentSHA256)
The SHA256 digest of the object that is persisted.
- Parameters:
contentSHA256- The SHA256 digest of the object that is persisted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eTag
PutObjectResponse.Builder eTag(String eTag)
Unique identifier of the object in the container.
- Parameters:
eTag- Unique identifier of the object in the container.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageClass
PutObjectResponse.Builder storageClass(String storageClass)
The storage class where the object was persisted. The class should be “Temporal”.
- Parameters:
storageClass- The storage class where the object was persisted. The class should be “Temporal”.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StorageClass,StorageClass
-
storageClass
PutObjectResponse.Builder storageClass(StorageClass storageClass)
The storage class where the object was persisted. The class should be “Temporal”.
- Parameters:
storageClass- The storage class where the object was persisted. The class should be “Temporal”.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StorageClass,StorageClass
-
-