Record Class DurableExecutionInput
java.lang.Object
java.lang.Record
software.amazon.lambda.durable.model.DurableExecutionInput
-
Constructor Summary
ConstructorsConstructorDescriptionDurableExecutionInput(String durableExecutionArn, String checkpointToken, software.amazon.awssdk.services.lambda.model.CheckpointUpdatedExecutionState initialExecutionState) Creates an instance of aDurableExecutionInputrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecheckpointTokenrecord component.Returns the value of thedurableExecutionArnrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.software.amazon.awssdk.services.lambda.model.CheckpointUpdatedExecutionStateReturns the value of theinitialExecutionStaterecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DurableExecutionInput
public DurableExecutionInput(String durableExecutionArn, String checkpointToken, software.amazon.awssdk.services.lambda.model.CheckpointUpdatedExecutionState initialExecutionState) Creates an instance of aDurableExecutionInputrecord class.- Parameters:
durableExecutionArn- the value for thedurableExecutionArnrecord componentcheckpointToken- the value for thecheckpointTokenrecord componentinitialExecutionState- the value for theinitialExecutionStaterecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
durableExecutionArn
Returns the value of thedurableExecutionArnrecord component.- Returns:
- the value of the
durableExecutionArnrecord component
-
checkpointToken
Returns the value of thecheckpointTokenrecord component.- Returns:
- the value of the
checkpointTokenrecord component
-
initialExecutionState
public software.amazon.awssdk.services.lambda.model.CheckpointUpdatedExecutionState initialExecutionState()Returns the value of theinitialExecutionStaterecord component.- Returns:
- the value of the
initialExecutionStaterecord component
-