aws-sdk-core 2.11.402 → 2.11.403

Sign up to get free protection for your applications and to get access to all the features.
@@ -183,6 +183,18 @@
183
183
  {"shape":"NoSuchRemediationExceptionException"}
184
184
  ]
185
185
  },
186
+ "DeleteResourceConfig":{
187
+ "name":"DeleteResourceConfig",
188
+ "http":{
189
+ "method":"POST",
190
+ "requestUri":"/"
191
+ },
192
+ "input":{"shape":"DeleteResourceConfigRequest"},
193
+ "errors":[
194
+ {"shape":"ValidationException"},
195
+ {"shape":"NoRunningConfigurationRecorderException"}
196
+ ]
197
+ },
186
198
  "DeleteRetentionConfiguration":{
187
199
  "name":"DeleteRetentionConfiguration",
188
200
  "http":{
@@ -946,6 +958,20 @@
946
958
  {"shape":"InvalidParameterValueException"}
947
959
  ]
948
960
  },
961
+ "PutResourceConfig":{
962
+ "name":"PutResourceConfig",
963
+ "http":{
964
+ "method":"POST",
965
+ "requestUri":"/"
966
+ },
967
+ "input":{"shape":"PutResourceConfigRequest"},
968
+ "errors":[
969
+ {"shape":"ValidationException"},
970
+ {"shape":"InsufficientPermissionsException"},
971
+ {"shape":"NoRunningConfigurationRecorderException"},
972
+ {"shape":"MaxActiveResourcesExceededException"}
973
+ ]
974
+ },
949
975
  "PutRetentionConfiguration":{
950
976
  "name":"PutRetentionConfiguration",
951
977
  "http":{
@@ -1905,6 +1931,17 @@
1905
1931
  "FailedBatches":{"shape":"FailedDeleteRemediationExceptionsBatches"}
1906
1932
  }
1907
1933
  },
1934
+ "DeleteResourceConfigRequest":{
1935
+ "type":"structure",
1936
+ "required":[
1937
+ "ResourceType",
1938
+ "ResourceId"
1939
+ ],
1940
+ "members":{
1941
+ "ResourceType":{"shape":"ResourceTypeString"},
1942
+ "ResourceId":{"shape":"ResourceId"}
1943
+ }
1944
+ },
1908
1945
  "DeleteRetentionConfigurationRequest":{
1909
1946
  "type":"structure",
1910
1947
  "required":["RetentionConfigurationName"],
@@ -2901,6 +2938,12 @@
2901
2938
  }
2902
2939
  },
2903
2940
  "Long":{"type":"long"},
2941
+ "MaxActiveResourcesExceededException":{
2942
+ "type":"structure",
2943
+ "members":{
2944
+ },
2945
+ "exception":true
2946
+ },
2904
2947
  "MaxNumberOfConfigRulesExceededException":{
2905
2948
  "type":"structure",
2906
2949
  "members":{
@@ -3543,6 +3586,23 @@
3543
3586
  "FailedBatches":{"shape":"FailedRemediationExceptionBatches"}
3544
3587
  }
3545
3588
  },
3589
+ "PutResourceConfigRequest":{
3590
+ "type":"structure",
3591
+ "required":[
3592
+ "ResourceType",
3593
+ "SchemaVersionId",
3594
+ "ResourceId",
3595
+ "Configuration"
3596
+ ],
3597
+ "members":{
3598
+ "ResourceType":{"shape":"ResourceTypeString"},
3599
+ "SchemaVersionId":{"shape":"SchemaVersionId"},
3600
+ "ResourceId":{"shape":"ResourceId"},
3601
+ "ResourceName":{"shape":"ResourceName"},
3602
+ "Configuration":{"shape":"Configuration"},
3603
+ "Tags":{"shape":"Tags"}
3604
+ }
3605
+ },
3546
3606
  "PutRetentionConfigurationRequest":{
3547
3607
  "type":"structure",
3548
3608
  "required":["RetentionPeriodInDays"],
@@ -3940,6 +4000,11 @@
3940
4000
  "type":"list",
3941
4001
  "member":{"shape":"ResourceType"}
3942
4002
  },
