AWSConnectParticipantStartPosition

Objective-C

@interface AWSConnectParticipantStartPosition

Swift

class AWSConnectParticipantStartPosition

A filtering option for where to start. For example, if you sent 100 messages, start with message 50.

  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable absoluteTime;

    Swift

    var absoluteTime: String? { get set }
  • The ID of the message or event where to start.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable identifier;

    Swift

    var identifier: String? { get set }
  • The start position of the most recent message where you want to start.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable mostRecent;

    Swift

    var mostRecent: NSNumber? { get set }