Interface CurrentRevision.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CurrentRevision.Builder,CurrentRevision>,SdkBuilder<CurrentRevision.Builder,CurrentRevision>,SdkPojo
- Enclosing class:
- CurrentRevision
public static interface CurrentRevision.Builder extends SdkPojo, CopyableBuilder<CurrentRevision.Builder,CurrentRevision>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CurrentRevision.BuilderchangeIdentifier(String changeIdentifier)The change identifier for the current revision.CurrentRevision.Buildercreated(Instant created)The date and time when the most recent revision of the artifact was created, in timestamp format.CurrentRevision.Builderrevision(String revision)The revision ID of the current version of an artifact.CurrentRevision.BuilderrevisionSummary(String revisionSummary)The summary of the most recent revision of the artifact.-
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
-
-
-
-
Method Detail
-
revision
CurrentRevision.Builder revision(String revision)
The revision ID of the current version of an artifact.
- Parameters:
revision- The revision ID of the current version of an artifact.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
changeIdentifier
CurrentRevision.Builder changeIdentifier(String changeIdentifier)
The change identifier for the current revision.
- Parameters:
changeIdentifier- The change identifier for the current revision.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
created
CurrentRevision.Builder created(Instant created)
The date and time when the most recent revision of the artifact was created, in timestamp format.
- Parameters:
created- The date and time when the most recent revision of the artifact was created, in timestamp format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revisionSummary
CurrentRevision.Builder revisionSummary(String revisionSummary)
The summary of the most recent revision of the artifact.
- Parameters:
revisionSummary- The summary of the most recent revision of the artifact.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-