Interface Branch.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Branch.Builder,Branch>,SdkBuilder<Branch.Builder,Branch>,SdkPojo
- Enclosing class:
- Branch
public static interface Branch.Builder extends SdkPojo, CopyableBuilder<Branch.Builder,Branch>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Branch.Buildercomment(String comment)A comment in addition to the description.Branch.BuilderdeprecationMessage(String deprecationMessage)The deprecation message for the node or the branch that was moved or deleted.Branch.Builderdescription(String description)A brief description of the branch.Branch.BuilderfullyQualifiedName(String fullyQualifiedName)The fully qualified name of 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
-
fullyQualifiedName
Branch.Builder fullyQualifiedName(String fullyQualifiedName)
The fully qualified name of the branch. For example, the fully qualified name of a branch might be
Vehicle.Body.Engine.- Parameters:
fullyQualifiedName- The fully qualified name of the branch. For example, the fully qualified name of a branch might beVehicle.Body.Engine.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
Branch.Builder description(String description)
A brief description of the branch.
- Parameters:
description- A brief description of the branch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deprecationMessage
Branch.Builder deprecationMessage(String deprecationMessage)
The deprecation message for the node or the branch that was moved or deleted.
- Parameters:
deprecationMessage- The deprecation message for the node or the branch that was moved or deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comment
Branch.Builder comment(String comment)
A comment in addition to the description.
- Parameters:
comment- A comment in addition to the description.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-