aws-sdk-core 2.11.463 → 2.11.469

Sign up to get free protection for your applications and to get access to all the features.
@@ -48,6 +48,12 @@
48
48
  "output_token": "Marker",
49
49
  "result_key": "Events"
50
50
  },
51
+ "DescribeGlobalReplicationGroups": {
52
+ "input_token": "Marker",
53
+ "limit_key": "MaxRecords",
54
+ "output_token": "Marker",
55
+ "result_key": "GlobalReplicationGroups"
56
+ },
51
57
  "DescribeReplicationGroups": {
52
58
  "input_token": "Marker",
53
59
  "limit_key": "MaxRecords",
@@ -3319,6 +3319,7 @@
3319
3319
  "firehose":{"shape":"FirehoseAction"},
3320
3320
  "cloudwatchMetric":{"shape":"CloudwatchMetricAction"},
3321
3321
  "cloudwatchAlarm":{"shape":"CloudwatchAlarmAction"},
3322
+ "cloudwatchLogs":{"shape":"CloudwatchLogsAction"},
3322
3323
  "elasticsearch":{"shape":"ElasticsearchAction"},
3323
3324
  "salesforce":{"shape":"SalesforceAction"},
3324
3325
  "iotAnalytics":{"shape":"IotAnalyticsAction"},
@@ -4304,6 +4305,17 @@
4304
4305
  "stateValue":{"shape":"StateValue"}
4305
4306
  }
4306
4307
  },
4308
+ "CloudwatchLogsAction":{
4309
+ "type":"structure",
4310
+ "required":[
4311
+ "roleArn",
4312
+ "logGroupName"
4313
+ ],
4314
+ "members":{
4315
+ "roleArn":{"shape":"AwsArn"},
4316
+ "logGroupName":{"shape":"LogGroupName"}
4317
+ }
4318
+ },
4307
4319
  "CloudwatchMetricAction":{
4308
4320
  "type":"structure",
4309
4321
  "required":[
@@ -8556,6 +8568,7 @@
8556
8568
  "nextToken":{"shape":"NextToken"}
8557
8569
  }
8558
8570
  },
8571
+ "LogGroupName":{"type":"string"},
8559
8572
  "LogLevel":{
8560
8573
  "type":"string",
8561
8574
  "enum":[
@@ -904,7 +904,11 @@
904
904
  "targetArn":{"shape":"AmazonResourceName"}
905
905
  }
906
906
  },
907
- "Seconds":{"type":"integer"},
907
+ "Seconds":{
908
+ "type":"integer",
909
+ "max":31622400,
910
+ "min":1
911
+ },
908
912
  "ServiceUnavailableException":{
909
913
  "type":"structure",
910
914
  "members":{
@@ -916,13 +920,15 @@
916
920
  },
917
921
  "SetTimerAction":{
918
922
  "type":"structure",
919
- "required":[
920
- "timerName",
921
- "seconds"
922
- ],
923
+ "required":["timerName"],
923
924
  "members":{
924
925
  "timerName":{"shape":"TimerName"},
925
- "seconds":{"shape":"Seconds"}
926
+ "seconds":{
927
+ "shape":"Seconds",
928
+ "deprecated":true,
929
+ "deprecatedMessage":"seconds is deprecated. You can use durationExpression for SetTimerAction. The value of seconds can be used as a string expression for durationExpression."
930
+ },
931
+ "durationExpression":{"shape":"VariableValue"}
926
932
  }
927
933
  },
928
934
  "SetVariableAction":{
@@ -515,6 +515,22 @@
515
515
  {"shape":"BadRequestException"}
516
516
  ]
517
517
  },
