Interface ActionRevision.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ActionRevision.Builder,ActionRevision>,SdkBuilder<ActionRevision.Builder,ActionRevision>,SdkPojo
- Enclosing class:
- ActionRevision
public static interface ActionRevision.Builder extends SdkPojo, CopyableBuilder<ActionRevision.Builder,ActionRevision>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActionRevision.Buildercreated(Instant created)The date and time when the most recent version of the action was created, in timestamp format.ActionRevision.BuilderrevisionChangeId(String revisionChangeId)The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).ActionRevision.BuilderrevisionId(String revisionId)The system-generated unique ID that identifies the revision number of the action.-
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
-
revisionId
ActionRevision.Builder revisionId(String revisionId)
The system-generated unique ID that identifies the revision number of the action.
- Parameters:
revisionId- The system-generated unique ID that identifies the revision number of the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revisionChangeId
ActionRevision.Builder revisionChangeId(String revisionChangeId)
The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).
- Parameters:
revisionChangeId- The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
created
ActionRevision.Builder created(Instant created)
The date and time when the most recent version of the action was created, in timestamp format.
- Parameters:
created- The date and time when the most recent version of the action was created, in timestamp format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-