AWSConnectRoutingProfileQueueConfigSummary

Objective-C

@interface AWSConnectRoutingProfileQueueConfigSummary

Swift

class AWSConnectRoutingProfileQueueConfigSummary

Contains summary information about a routing profile queue.

Required parameters: [QueueId, QueueArn, QueueName, Priority, Delay, Channel]

  • The channels this queue supports.

    Declaration

    Objective-C

    @property (nonatomic) AWSConnectChannel channel;

    Swift

    var channel: AWSConnectChannel { get set }
  • The delay, in seconds, that a contact should be in the queue before they are routed to an available agent. For more information, see Queues: priority and delay in the Amazon Connect Administrator Guide.

    Declaration

    Objective-C

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

    Swift

    var delay: NSNumber? { get set }
  • The order in which contacts are to be handled for the queue. For more information, see Queues: priority and delay.

    Declaration

    Objective-C

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

    Swift

    var priority: NSNumber? { get set }
  • The Amazon Resource Name (ARN) of the queue.

    Declaration

    Objective-C

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

    Swift

    var queueArn: String? { get set }
  • The identifier for the queue.

    Declaration

    Objective-C

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

    Swift

    var queueId: String? { get set }
  • The name of the queue.

    Declaration

    Objective-C

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

    Swift

    var queueName: String? { get set }