518
+ "ListTagsForResource":{
519
+ "name":"ListTagsForResource",
520
+ "http":{
521
+ "method":"GET",
522
+ "requestUri":"/tags/{resourceArn}",
523
+ "responseCode":200
524
+ },
525
+ "input":{"shape":"ListTagsForResourceRequest"},
526
+ "output":{"shape":"ListTagsForResourceResponse"},
527
+ "errors":[
528
+ {"shape":"NotFoundException"},
529
+ {"shape":"BadRequestException"},
530
+ {"shape":"InternalFailureException"},
531
+ {"shape":"LimitExceededException"}
532
+ ]
533
+ },
518
534
  "PutBot":{
519
535
  "name":"PutBot",
520
536
  "http":{
@@ -597,6 +613,40 @@
597
613
  {"shape":"InternalFailureException"},
598
614
  {"shape":"BadRequestException"}
599
615
  ]
616
+ },
617
+ "TagResource":{
618
+ "name":"TagResource",
619
+ "http":{
620
+ "method":"POST",
621
+ "requestUri":"/tags/{resourceArn}",
622
+ "responseCode":204
623
+ },
624
+ "input":{"shape":"TagResourceRequest"},
625
+ "output":{"shape":"TagResourceResponse"},
626
+ "errors":[
627
+ {"shape":"NotFoundException"},
628
+ {"shape":"BadRequestException"},
629
+ {"shape":"ConflictException"},
630
+ {"shape":"InternalFailureException"},
631
+ {"shape":"LimitExceededException"}
632
+ ]
633
+ },
634
+ "UntagResource":{
635
+ "name":"UntagResource",
636
+ "http":{
637
+ "method":"DELETE",
638
+ "requestUri":"/tags/{resourceArn}",
639
+ "responseCode":204
640
+ },
641
+ "input":{"shape":"UntagResourceRequest"},
642
+ "output":{"shape":"UntagResourceResponse"},
643
+ "errors":[
644
+ {"shape":"NotFoundException"},
645
+ {"shape":"BadRequestException"},
646
+ {"shape":"ConflictException"},
647
+ {"shape":"InternalFailureException"},
648
+ {"shape":"LimitExceededException"}
649
+ ]
600
650
  }
601
651
  },
602
652
  "shapes":{
@@ -612,6 +662,11 @@
612
662
  "min":1,
613
663
  "pattern":"^(-|^([A-Za-z]_?)+$)$"
614
664
  },
665
+ "AmazonResourceName":{
666
+ "type":"string",
667
+ "max":1011,
668
+ "min":1
669
+ },
615
670
  "BadRequestException":{
616
671
  "type":"structure",
617
672
  "members":{
@@ -1821,6 +1876,23 @@
1821
1876
  "type":"list",
1822
1877
  "member":{"shape":"UtteranceData"}
1823
1878
  },
1879
+ "ListTagsForResourceRequest":{
1880
+ "type":"structure",
1881
+ "required":["resourceArn"],
1882
+ "members":{
1883
+ "resourceArn":{
1884
+ "shape":"AmazonResourceName",
1885
+ "location":"uri",
1886
+ "locationName":"resourceArn"
1887
+ }
1888
+ }
1889
+ },
1890
+ "ListTagsForResourceResponse":{
1891
+ "type":"structure",
1892
+ "members":{
1893
+ "tags":{"shape":"TagList"}
1894
+ }
1895
+ },
1824
1896
  "ListsOfUtterances":{
1825
1897
  "type":"list",
1826
1898
  "member":{"shape":"UtteranceList"}
@@ -1998,7 +2070,8 @@
1998
2070
  "locationName":"botName"
1999
2071
  },
2000
2072
  "checksum":{"shape":"String"},
2001
- "conversationLogs":{"shape":"ConversationLogsRequest"}
2073
+ "conversationLogs":{"shape":"ConversationLogsRequest"},
2074
+ "tags":{"shape":"TagList"}
2002
2075
  }
2003
2076
  },
2004
2077
  "PutBotAliasResponse":{
@@ -2011,7 +2084,8 @@
2011
2084
  "lastUpdatedDate":{"shape":"Timestamp"},
2012
2085
  "createdDate":{"shape":"Timestamp"},
2013
2086
  "checksum":{"shape":"String"},
2014
- "conversationLogs":{"shape":"ConversationLogsResponse"}
2087
+ "conversationLogs":{"shape":"ConversationLogsResponse"},
2088
+ "tags":{"shape":"TagList"}
2015
2089
  }
2016
2090
  },
2017
2091
  "PutBotRequest":{
@@ -2038,7 +2112,8 @@
2038
2112
  "locale":{"shape":"Locale"},
2039
2113
  "childDirected":{"shape":"Boolean"},
2040
2114
  "detectSentiment":{"shape":"Boolean"},
2041
- "createVersion":{"shape":"Boolean"}
2115
+ "createVersion":{"shape":"Boolean"},
2116
+ "tags":{"shape":"TagList"}
2042
2117
  }
2043
2118
  },
2044
2119
  "PutBotResponse":{
@@ -2060,7 +2135,8 @@
2060
2135
  "locale":{"shape":"Locale"},
2061
2136
  "childDirected":{"shape":"Boolean"},
2062
2137
  "createVersion":{"shape":"Boolean"},
2063
- "detectSentiment":{"shape":"Boolean"}
2138
+ "detectSentiment":{"shape":"Boolean"},
2139
+ "tags":{"shape":"TagList"}
2064
2140
  }
