Interface PublishBatchResultEntry.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PublishBatchResultEntry.Builder,PublishBatchResultEntry>
,SdkBuilder<PublishBatchResultEntry.Builder,PublishBatchResultEntry>
,SdkPojo
- Enclosing class:
- PublishBatchResultEntry
public static interface PublishBatchResultEntry.Builder extends SdkPojo, CopyableBuilder<PublishBatchResultEntry.Builder,PublishBatchResultEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PublishBatchResultEntry.Builder
id(String id)
TheId
of an entry in a batch request.PublishBatchResultEntry.Builder
messageId(String messageId)
An identifier for the message.PublishBatchResultEntry.Builder
sequenceNumber(String sequenceNumber)
This parameter applies only to FIFO (first-in-first-out) topics.-
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
-
id
PublishBatchResultEntry.Builder id(String id)
The
Id
of an entry in a batch request.- Parameters:
id
- TheId
of an entry in a batch request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
messageId
PublishBatchResultEntry.Builder messageId(String messageId)
An identifier for the message.
- Parameters:
messageId
- An identifier for the message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sequenceNumber
PublishBatchResultEntry.Builder sequenceNumber(String sequenceNumber)
This parameter applies only to FIFO (first-in-first-out) topics.
The large, non-consecutive number that Amazon SNS assigns to each message.
The length of
SequenceNumber
is 128 bits.SequenceNumber
continues to increase for a particularMessageGroupId
.- Parameters:
sequenceNumber
- This parameter applies only to FIFO (first-in-first-out) topics.The large, non-consecutive number that Amazon SNS assigns to each message.
The length of
SequenceNumber
is 128 bits.SequenceNumber
continues to increase for a particularMessageGroupId
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-