4003
+ "ResourceTypeString":{
4004
+ "type":"string",
4005
+ "max":196,
4006
+ "min":1
4007
+ },
3943
4008
  "ResourceTypes":{
3944
4009
  "type":"list",
3945
4010
  "member":{"shape":"StringWithCharLimit256"},
@@ -4004,6 +4069,12 @@
4004
4069
  "max":50,
4005
4070
  "min":0
4006
4071
  },
4072
+ "SchemaVersionId":{
4073
+ "type":"string",
4074
+ "max":128,
4075
+ "min":1,
4076
+ "pattern":"[A-Za-z0-9-]+"
4077
+ },
4007
4078
  "Scope":{
4008
4079
  "type":"structure",
4009
4080
  "members":{
@@ -301,6 +301,22 @@
301
301
  {"shape":"InternalServiceException"}
302
302
  ]
303
303
  },
304
+ "StartChatContact":{
305
+ "name":"StartChatContact",
306
+ "http":{
307
+ "method":"PUT",
308
+ "requestUri":"/contact/chat"
309
+ },
310
+ "input":{"shape":"StartChatContactRequest"},
311
+ "output":{"shape":"StartChatContactResponse"},
312
+ "errors":[
313
+ {"shape":"InvalidRequestException"},
314
+ {"shape":"InvalidParameterException"},
315
+ {"shape":"ResourceNotFoundException"},
316
+ {"shape":"InternalServiceException"},
317
+ {"shape":"LimitExceededException"}
318
+ ]
319
+ },
304
320
  "StartOutboundVoiceContact":{
305
321
  "name":"StartOutboundVoiceContact",
306
322
  "http":{
@@ -474,9 +490,8 @@
474
490
  },
475
491
  "AgentUsername":{
476
492
  "type":"string",
477
- "max":20,
478
- "min":1,
479
- "pattern":"[a-zA-Z0-9\\_\\-\\.]+"
493
+ "max":100,
494
+ "min":1
480
495
  },
481
496
  "AttributeName":{
482
497
  "type":"string",
@@ -496,13 +511,37 @@
496
511
  "AutoAccept":{"type":"boolean"},
497
512
  "Channel":{
498
513
  "type":"string",
499
- "enum":["VOICE"]
514
+ "enum":[
515
+ "VOICE",
516
+ "CHAT"
517
+ ]
500
518
  },
501
519
  "Channels":{
502
520
  "type":"list",
503
521
  "member":{"shape":"Channel"},
504
522
  "max":1
505
523
  },
524
+ "ChatContent":{
525
+ "type":"string",
526
+ "max":1024,
527
+ "min":1
528
+ },
529
+ "ChatContentType":{
530
+ "type":"string",
531
+ "max":100,
532
+ "min":1
533
+ },
534
+ "ChatMessage":{
535
+ "type":"structure",
536
+ "required":[
537
+ "ContentType",
538
+ "Content"
539
+ ],
540
+ "members":{
541
+ "ContentType":{"shape":"ChatContentType"},
542
+ "Content":{"shape":"ChatContent"}
543
+ }
544
+ },
506
545
  "ClientToken":{
507
546
  "type":"string",
508
547
  "max":500
@@ -636,7 +675,10 @@
636
675
  "AGENTS_STAFFED",
637
676
  "CONTACTS_IN_QUEUE",
638
677
  "OLDEST_CONTACT_AGE",
639
- "CONTACTS_SCHEDULED"
678
+ "CONTACTS_SCHEDULED",
679
+ "AGENTS_ON_CONTACT",
680
+ "SLOTS_ACTIVE",
681
+ "SLOTS_AVAILABLE"
640
682
  ]
641
683
  },
642
684
  "CurrentMetricResult":{
@@ -756,6 +798,11 @@
756
798
  }
757
799
  },