2065
2141
  },
2066
2142
  "PutIntentRequest":{
@@ -2299,7 +2375,8 @@
2299
2375
  "members":{
2300
2376
  "payload":{"shape":"Blob"},
2301
2377
  "resourceType":{"shape":"ResourceType"},
2302
- "mergeStrategy":{"shape":"MergeStrategy"}
2378
+ "mergeStrategy":{"shape":"MergeStrategy"},
2379
+ "tags":{"shape":"TagList"}
2303
2380
  }
2304
2381
  },
2305
2382
  "StartImportResponse":{
@@ -2310,6 +2387,7 @@
2310
2387
  "mergeStrategy":{"shape":"MergeStrategy"},
2311
2388
  "importId":{"shape":"String"},
2312
2389
  "importStatus":{"shape":"ImportStatus"},
2390
+ "tags":{"shape":"TagList"},
2313
2391
  "createdDate":{"shape":"Timestamp"}
2314
2392
  }
2315
2393
  },
@@ -2347,7 +2425,84 @@
2347
2425
  "type":"list",
2348
2426
  "member":{"shape":"Value"}
2349
2427
  },
2428
+ "Tag":{
2429
+ "type":"structure",
2430
+ "required":[
2431
+ "key",
2432
+ "value"
2433
+ ],
2434
+ "members":{
2435
+ "key":{"shape":"TagKey"},
2436
+ "value":{"shape":"TagValue"}
2437
+ }
2438
+ },
2439
+ "TagKey":{
2440
+ "type":"string",
2441
+ "max":128,
2442
+ "min":1
2443
+ },
2444
+ "TagKeyList":{
2445
+ "type":"list",
2446
+ "member":{"shape":"TagKey"},
2447
+ "max":200,
2448
+ "min":0
2449
+ },
2450
+ "TagList":{
2451
+ "type":"list",
2452
+ "member":{"shape":"Tag"},
2453
+ "max":200,
2454
+ "min":0
2455
+ },
2456
+ "TagResourceRequest":{
2457
+ "type":"structure",
2458
+ "required":[
2459
+ "resourceArn",
2460
+ "tags"
2461
+ ],
2462
+ "members":{
2463
+ "resourceArn":{
2464
+ "shape":"AmazonResourceName",
2465
+ "location":"uri",
2466
+ "locationName":"resourceArn"
2467
+ },
2468
+ "tags":{"shape":"TagList"}
2469
+ }
2470
+ },
2471
+ "TagResourceResponse":{
2472
+ "type":"structure",
2473
+ "members":{
2474
+ }
2475
+ },
2476
+ "TagValue":{
2477
+ "type":"string",
2478
+ "max":256,
2479
+ "min":0
2480
+ },
2350
2481
  "Timestamp":{"type":"timestamp"},
2482
+ "UntagResourceRequest":{
2483
+ "type":"structure",
2484
+ "required":[
2485
+ "resourceArn",
2486
+ "tagKeys"
2487
+ ],
2488
+ "members":{
2489
+ "resourceArn":{
2490
+ "shape":"AmazonResourceName",
2491
+ "location":"uri",
2492
+ "locationName":"resourceArn"
2493
+ },
2494
+ "tagKeys":{
2495
+ "shape":"TagKeyList",
2496
+ "location":"querystring",
2497
+ "locationName":"tagKeys"
2498
+ }
2499
+ }
2500
+ },
2501
+ "UntagResourceResponse":{
2502
+ "type":"structure",
2503
+ "members":{
2504
+ }
2505
+ },
2351
2506
  "UserId":{
2352
2507
  "type":"string",
2353
2508
  "max":100,
@@ -1398,6 +1398,110 @@
1398
1398
  "USE_CONFIGURED"
1399
1399
  ]
1400
1400
  },
