aws-sdk-core 2.11.545 → 2.11.550

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/apis/cloudfront/2020-05-31/api-2.json +5095 -0
  3. data/apis/cloudfront/2020-05-31/examples-1.json +5 -0
  4. data/apis/cloudfront/2020-05-31/paginators-1.json +32 -0
  5. data/apis/cloudfront/2020-05-31/smoke.json +20 -0
  6. data/apis/cloudfront/2020-05-31/waiters-2.json +47 -0
  7. data/apis/codebuild/2016-10-06/api-2.json +13 -3
  8. data/apis/codeguruprofiler/2019-07-18/api-2.json +120 -3
  9. data/apis/connect/2017-08-08/api-2.json +145 -0
  10. data/apis/ec2/2016-11-15/api-2.json +25 -5
  11. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +12 -0
  12. data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +63 -0
  13. data/apis/fms/2018-01-01/api-2.json +515 -1
  14. data/apis/frauddetector/2019-11-15/api-2.json +882 -175
  15. data/apis/frauddetector/2019-11-15/paginators-1.json +20 -0
  16. data/apis/groundstation/2019-05-23/api-2.json +53 -1
  17. data/apis/ivs/2020-07-14/api-2.json +809 -0
  18. data/apis/ivs/2020-07-14/examples-1.json +5 -0
  19. data/apis/ivs/2020-07-14/paginators-1.json +27 -0
  20. data/apis/macie2/2020-01-01/api-2.json +7 -1
  21. data/apis/macie2/2020-01-01/paginators-1.json +57 -2
  22. data/apis/medialive/2017-10-14/api-2.json +136 -51
  23. data/apis/quicksight/2018-04-01/api-2.json +625 -3
  24. data/apis/quicksight/2018-04-01/paginators-1.json +5 -0
  25. data/apis/rds/2014-10-31/api-2.json +5 -2
  26. data/endpoints.json +38 -13
  27. data/lib/aws-sdk-core.rb +1 -0
  28. data/lib/aws-sdk-core/cloudfront.rb +5 -5
  29. data/lib/aws-sdk-core/elasticbeanstalk.rb +1 -0
  30. data/lib/aws-sdk-core/ivs.rb +6 -0
  31. data/lib/aws-sdk-core/version.rb +1 -1
  32. data/service-models.json +5 -1
  33. metadata +12 -2
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "pagination": {
3
+ "ListCloudFrontOriginAccessIdentities": {
4
+ "input_token": "Marker",
5
+ "limit_key": "MaxItems",
6
+ "more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
7
+ "output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
8
+ "result_key": "CloudFrontOriginAccessIdentityList.Items"
9
+ },
10
+ "ListDistributions": {
11
+ "input_token": "Marker",
12
+ "limit_key": "MaxItems",
13
+ "more_results": "DistributionList.IsTruncated",
14
+ "output_token": "DistributionList.NextMarker",
15
+ "result_key": "DistributionList.Items"
16
+ },
17
+ "ListInvalidations": {
18
+ "input_token": "Marker",
19
+ "limit_key": "MaxItems",
20
+ "more_results": "InvalidationList.IsTruncated",
21
+ "output_token": "InvalidationList.NextMarker",
22
+ "result_key": "InvalidationList.Items"
23
+ },
24
+ "ListStreamingDistributions": {
25
+ "input_token": "Marker",
26
+ "limit_key": "MaxItems",
27
+ "more_results": "StreamingDistributionList.IsTruncated",
28
+ "output_token": "StreamingDistributionList.NextMarker",
29
+ "result_key": "StreamingDistributionList.Items"
30
+ }
31
+ }
32
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-east-1",
4
+ "testCases": [
5
+ {
6
+ "operationName": "ListCloudFrontOriginAccessIdentities",
7
+ "input": {
8
+ "MaxItems": "1"
9
+ },
10
+ "errorExpectedFromService": false
11
+ },
12
+ {
13
+ "operationName": "GetDistribution",
14
+ "input": {
15
+ "Id": "fake-id"
16
+ },
17
+ "errorExpectedFromService": true
18
+ }
19
+ ]
20
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "version": 2,
3
+ "waiters": {
4
+ "DistributionDeployed": {
5
+ "delay": 60,
6
+ "operation": "GetDistribution",
7
+ "maxAttempts": 35,
8
+ "description": "Wait until a distribution is deployed.",
9
+ "acceptors": [
10
+ {
11
+ "expected": "Deployed",
12
+ "matcher": "path",
13
+ "state": "success",
14
+ "argument": "Distribution.Status"
15
+ }
16
+ ]
17
+ },
18
+ "InvalidationCompleted": {
19
+ "delay": 20,
20
+ "operation": "GetInvalidation",
21
+ "maxAttempts": 30,
22
+ "description": "Wait until an invalidation has completed.",
23
+ "acceptors": [
24
+ {
25
+ "expected": "Completed",
26
+ "matcher": "path",
27
+ "state": "success",
28
+ "argument": "Invalidation.Status"
29
+ }
30
+ ]
31
+ },
32
+ "StreamingDistributionDeployed": {
33
+ "delay": 60,
34
+ "operation": "GetStreamingDistribution",
35
+ "maxAttempts": 25,
36
+ "description": "Wait until a streaming distribution is deployed.",
37
+ "acceptors": [
38
+ {
39
+ "expected": "Deployed",
40
+ "matcher": "path",
41
+ "state": "success",
42
+ "argument": "StreamingDistribution.Status"
43
+ }
44
+ ]
45
+ }
46
+ }
47
+ }
@@ -580,7 +580,8 @@
580
580
  "encryptionKey":{"shape":"NonEmptyString"},