758
800
  "DirectoryUserId":{"type":"string"},
801
+ "DisplayName":{
802
+ "type":"string",
803
+ "max":256,
804
+ "min":1
805
+ },
759
806
  "DuplicateResourceException":{
760
807
  "type":"structure",
761
808
  "members":{
@@ -1352,6 +1399,23 @@
1352
1399
  "error":{"httpStatusCode":403},
1353
1400
  "exception":true
1354
1401
  },
1402
+ "ParticipantDetails":{
1403
+ "type":"structure",
1404
+ "required":["DisplayName"],
1405
+ "members":{
1406
+ "DisplayName":{"shape":"DisplayName"}
1407
+ }
1408
+ },
1409
+ "ParticipantId":{
1410
+ "type":"string",
1411
+ "max":256,
1412
+ "min":1
1413
+ },
1414
+ "ParticipantToken":{
1415
+ "type":"string",
1416
+ "max":1000,
1417
+ "min":1
1418
+ },
1355
1419
  "Password":{
1356
1420
  "type":"string",
1357
1421
  "pattern":"/^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)[a-zA-Z\\d\\S]{8,64}$/"
@@ -1732,6 +1796,33 @@
1732
1796
  "type":"string",
1733
1797
  "sensitive":true
1734
1798
  },
1799
+ "StartChatContactRequest":{
1800
+ "type":"structure",
1801
+ "required":[
1802
+ "InstanceId",
1803
+ "ContactFlowId",
1804
+ "ParticipantDetails"
1805
+ ],
1806
+ "members":{
1807
+ "InstanceId":{"shape":"InstanceId"},
1808
+ "ContactFlowId":{"shape":"ContactFlowId"},
1809
+ "Attributes":{"shape":"Attributes"},
1810
+ "ParticipantDetails":{"shape":"ParticipantDetails"},
1811
+ "InitialMessage":{"shape":"ChatMessage"},
1812
+ "ClientToken":{
1813
+ "shape":"ClientToken",
1814
+ "idempotencyToken":true
1815
+ }
1816
+ }
1817
+ },
1818
+ "StartChatContactResponse":{
1819
+ "type":"structure",
1820
+ "members":{
1821
+ "ContactId":{"shape":"ContactId"},
1822
+ "ParticipantId":{"shape":"ParticipantId"},
1823
+ "ParticipantToken":{"shape":"ParticipantToken"}
1824
+ }
1825
+ },
1735
1826
  "StartOutboundVoiceContactRequest":{
1736
1827
  "type":"structure",
1737
1828
  "required":[
@@ -0,0 +1,408 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2018-09-07",
5
+ "endpointPrefix":"participant.connect",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"rest-json",
8
+ "serviceAbbreviation":"Amazon Connect Participant",
9
+ "serviceFullName":"Amazon Connect Participant Service",
10
+ "serviceId":"ConnectParticipant",
11
+ "signatureVersion":"v4",
12
+ "signingName":"execute-api",
13
+ "uid":"connectparticipant-2018-09-07"
14
+ },
15
+ "operations":{
16
+ "CreateParticipantConnection":{
17
+ "name":"CreateParticipantConnection",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/participant/connection"
21
+ },
22
+ "input":{"shape":"CreateParticipantConnectionRequest"},
23
+ "output":{"shape":"CreateParticipantConnectionResponse"},
24
+ "errors":[
25
+ {"shape":"AccessDeniedException"},
26
+ {"shape":"InternalServerException"},
27
+ {"shape":"ThrottlingException"},
28
+ {"shape":"ValidationException"}
29
+ ]
30
+ },
31
+ "DisconnectParticipant":{
32
+ "name":"DisconnectParticipant",
33
+ "http":{
34
+ "method":"POST",
35
+ "requestUri":"/participant/disconnect"
36
+ },
37
+ "input":{"shape":"DisconnectParticipantRequest"},
38
+ "output":{"shape":"DisconnectParticipantResponse"},
39
+ "errors":[
40
+ {"shape":"AccessDeniedException"},
41
+ {"shape":"InternalServerException"},
42
+ {"shape":"ThrottlingException"},
43
+ {"shape":"ValidationException"}
44
+ ]
45
+ },
46
+ "GetTranscript":{
47
+ "name":"GetTranscript",
48
+ "http":{
49
+ "method":"POST",
50
+ "requestUri":"/participant/transcript"
51
+ },
52
+ "input":{"shape":"GetTranscriptRequest"},
53
+ "output":{"shape":"GetTranscriptResponse"},
54
+ "errors":[
55
+ {"shape":"AccessDeniedException"},
56
+ {"shape":"InternalServerException"},
57
+ {"shape":"ThrottlingException"},
58
+ {"shape":"ValidationException"}
59
+ ]
60
+ },
61
+ "SendEvent":{
62
+ "name":"SendEvent",
63
+ "http":{
64
+ "method":"POST",
65
+ "requestUri":"/participant/event"
66
+ },
67
+ "input":{"shape":"SendEventRequest"},
68
+ "output":{"shape":"SendEventResponse"},
69
+ "errors":[
70
+ {"shape":"AccessDeniedException"},
71
+ {"shape":"InternalServerException"},
72
+ {"shape":"ThrottlingException"},
73
+ {"shape":"ValidationException"}
74
+ ]
75
+ },
76
+ "SendMessage":{
77
+ "name":"SendMessage",
78
+ "http":{
79
+ "method":"POST",
80
+ "requestUri":"/participant/message"
81
+ },
82
+ "input":{"shape":"SendMessageRequest"},
83
+ "output":{"shape":"SendMessageResponse"},
84
+ "errors":[
85
+ {"shape":"AccessDeniedException"},
86
+ {"shape":"InternalServerException"},
87
+ {"shape":"ThrottlingException"},
88
+ {"shape":"ValidationException"}
89
+ ]
90
+ }
91
+ },
92
+ "shapes":{
93
+ "AccessDeniedException":{
94
+ "type":"structure",
95
+ "required":["Message"],
96
+ "members":{
97
+ "Message":{"shape":"Message"}
98
+ },
99
+ "error":{"httpStatusCode":403},
100
+ "exception":true
101
+ },
102
+ "ChatContent":{
103
+ "type":"string",
104
+ "max":1024,
105
+ "min":1
106
+ },
107
+ "ChatContentType":{
108
+ "type":"string",
109
+ "max":100,
110
+ "min":1
111
+ },
112
+ "ChatItemId":{
113
+ "type":"string",
114
+ "max":256,
115
+ "min":1
116
+ },
117
+ "ChatItemType":{
118
+ "type":"string",
119
+ "enum":[
120
+ "MESSAGE",
121
+ "EVENT",
122
+ "CONNECTION_ACK"
123
+ ]
124
+ },
125
+ "ClientToken":{
126
+ "type":"string",
127
+ "max":500
128
+ },
129
+ "ConnectionCredentials":{
130
+ "type":"structure",
131
+ "members":{
132
+ "ConnectionToken":{"shape":"ParticipantToken"},
133
+ "Expiry":{"shape":"ISO8601Datetime"}
134
+ }
135
+ },
136
+ "ConnectionType":{
137
+ "type":"string",
138
+ "enum":[
139
+ "WEBSOCKET",
140
+ "CONNECTION_CREDENTIALS"
141
+ ]
142
+ },
143
+ "ConnectionTypeList":{
144
+ "type":"list",
145
+ "member":{"shape":"ConnectionType"},
146
+ "min":1
147
+ },
148
+ "ContactId":{
149
+ "type":"string",
150
+ "max":256,
151
+ "min":1
152
+ },
153
+ "CreateParticipantConnectionRequest":{
154
+ "type":"structure",
155
+ "required":[
156
+ "Type",
157
+ "ParticipantToken"
158
+ ],
159
+ "members":{
160
+ "Type":{"shape":"ConnectionTypeList"},
161
+ "ParticipantToken":{
162
+ "shape":"ParticipantToken",
163
+ "location":"header",
164
+ "locationName":"X-Amz-Bearer"
165
+ }
166
+ }
167
+ },
168
+ "CreateParticipantConnectionResponse":{
169
+ "type":"structure",
170
+ "members":{
171
+ "Websocket":{"shape":"Websocket"},
172
+ "ConnectionCredentials":{"shape":"ConnectionCredentials"}
173
+ }
174
+ },
175
+ "DisconnectParticipantRequest":{
176
+ "type":"structure",
177
+ "required":["ConnectionToken"],
178
+ "members":{
179
+ "ClientToken":{
180
+ "shape":"ClientToken",
181
+ "idempotencyToken":true
182
+ },
183
+ "ConnectionToken":{
184
+ "shape":"ParticipantToken",
185
+ "location":"header",
186
+ "locationName":"X-Amz-Bearer"
187
+ }
188
+ }
189
+ },
190
+ "DisconnectParticipantResponse":{
191
+ "type":"structure",
192
+ "members":{
193
+ }
194
+ },
195
+ "DisplayName":{
196
+ "type":"string",
197
+ "max":256,
198
+ "min":1
199
+ },
200
+ "GetTranscriptRequest":{
201
+ "type":"structure",
202
+ "required":["ConnectionToken"],
203
+ "members":{
204
+ "ContactId":{"shape":"ContactId"},
205
+ "MaxResults":{
206
+ "shape":"MaxResults",
207
+ "box":true
208
+ },
209
+ "NextToken":{"shape":"NextToken"},
210
+ "ScanDirection":{"shape":"ScanDirection"},
211
+ "SortOrder":{"shape":"SortKey"},
212
+ "StartPosition":{"shape":"StartPosition"},
213
+ "ConnectionToken":{
214
+ "shape":"ParticipantToken",
215
+ "location":"header",
216
+ "locationName":"X-Amz-Bearer"
217
+ }
218
+ }
219
+ },
220
+ "GetTranscriptResponse":{
221
+ "type":"structure",
222
+ "members":{
223
+ "InitialContactId":{"shape":"ContactId"},
224
+ "Transcript":{"shape":"Transcript"},
225
+ "NextToken":{"shape":"NextToken"}
226
+ }
227
+ },
228
+ "ISO8601Datetime":{"type":"string"},
229
+ "Instant":{
230
+ "type":"string",
231
+ "max":100,
232
+ "min":1
233
+ },
234
+ "InternalServerException":{
235
+ "type":"structure",
236
+ "required":["Message"],
237
+ "members":{
238
+ "Message":{"shape":"Message"}
239
+ },
240
+ "error":{"httpStatusCode":500},
241
+ "exception":true,
242
+ "fault":true
243
+ },
244
+ "Item":{
245
+ "type":"structure",
246
+ "members":{
247
+ "AbsoluteTime":{"shape":"Instant"},
248
+ "Content":{"shape":"ChatContent"},
249
+ "ContentType":{"shape":"ChatContentType"},
250
+ "Id":{"shape":"ChatItemId"},
251
+ "Type":{"shape":"ChatItemType"},
252
+ "ParticipantId":{"shape":"ParticipantId"},
253
+ "DisplayName":{"shape":"DisplayName"},
254
+ "ParticipantRole":{"shape":"ParticipantRole"}
255
+ }
256
+ },
257
+ "MaxResults":{
258
+ "type":"integer",
259
+ "max":100,
260
+ "min":0
261
+ },
262
+ "Message":{"type":"string"},
263
+ "MostRecent":{
264
+ "type":"integer",
265
+ "max":100,
266
+ "min":0
267
+ },
268
+ "NextToken":{
269
+ "type":"string",
270
+ "max":1000,
271
+ "min":1
272
+ },
273
+ "ParticipantId":{
274
+ "type":"string",
275
+ "max":256,
276
+ "min":1
277
+ },
278
+ "ParticipantRole":{
279
+ "type":"string",
280
+ "enum":[
281
+ "AGENT",
282
+ "CUSTOMER",
283
+ "SYSTEM"
284
+ ]
285
+ },
286
+ "ParticipantToken":{
287
+ "type":"string",
288
+ "max":1000,
289
+ "min":1
290
+ },
291
+ "PreSignedConnectionUrl":{
292
+ "type":"string",
293
+ "max":2000,
294
+ "min":1
295
+ },
296
+ "Reason":{
297
+ "type":"string",
298
+ "max":2000,
299
+ "min":1
300
+ },
301
+ "ScanDirection":{
302
+ "type":"string",
303
+ "enum":[
304
+ "FORWARD",
305
+ "BACKWARD"
306
+ ]
307
+ },
308
+ "SendEventRequest":{
309
+ "type":"structure",
310
+ "required":[
311
+ "ContentType",
312
+ "ConnectionToken"
313
+ ],
314
+ "members":{
315
+ "ContentType":{"shape":"ChatContentType"},
316
+ "Content":{"shape":"ChatContent"},
317
+ "ClientToken":{
318
+ "shape":"ClientToken",
319
+ "idempotencyToken":true
320
+ },
321
+ "ConnectionToken":{
322
+ "shape":"ParticipantToken",
323
+ "location":"header",
324
+ "locationName":"X-Amz-Bearer"
325
+ }
326
+ }
327
+ },
328
+ "SendEventResponse":{
329
+ "type":"structure",
330
+ "members":{
331
+ "Id":{"shape":"ChatItemId"},
332
+ "AbsoluteTime":{"shape":"Instant"}
333
+ }
334
+ },
335
+ "SendMessageRequest":{
336
+ "type":"structure",
337
+ "required":[
338
+ "ContentType",
339
+ "Content",
340
+ "ConnectionToken"
341
+ ],
342
+ "members":{
343
+ "ContentType":{"shape":"ChatContentType"},
344
+ "Content":{"shape":"ChatContent"},
345
+ "ClientToken":{
346
+ "shape":"ClientToken",
347
+ "idempotencyToken":true
348
+ },
349
+ "ConnectionToken":{
350
+ "shape":"ParticipantToken",
351
+ "location":"header",
352
+ "locationName":"X-Amz-Bearer"
353
+ }
354
+ }
355
+ },
356
+ "SendMessageResponse":{
357
+ "type":"structure",
358
+ "members":{
359
+ "Id":{"shape":"ChatItemId"},
360
+ "AbsoluteTime":{"shape":"Instant"}
361
+ }
362
+ },
363
+ "SortKey":{
364
+ "type":"string",
365
+ "enum":[
366
+ "DESCENDING",
367
+ "ASCENDING"
368
+ ]
369
+ },
370
+ "StartPosition":{
371
+ "type":"structure",
372
+ "members":{
373
+ "Id":{"shape":"ChatItemId"},
374
+ "AbsoluteTime":{"shape":"Instant"},
375
+ "MostRecent":{"shape":"MostRecent"}
376
+ }
377
+ },
378
+ "ThrottlingException":{
379
+ "type":"structure",
380
+ "required":["Message"],
381
+ "members":{
382
+ "Message":{"shape":"Message"}
383
+ },
384
+ "error":{"httpStatusCode":429},
385
+ "exception":true
386
+ },
387
+ "Transcript":{
388
+ "type":"list",
389
+ "member":{"shape":"Item"}
390
+ },
391
+ "ValidationException":{
392
+ "type":"structure",
393
+ "required":["Message"],
394
+ "members":{
395
+ "Message":{"shape":"Reason"}
396
+ },
397
+ "error":{"httpStatusCode":400},
398
+ "exception":true
399
+ },
400
+ "Websocket":{
401
+ "type":"structure",
402
+ "members":{
403
+ "Url":{"shape":"PreSignedConnectionUrl"},
404
+ "ConnectionExpiry":{"shape":"ISO8601Datetime"}
405
+ }
406
+ }
407
+ }
408
+ }