Class: Aws::ConnectParticipant::Types::StartPosition
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectParticipant::Types::StartPosition
- Includes:
- Structure
- Defined in:
- 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.
767 768 769 770 771 772 773 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 767 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.
767 768 769 770 771 772 773 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 767 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.
767 768 769 770 771 772 773 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 767 class StartPosition < Struct.new( :id, :absolute_time, :most_recent) SENSITIVE = [] include Aws::Structure end |