AWSConnectParticipantTimerConfiguration
Objective-C
@interface AWSConnectParticipantTimerConfiguration
Swift
class AWSConnectParticipantTimerConfiguration
Configuration information for the timer. After the timer configuration is set, it persists for the duration of the chat. It persists across new contacts in the chain, for example, transfer contacts.
For more information about how chat timeouts work, see Set up chat timeouts for human participants.
Required parameters: [ParticipantRole, TimerType, TimerValue]
-
The role of the participant in the chat conversation.
Declaration
Objective-C
@property (nonatomic) AWSConnectTimerEligibleParticipantRoles participantRole;
Swift
var participantRole: AWSConnectTimerEligibleParticipantRoles { get set }
-
The type of timer.
IDLE
indicates the timer applies for considering a human chat participant as idle.DISCONNECT_NONCUSTOMER
indicates the timer applies to automatically disconnecting a chat participant due to idleness.Declaration
Objective-C
@property (nonatomic) AWSConnectParticipantTimerType timerType;
Swift
var timerType: AWSConnectParticipantTimerType { get set }
-
The value of the timer. Either the timer action (Unset to delete the timer), or the duration of the timer in minutes. Only one value can be set.
Declaration
Objective-C
@property (nonatomic, strong) AWSConnectParticipantTimerValue *_Nullable timerValue;
Swift
var timerValue: AWSConnectParticipantTimerValue? { get set }