Class: Aws::ConnectParticipant::Types::StartPosition
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectParticipant::Types::StartPosition
- Defined in:
- gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb
Overview
A filtering option for where to start. For example, if you sent 100 messages, start with message 50.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#absolute_time ⇒ String
The time in ISO format where to start.
-
#id ⇒ String
The ID of the message or event where to start.
-
#most_recent ⇒ Integer
The start position of the most recent message where you want to start.
Instance Attribute Details
#absolute_time ⇒ String
The time in ISO format where to start.
It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
839 840 841 842 843 844 845 |
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 839 class StartPosition < Struct.new( :id, :absolute_time, :most_recent) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the message or event where to start.
839 840 841 842 843 844 845 |
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 839 class StartPosition < Struct.new( :id, :absolute_time, :most_recent) SENSITIVE = [] include Aws::Structure end |
#most_recent ⇒ Integer
The start position of the most recent message where you want to start.
839 840 841 842 843 844 845 |
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 839 class StartPosition < Struct.new( :id, :absolute_time, :most_recent) SENSITIVE = [] include Aws::Structure end |