581
581
  "exportedEnvironmentVariables":{"shape":"ExportedEnvironmentVariables"},
582
582
  "reportArns":{"shape":"BuildReportArns"},
583
- "fileSystemLocations":{"shape":"ProjectFileSystemLocations"}
583
+ "fileSystemLocations":{"shape":"ProjectFileSystemLocations"},
584
+ "debugSession":{"shape":"DebugSession"}
584
585
  }
585
586
  },
586
587
  "BuildArtifacts":{
@@ -773,6 +774,13 @@
773
774
  "type":"string",
774
775
  "enum":["SECRETS_MANAGER"]
775
776
  },
777
+ "DebugSession":{
778
+ "type":"structure",
779
+ "members":{
780
+ "sessionEnabled":{"shape":"WrapperBoolean"},
781
+ "sessionTarget":{"shape":"NonEmptyString"}
782
+ }
783
+ },
776
784
  "DeleteProjectInput":{
777
785
  "type":"structure",
778
786
  "required":["name"],
@@ -903,7 +911,8 @@
903
911
  "WINDOWS_CONTAINER",
904
912
  "LINUX_CONTAINER",
905
913
  "LINUX_GPU_CONTAINER",
906
- "ARM_CONTAINER"
914
+ "ARM_CONTAINER",
915
+ "WINDOWS_SERVER_2019_CONTAINER"
907
916
  ]
908
917
  },
909
918
  "EnvironmentVariable":{
@@ -1712,7 +1721,8 @@
1712
1721
  "idempotencyToken":{"shape":"String"},
1713
1722
  "logsConfigOverride":{"shape":"LogsConfig"},
1714
1723
  "registryCredentialOverride":{"shape":"RegistryCredential"},
1715
- "imagePullCredentialsTypeOverride":{"shape":"ImagePullCredentialsType"}
1724
+ "imagePullCredentialsTypeOverride":{"shape":"ImagePullCredentialsType"},
1725
+ "debugSessionEnabled":{"shape":"WrapperBoolean"}
1716
1726
  }
1717
1727
  },
1718
1728
  "StartBuildOutput":{
@@ -237,6 +237,21 @@
237
237
  {"shape":"ThrottlingException"}
238
238
  ]
239
239
  },
240
+ "ListTagsForResource":{
241
+ "name":"ListTagsForResource",
242
+ "http":{
243
+ "method":"GET",
244
+ "requestUri":"/tags/{resourceArn}",
245
+ "responseCode":200
246
+ },
247
+ "input":{"shape":"ListTagsForResourceRequest"},
248
+ "output":{"shape":"ListTagsForResourceResponse"},
249
+ "errors":[
250
+ {"shape":"InternalServerException"},
251
+ {"shape":"ValidationException"},
252
+ {"shape":"ResourceNotFoundException"}
253
+ ]
254
+ },
240
255
  "PostAgentProfile":{
241
256
  "name":"PostAgentProfile",
242
257
  "http":{
@@ -321,6 +336,37 @@
321
336
  {"shape":"ResourceNotFoundException"}
322
337
  ]
323
338
  },