1401
+ "Av1AdaptiveQuantization": {
1402
+ "type": "string",
1403
+ "enum": [
1404
+ "OFF",
1405
+ "LOW",
1406
+ "MEDIUM",
1407
+ "HIGH",
1408
+ "HIGHER",
1409
+ "MAX"
1410
+ ]
1411
+ },
1412
+ "Av1FramerateControl": {
1413
+ "type": "string",
1414
+ "enum": [
1415
+ "INITIALIZE_FROM_SOURCE",
1416
+ "SPECIFIED"
1417
+ ]
1418
+ },
1419
+ "Av1FramerateConversionAlgorithm": {
1420
+ "type": "string",
1421
+ "enum": [
1422
+ "DUPLICATE_DROP",
1423
+ "INTERPOLATE"
1424
+ ]
1425
+ },
1426
+ "Av1QvbrSettings": {
1427
+ "type": "structure",
1428
+ "members": {
1429
+ "QvbrQualityLevel": {
1430
+ "shape": "__integerMin1Max10",
1431
+ "locationName": "qvbrQualityLevel"
1432
+ },
1433
+ "QvbrQualityLevelFineTune": {
1434
+ "shape": "__doubleMin0Max1",
1435
+ "locationName": "qvbrQualityLevelFineTune"
1436
+ }
1437
+ }
1438
+ },
1439
+ "Av1RateControlMode": {
1440
+ "type": "string",
1441
+ "enum": [
1442
+ "QVBR"
1443
+ ]
1444
+ },
1445
+ "Av1Settings": {
1446
+ "type": "structure",
1447
+ "members": {
1448
+ "AdaptiveQuantization": {
1449
+ "shape": "Av1AdaptiveQuantization",
1450
+ "locationName": "adaptiveQuantization"
1451
+ },
1452
+ "FramerateControl": {
1453
+ "shape": "Av1FramerateControl",
1454
+ "locationName": "framerateControl"
1455
+ },
1456
+ "FramerateConversionAlgorithm": {
1457
+ "shape": "Av1FramerateConversionAlgorithm",
1458
+ "locationName": "framerateConversionAlgorithm"
1459
+ },
1460
+ "FramerateDenominator": {
1461
+ "shape": "__integerMin1Max2147483647",
1462
+ "locationName": "framerateDenominator"
1463
+ },
1464
+ "FramerateNumerator": {
1465
+ "shape": "__integerMin1Max2147483647",
1466
+ "locationName": "framerateNumerator"
1467
+ },
1468
+ "GopSize": {
1469
+ "shape": "__doubleMin0",
1470
+ "locationName": "gopSize"
1471
+ },
1472
+ "MaxBitrate": {
1473
+ "shape": "__integerMin1000Max1152000000",
1474
+ "locationName": "maxBitrate"
1475
+ },
1476
+ "NumberBFramesBetweenReferenceFrames": {
1477
+ "shape": "__integerMin7Max15",
1478
+ "locationName": "numberBFramesBetweenReferenceFrames"
1479
+ },
1480
+ "QvbrSettings": {
1481
+ "shape": "Av1QvbrSettings",
1482
+ "locationName": "qvbrSettings"
1483
+ },
1484
+ "RateControlMode": {
1485
+ "shape": "Av1RateControlMode",
1486
+ "locationName": "rateControlMode"
1487
+ },
1488
+ "Slices": {
1489
+ "shape": "__integerMin1Max32",
1490
+ "locationName": "slices"
1491
+ },
1492
+ "SpatialAdaptiveQuantization": {
1493
+ "shape": "Av1SpatialAdaptiveQuantization",
1494
+ "locationName": "spatialAdaptiveQuantization"
1495
+ }
1496
+ }
1497
+ },
1498
+ "Av1SpatialAdaptiveQuantization": {
1499
+ "type": "string",
1500
+ "enum": [
1501
+ "DISABLED",
1502
+ "ENABLED"
1503
+ ]
1504
+ },
1401
1505
  "AvailBlanking": {
1402
1506
  "type": "structure",
1403
1507
  "members": {
@@ -7665,6 +7769,7 @@
7665
7769
  "type": "string",
7666
7770
  "enum": [
7667
7771
  "FRAME_CAPTURE",
7772
+ "AV1",
7668
7773
  "H_264",
7669
7774
  "H_265",
7670
7775
  "MPEG2",
@@ -7674,6 +7779,10 @@
7674
7779
  "VideoCodecSettings": {
7675
7780
  "type": "structure",
7676
7781
  "members": {
7782
+ "Av1Settings": {
7783
+ "shape": "Av1Settings",
7784
+ "locationName": "av1Settings"
7785
+ },
7677
7786
  "Codec": {
7678
7787
  "shape": "VideoCodec",
7679
7788
  "locationName": "codec"
@@ -8220,6 +8329,11 @@
8220
8329
  "min": 64000,
8221
8330
  "max": 640000
8222
8331
  },
8332
+ "__integerMin7Max15": {
8333
+ "type": "integer",
8334
+ "min": 7,
8335
+ "max": 15
8336
+ },
8223
8337
  "__integerMin8000Max192000": {
8224
8338
  "type": "integer",
8225
8339
  "min": 8000,