Class: Aws::SNS::Types::PublishBatchResultEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::PublishBatchResultEntry
- Defined in:
- gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb
Overview
Encloses data related to a successful message in a batch request for topic.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The
Id
of an entry in a batch request. -
#message_id ⇒ String
An identifier for the message.
-
#sequence_number ⇒ String
This parameter applies only to FIFO (first-in-first-out) topics.
Instance Attribute Details
#id ⇒ String
The Id
of an entry in a batch request.
1866 1867 1868 1869 1870 1871 1872 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 1866 class PublishBatchResultEntry < Struct.new( :id, :message_id, :sequence_number) SENSITIVE = [] include Aws::Structure end |
#message_id ⇒ String
An identifier for the message.
1866 1867 1868 1869 1870 1871 1872 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 1866 class PublishBatchResultEntry < Struct.new( :id, :message_id, :sequence_number) SENSITIVE = [] include Aws::Structure end |
#sequence_number ⇒ String
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 particular MessageGroupId
.
1866 1867 1868 1869 1870 1871 1872 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 1866 class PublishBatchResultEntry < Struct.new( :id, :message_id, :sequence_number) SENSITIVE = [] include Aws::Structure end |