339
+ "TagResource":{
340
+ "name":"TagResource",
341
+ "http":{
342
+ "method":"POST",
343
+ "requestUri":"/tags/{resourceArn}",
344
+ "responseCode":204
345
+ },
346
+ "input":{"shape":"TagResourceRequest"},
347
+ "output":{"shape":"TagResourceResponse"},
348
+ "errors":[
349
+ {"shape":"InternalServerException"},
350
+ {"shape":"ValidationException"},
351
+ {"shape":"ResourceNotFoundException"}
352
+ ]
353
+ },
354
+ "UntagResource":{
355
+ "name":"UntagResource",
356
+ "http":{
357
+ "method":"DELETE",
358
+ "requestUri":"/tags/{resourceArn}",
359
+ "responseCode":204
360
+ },
361
+ "input":{"shape":"UntagResourceRequest"},
362
+ "output":{"shape":"UntagResourceResponse"},
363
+ "errors":[
364
+ {"shape":"InternalServerException"},
365
+ {"shape":"ValidationException"},
366
+ {"shape":"ResourceNotFoundException"}
367
+ ],
368
+ "idempotent":true
369
+ },
324
370
  "UpdateProfilingGroup":{
325
371
  "name":"UpdateProfilingGroup",
326
372
  "http":{
@@ -594,7 +640,8 @@
594
640
  "locationName":"clientToken"
595
641
  },
596
642
  "computePlatform":{"shape":"ComputePlatform"},
597
- "profilingGroupName":{"shape":"ProfilingGroupName"}
643
+ "profilingGroupName":{"shape":"ProfilingGroupName"},
644
+ "tags":{"shape":"TagsMap"}
598
645
  }
599
646
  },
600
647
  "CreateProfilingGroupResponse":{
@@ -682,8 +729,7 @@
682
729
  "FleetInstanceId":{
683
730
  "type":"string",
684
731
  "max":255,
685
- "min":1,
686
- "pattern":"^[\\w-.:/]+$"
732
+ "min":1
687
733
  },
688
734
  "FrameMetric":{
689
735
  "type":"structure",
@@ -1042,6 +1088,23 @@
1042
1088
  "profilingGroups":{"shape":"ProfilingGroupDescriptions"}
1043
1089
  }
1044
1090
  },
1091
+ "ListTagsForResourceRequest":{
1092
+ "type":"structure",
1093
+ "required":["resourceArn"],
1094
+ "members":{
1095
+ "resourceArn":{
1096
+ "shape":"ProfilingGroupArn",
1097
+ "location":"uri",
1098
+ "locationName":"resourceArn"
1099
+ }
1100
+ }
1101
+ },
1102
+ "ListTagsForResourceResponse":{
1103
+ "type":"structure",
1104
+ "members":{
1105
+ "tags":{"shape":"TagsMap"}
1106
+ }
1107
+ },
1045
1108
  "Locale":{"type":"string"},
1046
1109
  "Match":{
1047
1110
  "type":"structure",
@@ -1204,6 +1267,7 @@
1204
1267
  "createdAt":{"shape":"Timestamp"},
1205
1268
  "name":{"shape":"ProfilingGroupName"},
1206
1269
  "profilingStatus":{"shape":"ProfilingStatus"},
1270
+ "tags":{"shape":"TagsMap"},
1207
1271
  "updatedAt":{"shape":"Timestamp"}
1208
1272
  }
1209
1273
  },
@@ -1406,6 +1470,35 @@
1406
1470
  "members":{
1407
1471
  }
1408
1472
  },
1473
+ "TagKeys":{
1474
+ "type":"list",
1475
+ "member":{"shape":"String"}
1476
+ },
1477
+ "TagResourceRequest":{
1478
+ "type":"structure",
1479
+ "required":[
1480
+ "resourceArn",
1481
+ "tags"
1482
+ ],
1483
+ "members":{
1484
+ "resourceArn":{
1485
+ "shape":"ProfilingGroupArn",
1486
+ "location":"uri",
1487
+ "locationName":"resourceArn"
1488
+ },
1489
+ "tags":{"shape":"TagsMap"}
1490
+ }
1491
+ },
1492
+ "TagResourceResponse":{
1493
+ "type":"structure",
1494
+ "members":{
1495
+ }
1496
+ },
1497
+ "TagsMap":{
1498
+ "type":"map",
1499
+ "key":{"shape":"String"},
1500
+ "value":{"shape":"String"}
1501
+ },
1409
1502
  "TargetFrame":{
1410
1503
  "type":"list",
1411
1504
  "member":{"shape":"String"}
@@ -1446,6 +1539,30 @@
1446
1539
  "key":{"shape":"String"},
1447
1540
  "value":{"shape":"ListOfTimestamps"}
1448
1541
  },
