@@ -43,42 +43,42 @@ namespace Model
43
43
44
44
45
45
/* *
46
- * <p>The Amazon Resource Name (ARN) of the contact</p>
46
+ * <p>The Amazon Resource Name (ARN) of the contact. </p>
47
47
*/
48
48
inline const Aws::String& GetArn () const { return m_arn; }
49
49
50
50
/* *
51
- * <p>The Amazon Resource Name (ARN) of the contact</p>
51
+ * <p>The Amazon Resource Name (ARN) of the contact. </p>
52
52
*/
53
53
inline bool ArnHasBeenSet () const { return m_arnHasBeenSet; }
54
54
55
55
/* *
56
- * <p>The Amazon Resource Name (ARN) of the contact</p>
56
+ * <p>The Amazon Resource Name (ARN) of the contact. </p>
57
57
*/
58
58
inline void SetArn (const Aws::String& value) { m_arnHasBeenSet = true ; m_arn = value; }
59
59
60
60
/* *
61
- * <p>The Amazon Resource Name (ARN) of the contact</p>
61
+ * <p>The Amazon Resource Name (ARN) of the contact. </p>
62
62
*/
63
63
inline void SetArn (Aws::String&& value) { m_arnHasBeenSet = true ; m_arn = std::move (value); }
64
64
65
65
/* *
66
- * <p>The Amazon Resource Name (ARN) of the contact</p>
66
+ * <p>The Amazon Resource Name (ARN) of the contact. </p>
67
67
*/
68
68
inline void SetArn (const char * value) { m_arnHasBeenSet = true ; m_arn.assign (value); }
69
69
70
70
/* *
71
- * <p>The Amazon Resource Name (ARN) of the contact</p>
71
+ * <p>The Amazon Resource Name (ARN) of the contact. </p>
72
72
*/
73
73
inline ContactSearchSummary& WithArn (const Aws::String& value) { SetArn (value); return *this ;}
74
74
75
75
/* *
76
- * <p>The Amazon Resource Name (ARN) of the contact</p>
76
+ * <p>The Amazon Resource Name (ARN) of the contact. </p>
77
77
*/
78
78
inline ContactSearchSummary& WithArn (Aws::String&& value) { SetArn (std::move (value)); return *this ;}
79
79
80
80
/* *
81
- * <p>The Amazon Resource Name (ARN) of the contact</p>
81
+ * <p>The Amazon Resource Name (ARN) of the contact. </p>
82
82
*/
83
83
inline ContactSearchSummary& WithArn (const char * value) { SetArn (value); return *this ;}
84
84
@@ -347,67 +347,79 @@ namespace Model
347
347
348
348
349
349
/* *
350
- * <p>The date and time this contact was initiated, in UTC time. For INBOUND, this
351
- * is when the contact arrived. For OUTBOUND, this is when the agent began dialing.
352
- * For CALLBACK, this is when the callback contact was created. For TRANSFER and
353
- * QUEUE_TRANSFER, this is when the transfer was initiated. For API, this is when
354
- * the request arrived. For EXTERNAL_OUTBOUND, this is when the agent started
355
- * dialing the external participant. For MONITOR, this is when the supervisor
350
+ * <p>The date and time this contact was initiated, in UTC time. For
351
+ * <code>INBOUND</code>, this is when the contact arrived. For
352
+ * <code>OUTBOUND</code>, this is when the agent began dialing. For
353
+ * <code>CALLBACK</code>, this is when the callback contact was created. For
354
+ * <code>TRANSFER</code> and <code>QUEUE_TRANSFER</code>, this is when the transfer
355
+ * was initiated. For API, this is when the request arrived. For
356
+ * <code>EXTERNAL_OUTBOUND</code>, this is when the agent started dialing the
357
+ * external participant. For <code>MONITOR</code>, this is when the supervisor
356
358
* started listening to a contact.</p>
357
359
*/
358
360
inline const Aws::Utils::DateTime& GetInitiationTimestamp () const { return m_initiationTimestamp; }
359
361
360
362
/* *
361
- * <p>The date and time this contact was initiated, in UTC time. For INBOUND, this
362
- * is when the contact arrived. For OUTBOUND, this is when the agent began dialing.
363
- * For CALLBACK, this is when the callback contact was created. For TRANSFER and
364
- * QUEUE_TRANSFER, this is when the transfer was initiated. For API, this is when
365
- * the request arrived. For EXTERNAL_OUTBOUND, this is when the agent started
366
- * dialing the external participant. For MONITOR, this is when the supervisor
363
+ * <p>The date and time this contact was initiated, in UTC time. For
364
+ * <code>INBOUND</code>, this is when the contact arrived. For
365
+ * <code>OUTBOUND</code>, this is when the agent began dialing. For
366
+ * <code>CALLBACK</code>, this is when the callback contact was created. For
367
+ * <code>TRANSFER</code> and <code>QUEUE_TRANSFER</code>, this is when the transfer
368
+ * was initiated. For API, this is when the request arrived. For
369
+ * <code>EXTERNAL_OUTBOUND</code>, this is when the agent started dialing the
370
+ * external participant. For <code>MONITOR</code>, this is when the supervisor
367
371
* started listening to a contact.</p>
368
372
*/
369
373
inline bool InitiationTimestampHasBeenSet () const { return m_initiationTimestampHasBeenSet; }
370
374
371
375
/* *
372
- * <p>The date and time this contact was initiated, in UTC time. For INBOUND, this
373
- * is when the contact arrived. For OUTBOUND, this is when the agent began dialing.
374
- * For CALLBACK, this is when the callback contact was created. For TRANSFER and
375
- * QUEUE_TRANSFER, this is when the transfer was initiated. For API, this is when
376
- * the request arrived. For EXTERNAL_OUTBOUND, this is when the agent started
377
- * dialing the external participant. For MONITOR, this is when the supervisor
376
+ * <p>The date and time this contact was initiated, in UTC time. For
377
+ * <code>INBOUND</code>, this is when the contact arrived. For
378
+ * <code>OUTBOUND</code>, this is when the agent began dialing. For
379
+ * <code>CALLBACK</code>, this is when the callback contact was created. For
380
+ * <code>TRANSFER</code> and <code>QUEUE_TRANSFER</code>, this is when the transfer
381
+ * was initiated. For API, this is when the request arrived. For
382
+ * <code>EXTERNAL_OUTBOUND</code>, this is when the agent started dialing the
383
+ * external participant. For <code>MONITOR</code>, this is when the supervisor
378
384
* started listening to a contact.</p>
379
385
*/
380
386
inline void SetInitiationTimestamp (const Aws::Utils::DateTime& value) { m_initiationTimestampHasBeenSet = true ; m_initiationTimestamp = value; }
381
387
382
388
/* *
383
- * <p>The date and time this contact was initiated, in UTC time. For INBOUND, this
384
- * is when the contact arrived. For OUTBOUND, this is when the agent began dialing.
385
- * For CALLBACK, this is when the callback contact was created. For TRANSFER and
386
- * QUEUE_TRANSFER, this is when the transfer was initiated. For API, this is when
387
- * the request arrived. For EXTERNAL_OUTBOUND, this is when the agent started
388
- * dialing the external participant. For MONITOR, this is when the supervisor
389
+ * <p>The date and time this contact was initiated, in UTC time. For
390
+ * <code>INBOUND</code>, this is when the contact arrived. For
391
+ * <code>OUTBOUND</code>, this is when the agent began dialing. For
392
+ * <code>CALLBACK</code>, this is when the callback contact was created. For
393
+ * <code>TRANSFER</code> and <code>QUEUE_TRANSFER</code>, this is when the transfer
394
+ * was initiated. For API, this is when the request arrived. For
395
+ * <code>EXTERNAL_OUTBOUND</code>, this is when the agent started dialing the
396
+ * external participant. For <code>MONITOR</code>, this is when the supervisor
389
397
* started listening to a contact.</p>
390
398
*/
391
399
inline void SetInitiationTimestamp (Aws::Utils::DateTime&& value) { m_initiationTimestampHasBeenSet = true ; m_initiationTimestamp = std::move (value); }
392
400
393
401
/* *
394
- * <p>The date and time this contact was initiated, in UTC time. For INBOUND, this
395
- * is when the contact arrived. For OUTBOUND, this is when the agent began dialing.
396
- * For CALLBACK, this is when the callback contact was created. For TRANSFER and
397
- * QUEUE_TRANSFER, this is when the transfer was initiated. For API, this is when
398
- * the request arrived. For EXTERNAL_OUTBOUND, this is when the agent started
399
- * dialing the external participant. For MONITOR, this is when the supervisor
402
+ * <p>The date and time this contact was initiated, in UTC time. For
403
+ * <code>INBOUND</code>, this is when the contact arrived. For
404
+ * <code>OUTBOUND</code>, this is when the agent began dialing. For
405
+ * <code>CALLBACK</code>, this is when the callback contact was created. For
406
+ * <code>TRANSFER</code> and <code>QUEUE_TRANSFER</code>, this is when the transfer
407
+ * was initiated. For API, this is when the request arrived. For
408
+ * <code>EXTERNAL_OUTBOUND</code>, this is when the agent started dialing the
409
+ * external participant. For <code>MONITOR</code>, this is when the supervisor
400
410
* started listening to a contact.</p>
401
411
*/
402
412
inline ContactSearchSummary& WithInitiationTimestamp (const Aws::Utils::DateTime& value) { SetInitiationTimestamp (value); return *this ;}
403
413
404
414
/* *
405
- * <p>The date and time this contact was initiated, in UTC time. For INBOUND, this
406
- * is when the contact arrived. For OUTBOUND, this is when the agent began dialing.
407
- * For CALLBACK, this is when the callback contact was created. For TRANSFER and
408
- * QUEUE_TRANSFER, this is when the transfer was initiated. For API, this is when
409
- * the request arrived. For EXTERNAL_OUTBOUND, this is when the agent started
410
- * dialing the external participant. For MONITOR, this is when the supervisor
415
+ * <p>The date and time this contact was initiated, in UTC time. For
416
+ * <code>INBOUND</code>, this is when the contact arrived. For
417
+ * <code>OUTBOUND</code>, this is when the agent began dialing. For
418
+ * <code>CALLBACK</code>, this is when the callback contact was created. For
419
+ * <code>TRANSFER</code> and <code>QUEUE_TRANSFER</code>, this is when the transfer
420
+ * was initiated. For API, this is when the request arrived. For
421
+ * <code>EXTERNAL_OUTBOUND</code>, this is when the agent started dialing the
422
+ * external participant. For <code>MONITOR</code>, this is when the supervisor
411
423
* started listening to a contact.</p>
412
424
*/
413
425
inline ContactSearchSummary& WithInitiationTimestamp (Aws::Utils::DateTime&& value) { SetInitiationTimestamp (std::move (value)); return *this ;}
0 commit comments