Skip to content

Commit 8c9aa58

Browse files
Amazon Connect, Contact Lens Evaluation API increase evaluation notes max length to 3072.
This release includes video engine updates including HEVC improvements, support for ingesting VP9 encoded video in MP4 containers, and support for user-specified 3D LUTs.
1 parent fdce535 commit 8c9aa58

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+2871
-331
lines changed

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.235
1+
1.11.236

Diff for: generated/src/aws-cpp-sdk-connect/include/aws/connect/model/AgentHierarchyGroups.h

+5-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ namespace Model
2525
{
2626

2727
/**
28-
* <p>A structure that defines agent hierarchy group levels which can be used to
29-
* filter search results. Important: Agent hierarchy group level information in
30-
* search result is a snapshot, it does not represent current agent hierarchy who
31-
* handled the contact.</p><p><h3>See Also:</h3> <a
28+
* <p>A structure that defines search criteria for contacts using agent hierarchy
29+
* group levels. For more information about agent hierarchies, see <a
30+
* href="https://docs.aws.amazon.com/connect/latest/adminguide/agent-hierarchy.html">Set
31+
* Up Agent Hierarchies</a> in the <i>Amazon Connect Administrator
32+
* Guide</i>.</p><p><h3>See Also:</h3> <a
3233
* href="http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentHierarchyGroups">AWS
3334
* API Reference</a></p>
3435
*/

Diff for: generated/src/aws-cpp-sdk-connect/include/aws/connect/model/ContactAnalysis.h

+14-15
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ namespace Model
2424
{
2525

2626
/**
27-
* <p>A structure that defines filters can be used to search within outputs
28-
* analyzed by Amazon Connect Contact Lens in a contact.</p><p><h3>See Also:</h3>
29-
* <a
27+
* <p>A structure that defines search criteria for contacts using analysis outputs
28+
* from Amazon Connect Contact Lens.</p><p><h3>See Also:</h3> <a
3029
* href="http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactAnalysis">AWS
3130
* API Reference</a></p>
3231
*/
@@ -40,38 +39,38 @@ namespace Model
4039

4140

4241
/**
43-
* <p>A structure that defines filters can be used to search with text within an
44-
* Amazon Connect Contact Lens analyzed transcript.</p>
42+
* <p>Search criteria based on transcript analyzed by Amazon Connect Contact
43+
* Lens.</p>
4544
*/
4645
inline const Transcript& GetTranscript() const{ return m_transcript; }
4746

4847
/**
49-
* <p>A structure that defines filters can be used to search with text within an
50-
* Amazon Connect Contact Lens analyzed transcript.</p>
48+
* <p>Search criteria based on transcript analyzed by Amazon Connect Contact
49+
* Lens.</p>
5150
*/
5251
inline bool TranscriptHasBeenSet() const { return m_transcriptHasBeenSet; }
5352

5453
/**
55-
* <p>A structure that defines filters can be used to search with text within an
56-
* Amazon Connect Contact Lens analyzed transcript.</p>
54+
* <p>Search criteria based on transcript analyzed by Amazon Connect Contact
55+
* Lens.</p>
5756
*/
5857
inline void SetTranscript(const Transcript& value) { m_transcriptHasBeenSet = true; m_transcript = value; }
5958

6059
/**
61-
* <p>A structure that defines filters can be used to search with text within an
62-
* Amazon Connect Contact Lens analyzed transcript.</p>
60+
* <p>Search criteria based on transcript analyzed by Amazon Connect Contact
61+
* Lens.</p>
6362
*/
6463
inline void SetTranscript(Transcript&& value) { m_transcriptHasBeenSet = true; m_transcript = std::move(value); }
6564

6665
/**
67-
* <p>A structure that defines filters can be used to search with text within an
68-
* Amazon Connect Contact Lens analyzed transcript.</p>
66+
* <p>Search criteria based on transcript analyzed by Amazon Connect Contact
67+
* Lens.</p>
6968
*/
7069
inline ContactAnalysis& WithTranscript(const Transcript& value) { SetTranscript(value); return *this;}
7170

7271
/**
73-
* <p>A structure that defines filters can be used to search with text within an
74-
* Amazon Connect Contact Lens analyzed transcript.</p>
72+
* <p>Search criteria based on transcript analyzed by Amazon Connect Contact
73+
* Lens.</p>
7574
*/
7675
inline ContactAnalysis& WithTranscript(Transcript&& value) { SetTranscript(std::move(value)); return *this;}
7776

Diff for: generated/src/aws-cpp-sdk-connect/include/aws/connect/model/ContactSearchSummary.h

+56-44
Original file line numberDiff line numberDiff line change
@@ -43,42 +43,42 @@ namespace Model
4343

4444

4545
/**
46-
* <p>The Amazon Resource Name (ARN) of the contact</p>
46+
* <p>The Amazon Resource Name (ARN) of the contact.</p>
4747
*/
4848
inline const Aws::String& GetArn() const{ return m_arn; }
4949

5050
/**
51-
* <p>The Amazon Resource Name (ARN) of the contact</p>
51+
* <p>The Amazon Resource Name (ARN) of the contact.</p>
5252
*/
5353
inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
5454

5555
/**
56-
* <p>The Amazon Resource Name (ARN) of the contact</p>
56+
* <p>The Amazon Resource Name (ARN) of the contact.</p>
5757
*/
5858
inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
5959

6060
/**
61-
* <p>The Amazon Resource Name (ARN) of the contact</p>
61+
* <p>The Amazon Resource Name (ARN) of the contact.</p>
6262
*/
6363
inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
6464

6565
/**
66-
* <p>The Amazon Resource Name (ARN) of the contact</p>
66+
* <p>The Amazon Resource Name (ARN) of the contact.</p>
6767
*/
6868
inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
6969

7070
/**
71-
* <p>The Amazon Resource Name (ARN) of the contact</p>
71+
* <p>The Amazon Resource Name (ARN) of the contact.</p>
7272
*/
7373
inline ContactSearchSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
7474

7575
/**
76-
* <p>The Amazon Resource Name (ARN) of the contact</p>
76+
* <p>The Amazon Resource Name (ARN) of the contact.</p>
7777
*/
7878
inline ContactSearchSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
7979

8080
/**
81-
* <p>The Amazon Resource Name (ARN) of the contact</p>
81+
* <p>The Amazon Resource Name (ARN) of the contact.</p>
8282
*/
8383
inline ContactSearchSummary& WithArn(const char* value) { SetArn(value); return *this;}
8484

@@ -347,67 +347,79 @@ namespace Model
347347

348348

349349
/**
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
356358
* started listening to a contact.</p>
357359
*/
358360
inline const Aws::Utils::DateTime& GetInitiationTimestamp() const{ return m_initiationTimestamp; }
359361

360362
/**
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
367371
* started listening to a contact.</p>
368372
*/
369373
inline bool InitiationTimestampHasBeenSet() const { return m_initiationTimestampHasBeenSet; }
370374

371375
/**
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
378384
* started listening to a contact.</p>
379385
*/
380386
inline void SetInitiationTimestamp(const Aws::Utils::DateTime& value) { m_initiationTimestampHasBeenSet = true; m_initiationTimestamp = value; }
381387

382388
/**
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
389397
* started listening to a contact.</p>
390398
*/
391399
inline void SetInitiationTimestamp(Aws::Utils::DateTime&& value) { m_initiationTimestampHasBeenSet = true; m_initiationTimestamp = std::move(value); }
392400

393401
/**
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
400410
* started listening to a contact.</p>
401411
*/
402412
inline ContactSearchSummary& WithInitiationTimestamp(const Aws::Utils::DateTime& value) { SetInitiationTimestamp(value); return *this;}
403413

404414
/**
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
411423
* started listening to a contact.</p>
412424
*/
413425
inline ContactSearchSummary& WithInitiationTimestamp(Aws::Utils::DateTime&& value) { SetInitiationTimestamp(std::move(value)); return *this;}

Diff for: generated/src/aws-cpp-sdk-connect/include/aws/connect/model/SearchContactsRequest.h

+20-20
Original file line numberDiff line numberDiff line change
@@ -37,80 +37,80 @@ namespace Model
3737

3838
/**
3939
* <p>The identifier of Amazon Connect instance. You can find the instance ID in
40-
* the Amazon Resource Name (ARN) of the instance</p>
40+
* the Amazon Resource Name (ARN) of the instance.</p>
4141
*/
4242
inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
4343

4444
/**
4545
* <p>The identifier of Amazon Connect instance. You can find the instance ID in
46-
* the Amazon Resource Name (ARN) of the instance</p>
46+
* the Amazon Resource Name (ARN) of the instance.</p>
4747
*/
4848
inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
4949

5050
/**
5151
* <p>The identifier of Amazon Connect instance. You can find the instance ID in
52-
* the Amazon Resource Name (ARN) of the instance</p>
52+
* the Amazon Resource Name (ARN) of the instance.</p>
5353
*/
5454
inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
5555

5656
/**
5757
* <p>The identifier of Amazon Connect instance. You can find the instance ID in
58-
* the Amazon Resource Name (ARN) of the instance</p>
58+
* the Amazon Resource Name (ARN) of the instance.</p>
5959
*/
6060
inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
6161

6262
/**
6363
* <p>The identifier of Amazon Connect instance. You can find the instance ID in
64-
* the Amazon Resource Name (ARN) of the instance</p>
64+
* the Amazon Resource Name (ARN) of the instance.</p>
6565
*/
6666
inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
6767

6868
/**
6969
* <p>The identifier of Amazon Connect instance. You can find the instance ID in
70-
* the Amazon Resource Name (ARN) of the instance</p>
70+
* the Amazon Resource Name (ARN) of the instance.</p>
7171
*/
7272
inline SearchContactsRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
7373

7474
/**
7575
* <p>The identifier of Amazon Connect instance. You can find the instance ID in
76-
* the Amazon Resource Name (ARN) of the instance</p>
76+
* the Amazon Resource Name (ARN) of the instance.</p>
7777
*/
7878
inline SearchContactsRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
7979

8080
/**
8181
* <p>The identifier of Amazon Connect instance. You can find the instance ID in
82-
* the Amazon Resource Name (ARN) of the instance</p>
82+
* the Amazon Resource Name (ARN) of the instance.</p>
8383
*/
8484
inline SearchContactsRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
8585

8686

8787
/**
88-
* <p>Time range that you want to search results</p>
88+
* <p>Time range that you want to search results.</p>
8989
*/
9090
inline const SearchContactsTimeRange& GetTimeRange() const{ return m_timeRange; }
9191

9292
/**
93-
* <p>Time range that you want to search results</p>
93+
* <p>Time range that you want to search results.</p>
9494
*/
9595
inline bool TimeRangeHasBeenSet() const { return m_timeRangeHasBeenSet; }
9696

9797
/**
98-
* <p>Time range that you want to search results</p>
98+
* <p>Time range that you want to search results.</p>
9999
*/
100100
inline void SetTimeRange(const SearchContactsTimeRange& value) { m_timeRangeHasBeenSet = true; m_timeRange = value; }
101101

102102
/**
103-
* <p>Time range that you want to search results</p>
103+
* <p>Time range that you want to search results.</p>
104104
*/
105105
inline void SetTimeRange(SearchContactsTimeRange&& value) { m_timeRangeHasBeenSet = true; m_timeRange = std::move(value); }
106106

107107
/**
108-
* <p>Time range that you want to search results</p>
108+
* <p>Time range that you want to search results.</p>
109109
*/
110110
inline SearchContactsRequest& WithTimeRange(const SearchContactsTimeRange& value) { SetTimeRange(value); return *this;}
111111

112112
/**
113-
* <p>Time range that you want to search results</p>
113+
* <p>Time range that you want to search results.</p>
114114
*/
115115
inline SearchContactsRequest& WithTimeRange(SearchContactsTimeRange&& value) { SetTimeRange(std::move(value)); return *this;}
116116

@@ -217,32 +217,32 @@ namespace Model
217217

218218

219219
/**
220-
* <p>Specifies a field to sort by and a sort order</p>
220+
* <p>Specifies a field to sort by and a sort order.</p>
221221
*/
222222
inline const Sort& GetSort() const{ return m_sort; }
223223

224224
/**
225-
* <p>Specifies a field to sort by and a sort order</p>
225+
* <p>Specifies a field to sort by and a sort order.</p>
226226
*/
227227
inline bool SortHasBeenSet() const { return m_sortHasBeenSet; }
228228

229229
/**
230-
* <p>Specifies a field to sort by and a sort order</p>
230+
* <p>Specifies a field to sort by and a sort order.</p>
231231
*/
232232
inline void SetSort(const Sort& value) { m_sortHasBeenSet = true; m_sort = value; }
233233

234234
/**
235-
* <p>Specifies a field to sort by and a sort order</p>
235+
* <p>Specifies a field to sort by and a sort order.</p>
236236
*/
237237
inline void SetSort(Sort&& value) { m_sortHasBeenSet = true; m_sort = std::move(value); }
238238

239239
/**
240-
* <p>Specifies a field to sort by and a sort order</p>
240+
* <p>Specifies a field to sort by and a sort order.</p>
241241
*/
242242
inline SearchContactsRequest& WithSort(const Sort& value) { SetSort(value); return *this;}
243243

244244
/**
245-
* <p>Specifies a field to sort by and a sort order</p>
245+
* <p>Specifies a field to sort by and a sort order.</p>
246246
*/
247247
inline SearchContactsRequest& WithSort(Sort&& value) { SetSort(std::move(value)); return *this;}
248248

0 commit comments

Comments
 (0)