Interface PropertygraphRecord.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PropertygraphRecord.Builder,PropertygraphRecord>,SdkBuilder<PropertygraphRecord.Builder,PropertygraphRecord>,SdkPojo
- Enclosing class:
- PropertygraphRecord
public static interface PropertygraphRecord.Builder extends SdkPojo, CopyableBuilder<PropertygraphRecord.Builder,PropertygraphRecord>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PropertygraphRecord.BuildercommitTimestampInMillis(Long commitTimestampInMillis)The time at which the commit for the transaction was requested, in milliseconds from the Unix epoch.default PropertygraphRecord.Builderdata(Consumer<PropertygraphData.Builder> data)The serialized Gremlin or openCypher change record.PropertygraphRecord.Builderdata(PropertygraphData data)The serialized Gremlin or openCypher change record.PropertygraphRecord.BuildereventId(Map<String,String> eventId)The sequence identifier of the stream change record.PropertygraphRecord.BuilderisLastOp(Boolean isLastOp)Only present if this operation is the last one in its transaction.PropertygraphRecord.Builderop(String op)The operation that created the change.-
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
-
commitTimestampInMillis
PropertygraphRecord.Builder commitTimestampInMillis(Long commitTimestampInMillis)
The time at which the commit for the transaction was requested, in milliseconds from the Unix epoch.
- Parameters:
commitTimestampInMillis- The time at which the commit for the transaction was requested, in milliseconds from the Unix epoch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventId
PropertygraphRecord.Builder eventId(Map<String,String> eventId)
The sequence identifier of the stream change record.
- Parameters:
eventId- The sequence identifier of the stream change record.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
data
PropertygraphRecord.Builder data(PropertygraphData data)
The serialized Gremlin or openCypher change record.
- Parameters:
data- The serialized Gremlin or openCypher change record.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
data
default PropertygraphRecord.Builder data(Consumer<PropertygraphData.Builder> data)
The serialized Gremlin or openCypher change record.
This is a convenience method that creates an instance of thePropertygraphData.Builderavoiding the need to create one manually viaPropertygraphData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todata(PropertygraphData).- Parameters:
data- a consumer that will call methods onPropertygraphData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
data(PropertygraphData)
-
op
PropertygraphRecord.Builder op(String op)
The operation that created the change.
- Parameters:
op- The operation that created the change.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isLastOp
PropertygraphRecord.Builder isLastOp(Boolean isLastOp)
Only present if this operation is the last one in its transaction. If present, it is set to true. It is useful for ensuring that an entire transaction is consumed.
- Parameters:
isLastOp- Only present if this operation is the last one in its transaction. If present, it is set to true. It is useful for ensuring that an entire transaction is consumed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-