Interface BranchInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BranchInfo.Builder,BranchInfo>,SdkBuilder<BranchInfo.Builder,BranchInfo>,SdkPojo
- Enclosing class:
- BranchInfo
public static interface BranchInfo.Builder extends SdkPojo, CopyableBuilder<BranchInfo.Builder,BranchInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BranchInfo.BuilderbranchName(String branchName)The name of the branch.BranchInfo.BuildercommitId(String commitId)The ID of the last commit made to the branch.-
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
-
branchName
BranchInfo.Builder branchName(String branchName)
The name of the branch.
- Parameters:
branchName- The name of the branch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
commitId
BranchInfo.Builder commitId(String commitId)
The ID of the last commit made to the branch.
- Parameters:
commitId- The ID of the last commit made to the branch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-