Interface ProductionBranch.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProductionBranch.Builder,ProductionBranch>,SdkBuilder<ProductionBranch.Builder,ProductionBranch>,SdkPojo
- Enclosing class:
- ProductionBranch
public static interface ProductionBranch.Builder extends SdkPojo, CopyableBuilder<ProductionBranch.Builder,ProductionBranch>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProductionBranch.BuilderbranchName(String branchName)The branch name for the production branch.ProductionBranch.BuilderlastDeployTime(Instant lastDeployTime)The last deploy time of the production branch.ProductionBranch.Builderstatus(String status)The status of the production branch.ProductionBranch.BuilderthumbnailUrl(String thumbnailUrl)The thumbnail URL for the production 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
-
lastDeployTime
ProductionBranch.Builder lastDeployTime(Instant lastDeployTime)
The last deploy time of the production branch.
- Parameters:
lastDeployTime- The last deploy time of the production branch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ProductionBranch.Builder status(String status)
The status of the production branch.
- Parameters:
status- The status of the production branch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thumbnailUrl
ProductionBranch.Builder thumbnailUrl(String thumbnailUrl)
The thumbnail URL for the production branch.
- Parameters:
thumbnailUrl- The thumbnail URL for the production branch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
branchName
ProductionBranch.Builder branchName(String branchName)
The branch name for the production branch.
- Parameters:
branchName- The branch name for the production branch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-