1542
+ "UntagResourceRequest":{
1543
+ "type":"structure",
1544
+ "required":[
1545
+ "resourceArn",
1546
+ "tagKeys"
1547
+ ],
1548
+ "members":{
1549
+ "resourceArn":{
1550
+ "shape":"ProfilingGroupArn",
1551
+ "location":"uri",
1552
+ "locationName":"resourceArn"
1553
+ },
1554
+ "tagKeys":{
1555
+ "shape":"TagKeys",
1556
+ "location":"querystring",
1557
+ "locationName":"tagKeys"
1558
+ }
1559
+ }
1560
+ },
1561
+ "UntagResourceResponse":{
1562
+ "type":"structure",
1563
+ "members":{
1564
+ }
1565
+ },
1449
1566
  "UpdateProfilingGroupRequest":{
1450
1567
  "type":"structure",
1451
1568
  "required":[
@@ -301,6 +301,20 @@
301
301
  {"shape":"InternalServiceException"}
302
302
  ]
303
303
  },
304
+ "ResumeContactRecording":{
305
+ "name":"ResumeContactRecording",
306
+ "http":{
307
+ "method":"POST",
308
+ "requestUri":"/contact/resume-recording"
309
+ },
310
+ "input":{"shape":"ResumeContactRecordingRequest"},
311
+ "output":{"shape":"ResumeContactRecordingResponse"},
312
+ "errors":[
313
+ {"shape":"InvalidRequestException"},
314
+ {"shape":"ResourceNotFoundException"},
315
+ {"shape":"InternalServiceException"}
316
+ ]
317
+ },
304
318
  "StartChatContact":{
305
319
  "name":"StartChatContact",
306
320
  "http":{
@@ -317,6 +331,21 @@
317
331
  {"shape":"LimitExceededException"}
318
332
  ]
319
333
  },
334
+ "StartContactRecording":{
335
+ "name":"StartContactRecording",
336
+ "http":{
337
+ "method":"POST",
338
+ "requestUri":"/contact/start-recording"
339
+ },
340
+ "input":{"shape":"StartContactRecordingRequest"},
341
+ "output":{"shape":"StartContactRecordingResponse"},
342
+ "errors":[
343
+ {"shape":"InvalidRequestException"},
344
+ {"shape":"InvalidParameterException"},
345
+ {"shape":"ResourceNotFoundException"},
346
+ {"shape":"InternalServiceException"}
347
+ ]
348
+ },
320
349
  "StartOutboundVoiceContact":{
321
350
  "name":"StartOutboundVoiceContact",
322
351
  "http":{
@@ -351,6 +380,34 @@
351
380
  {"shape":"InternalServiceException"}
352
381
  ]
353
382
  },
383
+ "StopContactRecording":{
384
+ "name":"StopContactRecording",
385
+ "http":{
386
+ "method":"POST",
387
+ "requestUri":"/contact/stop-recording"
388
+ },
389
+ "input":{"shape":"StopContactRecordingRequest"},
390
+ "output":{"shape":"StopContactRecordingResponse"},
391
+ "errors":[
392
+ {"shape":"InvalidRequestException"},
393
+ {"shape":"ResourceNotFoundException"},
394
+ {"shape":"InternalServiceException"}
395
+ ]
396
+ },
397
+ "SuspendContactRecording":{
398
+ "name":"SuspendContactRecording",
399
+ "http":{
400
+ "method":"POST",
401
+ "requestUri":"/contact/suspend-recording"
402
+ },
403
+ "input":{"shape":"SuspendContactRecordingRequest"},
404
+ "output":{"shape":"SuspendContactRecordingResponse"},
405
+ "errors":[
406
+ {"shape":"InvalidRequestException"},
407
+ {"shape":"ResourceNotFoundException"},
408
+ {"shape":"InternalServiceException"}
409
+ ]
410
+ },
354
411
  "TagResource":{
355
412
  "name":"TagResource",
356
413
  "http":{
@@ -1754,6 +1811,24 @@
1754
1811
  "error":{"httpStatusCode":404},
1755
1812
  "exception":true
1756
1813
  },
1814
+ "ResumeContactRecordingRequest":{
1815
+ "type":"structure",
1816
+ "required":[
1817
+ "InstanceId",
1818
+ "ContactId",
1819
+ "InitialContactId"
1820
+ ],
1821
+ "members":{
1822
+ "InstanceId":{"shape":"InstanceId"},
1823
+ "ContactId":{"shape":"ContactId"},
1824
+ "InitialContactId":{"shape":"ContactId"}
1825
+ }
1826
+ },
1827
+ "ResumeContactRecordingResponse":{
1828
+ "type":"structure",
1829
+ "members":{
1830
+ }
1831
+ },
1757
1832
  "RoutingProfileId":{"type":"string"},
1758
1833
  "RoutingProfileName":{
1759
1834
  "type":"string",
@@ -1823,6 +1898,26 @@
1823
1898
  "ParticipantToken":{"shape":"ParticipantToken"}
1824
1899
  }
1825
1900
  },
