Interface PutFileResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeCommitResponse.Builder,CopyableBuilder<PutFileResponse.Builder,PutFileResponse>,SdkBuilder<PutFileResponse.Builder,PutFileResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- PutFileResponse
public static interface PutFileResponse.Builder extends CodeCommitResponse.Builder, SdkPojo, CopyableBuilder<PutFileResponse.Builder,PutFileResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutFileResponse.BuilderblobId(String blobId)The ID of the blob, which is its SHA-1 pointer.PutFileResponse.BuildercommitId(String commitId)The full SHA ID of the commit that contains this file change.PutFileResponse.BuildertreeId(String treeId)The full SHA-1 pointer of the tree information for the commit that contains this file change.-
Methods inherited from interface software.amazon.awssdk.services.codecommit.model.CodeCommitResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
commitId
PutFileResponse.Builder commitId(String commitId)
The full SHA ID of the commit that contains this file change.
- Parameters:
commitId- The full SHA ID of the commit that contains this file change.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blobId
PutFileResponse.Builder blobId(String blobId)
The ID of the blob, which is its SHA-1 pointer.
- Parameters:
blobId- The ID of the blob, which is its SHA-1 pointer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
treeId
PutFileResponse.Builder treeId(String treeId)
The full SHA-1 pointer of the tree information for the commit that contains this file change.
- Parameters:
treeId- The full SHA-1 pointer of the tree information for the commit that contains this file change.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-