1901
+ "StartContactRecordingRequest":{
1902
+ "type":"structure",
1903
+ "required":[
1904
+ "InstanceId",
1905
+ "ContactId",
1906
+ "InitialContactId",
1907
+ "VoiceRecordingConfiguration"
1908
+ ],
1909
+ "members":{
1910
+ "InstanceId":{"shape":"InstanceId"},
1911
+ "ContactId":{"shape":"ContactId"},
1912
+ "InitialContactId":{"shape":"ContactId"},
1913
+ "VoiceRecordingConfiguration":{"shape":"VoiceRecordingConfiguration"}
1914
+ }
1915
+ },
1916
+ "StartContactRecordingResponse":{
1917
+ "type":"structure",
1918
+ "members":{
1919
+ }
1920
+ },
1826
1921
  "StartOutboundVoiceContactRequest":{
1827
1922
  "type":"structure",
1828
1923
  "required":[
@@ -1857,6 +1952,24 @@
1857
1952
  "AVG"
1858
1953
  ]
1859
1954
  },
1955
+ "StopContactRecordingRequest":{
1956
+ "type":"structure",
1957
+ "required":[
1958
+ "InstanceId",
1959
+ "ContactId",
1960
+ "InitialContactId"
1961
+ ],
1962
+ "members":{
1963
+ "InstanceId":{"shape":"InstanceId"},
1964
+ "ContactId":{"shape":"ContactId"},
1965
+ "InitialContactId":{"shape":"ContactId"}
1966
+ }
1967
+ },
1968
+ "StopContactRecordingResponse":{
1969
+ "type":"structure",
1970
+ "members":{
1971
+ }
1972
+ },
1860
1973
  "StopContactRequest":{
1861
1974
  "type":"structure",
1862
1975
  "required":[
@@ -1873,6 +1986,24 @@
1873
1986
  "members":{
1874
1987
  }
1875
1988
  },
1989
+ "SuspendContactRecordingRequest":{
1990
+ "type":"structure",
1991
+ "required":[
1992
+ "InstanceId",
1993
+ "ContactId",
1994
+ "InitialContactId"
1995
+ ],
1996
+ "members":{
1997
+ "InstanceId":{"shape":"InstanceId"},
1998
+ "ContactId":{"shape":"ContactId"},
1999
+ "InitialContactId":{"shape":"ContactId"}
2000
+ }
2001
+ },
2002
+ "SuspendContactRecordingResponse":{
2003
+ "type":"structure",
2004
+ "members":{
2005
+ }
2006
+ },
1876
2007
  "TagKey":{
1877
2008
  "type":"string",
1878
2009
  "max":128,
@@ -2134,6 +2265,20 @@
2134
2265
  "member":{"shape":"UserSummary"}
2135
2266
  },
2136
2267
  "Value":{"type":"double"},
2268
+ "VoiceRecordingConfiguration":{
2269
+ "type":"structure",
2270
+ "members":{
2271
+ "VoiceRecordingTrack":{"shape":"VoiceRecordingTrack"}
2272
+ }
2273
+ },
2274
+ "VoiceRecordingTrack":{
2275
+ "type":"string",
2276
+ "enum":[
2277
+ "FROM_AGENT",
2278
+ "TO_AGENT",
2279
+ "ALL"
2280
+ ]
2281
+ },
2137
2282
  "timestamp":{"type":"timestamp"}
2138
2283
  }
2139
2284
  }