aws-sdk-core 2.11.567 → 2.11.572

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/apis/acm-pca/2017-08-22/api-2.json +129 -17
  3. data/apis/acm/2015-12-08/api-2.json +1 -0
  4. data/apis/apigatewayv2/2018-11-29/api-2.json +56 -0
  5. data/apis/cognito-idp/2016-04-18/api-2.json +1 -5
  6. data/apis/datasync/2018-11-09/api-2.json +78 -2
  7. data/apis/dms/2016-01-01/api-2.json +5 -2
  8. data/apis/ec2/2016-11-15/api-2.json +237 -0
  9. data/apis/ec2/2016-11-15/paginators-1.json +6 -0
  10. data/apis/ecr/2015-09-21/api-2.json +3 -1
  11. data/apis/identitystore/2020-06-15/api-2.json +318 -0
  12. data/apis/identitystore/2020-06-15/examples-1.json +5 -0
  13. data/apis/identitystore/2020-06-15/paginators-1.json +14 -0
  14. data/apis/iotsitewise/2019-12-02/api-2.json +22 -8
  15. data/apis/ivs/2020-07-14/api-2.json +160 -1
  16. data/apis/ivs/2020-07-14/paginators-1.json +6 -0
  17. data/apis/kafka/2018-11-14/api-2.json +142 -1
  18. data/apis/kinesis/2013-12-02/api-2.json +52 -12
  19. data/apis/lakeformation/2017-03-31/api-2.json +13 -1
  20. data/apis/quicksight/2018-04-01/api-2.json +579 -5
  21. data/apis/quicksight/2018-04-01/paginators-1.json +10 -0
  22. data/apis/robomaker/2018-06-29/api-2.json +738 -1
  23. data/apis/robomaker/2018-06-29/paginators-1.json +24 -0
  24. data/apis/securityhub/2018-10-26/api-2.json +565 -4
  25. data/apis/servicecatalog/2015-12-10/api-2.json +6 -0
  26. data/apis/sesv2/2019-09-27/api-2.json +189 -0
  27. data/apis/sesv2/2019-09-27/paginators-1.json +5 -0
  28. data/apis/ssm/2014-11-06/api-2.json +18 -7
  29. data/apis/storagegateway/2013-06-30/api-2.json +165 -7
  30. data/apis/transcribe-streaming/2017-10-26/api-2.json +12 -1
  31. data/apis/xray/2016-04-12/api-2.json +150 -2
  32. data/endpoints.json +21 -0
  33. data/lib/aws-sdk-core.rb +1 -0
  34. data/lib/aws-sdk-core/identitystore.rb +6 -0
  35. data/lib/aws-sdk-core/version.rb +1 -1
  36. data/service-models.json +4 -0
  37. metadata +6 -2
@@ -6,6 +6,12 @@
6
6
  "limit_key": "maxResults",
7
7
  "result_key": "channels"
8
8
  },
9
+ "ListPlaybackKeyPairs": {
10
+ "input_token": "nextToken",
11
+ "output_token": "nextToken",
12
+ "limit_key": "maxResults",
13
+ "result_key": "keyPairs"
14
+ },
9
15
  "ListStreamKeys": {
10
16
  "input_token": "nextToken",
11
17
  "output_token": "nextToken",
@@ -114,6 +114,34 @@
114
114
  }
115
115
  ]
116
116
  },
117
+ "DeleteConfiguration": {
118
+ "name": "DeleteConfiguration",
119
+ "http": {
120
+ "method": "DELETE",
121
+ "requestUri": "/v1/configurations/{arn}",
122
+ "responseCode": 200
123
+ },
124
+ "input": {
125
+ "shape": "DeleteConfigurationRequest"
126
+ },
127
+ "output": {
128
+ "shape": "DeleteConfigurationResponse"
129
+ },
130
+ "errors": [
131
+ {
132
+ "shape": "NotFoundException"
133
+ },
134
+ {
135
+ "shape": "BadRequestException"
136
+ },
137
+ {
138
+ "shape": "InternalServerErrorException"
139
+ },
140
+ {
141
+ "shape": "ForbiddenException"
142
+ }
143
+ ]
144
+ },
117
145
  "DescribeCluster": {
118
146
  "name": "DescribeCluster",
119
147
  "http": {
@@ -657,6 +685,37 @@
657
685
  }
658
686
  ]
659
687
  },
688
+ "UpdateConfiguration": {
689
+ "name": "UpdateConfiguration",
690
+ "http": {
691
+ "method": "PUT",
692
+ "requestUri": "/v1/configurations/{arn}",
693
+ "responseCode": 200
694
+ },
695
+ "input": {
696
+ "shape": "UpdateConfigurationRequest"
697
+ },
698
+ "output": {
699
+ "shape": "UpdateConfigurationResponse"
700
+ },
701
+ "errors": [
702
+ {
703
+ "shape": "ServiceUnavailableException"
704
+ },
705
+ {
706
+ "shape": "BadRequestException"
707
+ },
708
+ {
709
+ "shape": "UnauthorizedException"
710
+ },
711
+ {
712
+ "shape": "InternalServerErrorException"
713
+ },
714
+ {
715
+ "shape": "ForbiddenException"
716
+ }
717
+ ]
718
+ },
660
719
  "UpdateClusterConfiguration": {
661
720
  "name": "UpdateClusterConfiguration",
662
721
  "http": {
@@ -1107,6 +1166,10 @@
1107
1166
  "Name": {
1108
1167
  "shape": "__string",
1109
1168
  "locationName": "name"
1169
+ },
1170
+ "State": {
1171
+ "shape": "ConfigurationState",
1172
+ "locationName": "state"
1110
1173
  }
1111
1174
  },
1112
1175
  "required": [
@@ -1115,7 +1178,8 @@
1115
1178
  "CreationTime",
1116
1179
  "KafkaVersions",
1117
1180
  "Arn",
1118
- "Name"
1181
+ "Name",
1182
+ "State"
1119
1183
  ]
1120
1184
  },
1121
1185
  "ConfigurationInfo": {
@@ -1156,6 +1220,14 @@
1156
1220
  "CreationTime"
1157
1221
  ]
1158
1222
  },
1223
+ "ConfigurationState": {
1224
+ "type": "string",
1225
+ "enum": [
1226
+ "ACTIVE",
1227
+ "DELETING",
1228
+ "DELETE_FAILED"
1229
+ ]
1230
+ },
1159
1231
  "ConflictException": {
1160
1232
  "type": "structure",
1161
1233
  "members": {
@@ -1288,6 +1360,10 @@
1288
1360
  "Name": {
1289
1361
  "shape": "__string",
1290
1362
  "locationName": "name"
1363
+ },
1364
+ "State": {
1365
+ "shape": "ConfigurationState",
1366
+ "locationName": "state"
1291
1367
  }
1292
1368
  }
1293
1369
  },
@@ -1322,6 +1398,32 @@
1322
1398
  }
1323
1399
  }
1324
1400
  },
1401
+ "DeleteConfigurationRequest": {
1402
+ "type": "structure",
1403
+ "members": {
1404
+ "Arn": {
1405
+ "shape": "__string",
1406
+ "location": "uri",
1407
+ "locationName": "arn"
1408
+ }
1409
+ },
1410
+ "required": [
1411
+ "Arn"
1412
+ ]
1413
+ },
1414
+ "DeleteConfigurationResponse": {
1415
+ "type": "structure",
1416
+ "members": {
1417
+ "Arn": {
1418
+ "shape": "__string",
1419
+ "locationName": "arn"
1420
+ },
1421
+ "State": {
1422
+ "shape": "ConfigurationState",
1423
+ "locationName": "state"
1424
+ }
1425
+ }
1426
+ },
1325
1427
  "DescribeClusterOperationRequest": {
1326
1428
  "type": "structure",
1327
1429
  "members": {
@@ -1405,6 +1507,10 @@
1405
1507
  "Name": {
1406
1508
  "shape": "__string",
1407
1509
  "locationName": "name"
1510
+ },
1511
+ "State": {
1512
+ "shape": "ConfigurationState",
1513
+ "locationName": "state"
1408
1514
  }
1409
1515
  }
1410
1516
  },
@@ -2228,6 +2334,41 @@
2228
2334
  }
2229
2335
  }
2230
2336
  },
2337
+ "UpdateConfigurationRequest" : {
2338
+ "type": "structure",
2339
+ "members": {
2340
+ "Arn": {
2341
+ "shape": "__string",
2342
+ "location": "uri",
2343
+ "locationName": "arn"
2344
+ },
2345
+ "Description": {
2346
+ "shape": "__string",
2347
+ "locationName": "description"
2348
+ },
2349
+ "ServerProperties": {
2350
+ "shape": "__blob",
2351
+ "locationName": "serverProperties"
2352
+ }
2353
+ },
2354
+ "required": [
2355
+ "Arn",
2356
+ "ServerProperties"
2357
+ ]
2358
+ },
2359
+ "UpdateConfigurationResponse" : {
2360
+ "type": "structure",
2361
+ "members": {
2362
+ "Arn": {
2363
+ "shape": "__string",
2364
+ "locationName": "arn"
2365
+ },
2366
+ "LatestRevision": {
2367
+ "shape": "ConfigurationRevision",
2368
+ "locationName": "latestRevision"
2369
+ }
2370
+ }
2371
+ },
2231
2372
  "UpdateMonitoringRequest" : {
2232
2373
  "type" : "structure",
2233
2374
  "members" : {
@@ -445,6 +445,23 @@
445
445
  }
446
446
  },
447
447
  "BooleanObject":{"type":"boolean"},
448
+ "ChildShard":{
449
+ "type":"structure",
450
+ "required":[
451
+ "ShardId",
452
+ "ParentShards",
453
+ "HashKeyRange"
454
+ ],
455
+ "members":{
456
+ "ShardId":{"shape":"ShardId"},
457
+ "ParentShards":{"shape":"ShardIdList"},
458
+ "HashKeyRange":{"shape":"HashKeyRange"}
459
+ }
460
+ },
461
+ "ChildShardList":{
462
+ "type":"list",
463
+ "member":{"shape":"ChildShard"}
464
+ },
448
465
  "Consumer":{
449
466
  "type":"structure",
450
467
  "required":[
@@ -697,7 +714,8 @@
697
714
  "members":{
698
715
  "Records":{"shape":"RecordList"},
699
716
  "NextShardIterator":{"shape":"ShardIterator"},
700
- "MillisBehindLatest":{"shape":"MillisBehindLatest"}
717
+ "MillisBehindLatest":{"shape":"MillisBehindLatest"},
718
+ "ChildShards":{"shape":"ChildShardList"}
701
719
  }
702
720
  },
703
721
  "GetShardIteratorInput":{
@@ -823,7 +841,8 @@
823
841
  "NextToken":{"shape":"NextToken"},
824
842
  "ExclusiveStartShardId":{"shape":"ShardId"},
825
843
  "MaxResults":{"shape":"ListShardsInputLimit"},
826
- "StreamCreationTimestamp":{"shape":"Timestamp"}
844
+ "StreamCreationTimestamp":{"shape":"Timestamp"},
845
+ "ShardFilter":{"shape":"ShardFilter"}
827
846
  }
828
847
  },
829
848
  "ListShardsInputLimit":{
@@ -956,7 +975,6 @@
956
975
  },
957
976
  "PositiveIntegerObject":{
958
977
  "type":"integer",
959
- "max":100000,
960
978
  "min":1
961
979
  },
962
980
  "ProvisionedThroughputExceededException":{
@@ -1108,11 +1126,7 @@
1108
1126
  },
1109
1127
  "exception":true
1110
1128
  },
1111
- "RetentionPeriodHours":{
1112
- "type":"integer",
1113
- "max":168,
1114
- "min":1
1115
- },
1129
+ "RetentionPeriodHours":{"type":"integer"},
1116
1130
  "ScalingType":{
1117
1131
  "type":"string",
1118
1132
  "enum":["UNIFORM_SCALING"]
@@ -1149,12 +1163,36 @@
1149
1163
  "max":1000000,
1150
1164
  "min":0
1151
1165
  },
1166
+ "ShardFilter":{
1167
+ "type":"structure",
1168
+ "required":["Type"],
1169
+ "members":{
1170
+ "Type":{"shape":"ShardFilterType"},
1171
+ "ShardId":{"shape":"ShardId"},
1172
+ "Timestamp":{"shape":"Timestamp"}
1173
+ }
1174
+ },
1175
+ "ShardFilterType":{
1176
+ "type":"string",
1177
+ "enum":[
1178
+ "AFTER_SHARD_ID",
1179
+ "AT_TRIM_HORIZON",
1180
+ "FROM_TRIM_HORIZON",
1181
+ "AT_LATEST",
1182
+ "AT_TIMESTAMP",
1183
+ "FROM_TIMESTAMP"
1184
+ ]
1185
+ },
1152
1186
  "ShardId":{
1153
1187
  "type":"string",
1154
1188
  "max":128,
1155
1189
  "min":1,
1156
1190
  "pattern":"[a-zA-Z0-9_.-]+"
1157
1191
  },
1192
+ "ShardIdList":{
1193
+ "type":"list",
1194
+ "member":{"shape":"ShardId"}
1195
+ },
1158
1196
  "ShardIterator":{
1159
1197
  "type":"string",
1160
1198
  "max":512,
@@ -1226,7 +1264,7 @@
1226
1264
  "type":"string",
1227
1265
  "max":2048,
1228
1266
  "min":1,
1229
- "pattern":"arn:aws.*:kinesis:.*:\\d{12}:stream/.*"
1267
+ "pattern":"arn:aws.*:kinesis:.*:\\d{12}:stream/.+"
1230
1268
  },
1231
1269
  "StreamDescription":{
1232
1270
  "type":"structure",
@@ -1268,7 +1306,7 @@
1268
1306
  "StreamName":{"shape":"StreamName"},
1269
1307
  "StreamARN":{"shape":"StreamARN"},
1270
1308
  "StreamStatus":{"shape":"StreamStatus"},
1271
- "RetentionPeriodHours":{"shape":"PositiveIntegerObject"},
1309
+ "RetentionPeriodHours":{"shape":"RetentionPeriodHours"},
1272
1310
  "StreamCreationTimestamp":{"shape":"Timestamp"},
1273
1311
  "EnhancedMonitoring":{"shape":"EnhancedMonitoringList"},
1274
1312
  "EncryptionType":{"shape":"EncryptionType"},
@@ -1306,7 +1344,8 @@
1306
1344
  "members":{
1307
1345
  "Records":{"shape":"RecordList"},
1308
1346
  "ContinuationSequenceNumber":{"shape":"SequenceNumber"},
1309
- "MillisBehindLatest":{"shape":"MillisBehindLatest"}
1347
+ "MillisBehindLatest":{"shape":"MillisBehindLatest"},
1348
+ "ChildShards":{"shape":"ChildShardList"}
1310
1349
  },
1311
1350
  "event":true
1312
1351
  },
@@ -1369,13 +1408,14 @@
1369
1408
  "TagList":{
1370
1409
  "type":"list",
1371
1410
  "member":{"shape":"Tag"},
1411
+ "max":200,
1372
1412
  "min":0
1373
1413
  },
1374
1414
  "TagMap":{
1375
1415
  "type":"map",
1376
1416
  "key":{"shape":"TagKey"},
1377
1417
  "value":{"shape":"TagValue"},
1378
- "max":50,
1418
+ "max":200,
1379
1419
  "min":1
1380
1420
  },
1381
1421
  "TagValue":{
@@ -386,6 +386,12 @@
386
386
  "min":0,
387
387
  "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
388
388
  },
389
+ "DetailsMap":{
390
+ "type":"structure",
391
+ "members":{
392
+ "ResourceShare":{"shape":"ResourceShareList"}
393
+ }
394
+ },
389
395
  "EntityNotFoundException":{
390
396
  "type":"structure",
391
397
  "members":{
@@ -589,7 +595,8 @@
589
595
  "Principal":{"shape":"DataLakePrincipal"},
590
596
  "Resource":{"shape":"Resource"},
591
597
  "Permissions":{"shape":"PermissionList"},
592
- "PermissionsWithGrantOption":{"shape":"PermissionList"}
598
+ "PermissionsWithGrantOption":{"shape":"PermissionList"},
599
+ "AdditionalDetails":{"shape":"DetailsMap"}
593
600
  }
594
601
  },
595
602
  "PrincipalResourcePermissionsList":{
@@ -609,6 +616,7 @@
609
616
  "members":{
610
617
  }
611
618
  },
619
+ "RAMResourceShareArn":{"type":"string"},
612
620
  "RegisterResourceRequest":{
613
621
  "type":"structure",
614
622
  "required":["ResourceArn"],
@@ -646,6 +654,10 @@
646
654
  "type":"list",
647
655
  "member":{"shape":"ResourceInfo"}
648
656
  },
657
+ "ResourceShareList":{
658
+ "type":"list",
659
+ "member":{"shape":"RAMResourceShareArn"}
660
+ },
649
661
  "RevokePermissionsRequest":{
650
662
  "type":"structure",
651
663
  "required":[
@@ -46,6 +46,24 @@
46
46
  {"shape":"ResourceUnavailableException"}
47
47
  ]
48
48
  },
49
+ "CreateAnalysis":{
50
+ "name":"CreateAnalysis",
51
+ "http":{
52
+ "method":"POST",
53
+ "requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"
54
+ },
55
+ "input":{"shape":"CreateAnalysisRequest"},
56
+ "output":{"shape":"CreateAnalysisResponse"},
57
+ "errors":[
58
+ {"shape":"ResourceNotFoundException"},
59
+ {"shape":"InvalidParameterValueException"},
60
+ {"shape":"ThrottlingException"},
61
+ {"shape":"ResourceExistsException"},
62
+ {"shape":"ConflictException"},
63
+ {"shape":"UnsupportedUserEditionException"},
64
+ {"shape":"InternalFailureException"}
65
+ ]
66
+ },
49
67
  "CreateDashboard":{
50
68
  "name":"CreateDashboard",
51
69
  "http":{
@@ -292,6 +310,23 @@
292
310
  {"shape":"ResourceUnavailableException"}
293
311
  ]
294
312
  },
313
+ "DeleteAnalysis":{
314
+ "name":"DeleteAnalysis",
315
+ "http":{
316
+ "method":"DELETE",
317
+ "requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"
318
+ },
319
+ "input":{"shape":"DeleteAnalysisRequest"},
320
+ "output":{"shape":"DeleteAnalysisResponse"},
321
+ "errors":[
322
+ {"shape":"ThrottlingException"},
323
+ {"shape":"InvalidParameterValueException"},
324
+ {"shape":"ConflictException"},
325
+ {"shape":"ResourceNotFoundException"},
326
+ {"shape":"UnsupportedUserEditionException"},
327
+ {"shape":"InternalFailureException"}
328
+ ]
329
+ },
295
330
  "DeleteDashboard":{
296
331
  "name":"DeleteDashboard",
297
332
  "http":{
@@ -552,6 +587,39 @@
552
587
  {"shape":"ResourceUnavailableException"}
553
588
  ]
554
589
  },
590
+ "DescribeAnalysis":{
591
+ "name":"DescribeAnalysis",
592
+ "http":{
593
+ "method":"GET",
594
+ "requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"
595
+ },
596
+ "input":{"shape":"DescribeAnalysisRequest"},
597
+ "output":{"shape":"DescribeAnalysisResponse"},
598
+ "errors":[
599
+ {"shape":"InvalidParameterValueException"},
600
+ {"shape":"ResourceNotFoundException"},
601
+ {"shape":"AccessDeniedException"},
602
+ {"shape":"ThrottlingException"},
603
+ {"shape":"UnsupportedUserEditionException"},
604
+ {"shape":"InternalFailureException"}
605
+ ]
606
+ },
607
+ "DescribeAnalysisPermissions":{
608
+ "name":"DescribeAnalysisPermissions",
609
+ "http":{
610
+ "method":"GET",
611
+ "requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}/permissions"
612
+ },
613
+ "input":{"shape":"DescribeAnalysisPermissionsRequest"},
614
+ "output":{"shape":"DescribeAnalysisPermissionsResponse"},
615
+ "errors":[
616
+ {"shape":"InvalidParameterValueException"},
617
+ {"shape":"ResourceNotFoundException"},
618
+ {"shape":"ThrottlingException"},
619
+ {"shape":"UnsupportedUserEditionException"},
620
+ {"shape":"InternalFailureException"}
621
+ ]
622
+ },
555
623
  "DescribeDashboard":{
556
624
  "name":"DescribeDashboard",
557
625
  "http":{
@@ -881,6 +949,21 @@
881
949
  {"shape":"InternalFailureException"}
882
950
  ]
883
951
  },
952
+ "ListAnalyses":{
953
+ "name":"ListAnalyses",
954
+ "http":{
955
+ "method":"GET",
956
+ "requestUri":"/accounts/{AwsAccountId}/analyses"
957
+ },
958
+ "input":{"shape":"ListAnalysesRequest"},
959
+ "output":{"shape":"ListAnalysesResponse"},
960
+ "errors":[
961
+ {"shape":"ThrottlingException"},
962
+ {"shape":"InvalidNextTokenException"},
963
+ {"shape":"UnsupportedUserEditionException"},
964
+ {"shape":"InternalFailureException"}
965
+ ]
966
+ },
884
967
  "ListDashboardVersions":{
885
968
  "name":"ListDashboardVersions",
886
969
  "http":{
@@ -1232,6 +1315,40 @@
1232
1315
  {"shape":"ResourceUnavailableException"}
1233
1316
  ]
1234
1317
  },
1318
+ "RestoreAnalysis":{
1319
+ "name":"RestoreAnalysis",
1320
+ "http":{
1321
+ "method":"POST",
1322
+ "requestUri":"/accounts/{AwsAccountId}/restore/analyses/{AnalysisId}"
1323
+ },
1324
+ "input":{"shape":"RestoreAnalysisRequest"},
1325
+ "output":{"shape":"RestoreAnalysisResponse"},
1326
+ "errors":[
1327
+ {"shape":"ThrottlingException"},
1328
+ {"shape":"InvalidParameterValueException"},
1329
+ {"shape":"ConflictException"},
1330
+ {"shape":"ResourceNotFoundException"},
1331
+ {"shape":"UnsupportedUserEditionException"},
1332
+ {"shape":"InternalFailureException"}
1333
+ ]
1334
+ },
1335
+ "SearchAnalyses":{
1336
+ "name":"SearchAnalyses",
1337
+ "http":{
1338
+ "method":"POST",
1339
+ "requestUri":"/accounts/{AwsAccountId}/search/analyses"
1340
+ },
1341
+ "input":{"shape":"SearchAnalysesRequest"},
1342
+ "output":{"shape":"SearchAnalysesResponse"},
1343
+ "errors":[
1344
+ {"shape":"ThrottlingException"},
1345
+ {"shape":"ResourceNotFoundException"},
1346
+ {"shape":"InvalidParameterValueException"},
1347
+ {"shape":"UnsupportedUserEditionException"},
1348
+ {"shape":"InvalidNextTokenException"},
1349
+ {"shape":"InternalFailureException"}
1350
+ ]
1351
+ },
1235
1352
  "SearchDashboards":{
1236
1353
  "name":"SearchDashboards",
1237
1354
  "http":{
@@ -1316,6 +1433,41 @@
1316
1433
  {"shape":"ResourceUnavailableException"}
1317
1434
  ]
1318
1435
  },
1436
+ "UpdateAnalysis":{
1437
+ "name":"UpdateAnalysis",
1438
+ "http":{
1439
+ "method":"PUT",
1440
+ "requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"
1441
+ },
1442
+ "input":{"shape":"UpdateAnalysisRequest"},
1443
+ "output":{"shape":"UpdateAnalysisResponse"},
1444
+ "errors":[
1445
+ {"shape":"ResourceNotFoundException"},
1446
+ {"shape":"InvalidParameterValueException"},
1447
+ {"shape":"ThrottlingException"},
1448
+ {"shape":"ResourceExistsException"},
1449
+ {"shape":"ConflictException"},
1450
+ {"shape":"UnsupportedUserEditionException"},
1451
+ {"shape":"InternalFailureException"}
1452
+ ]
1453
+ },
1454
+ "UpdateAnalysisPermissions":{
1455
+ "name":"UpdateAnalysisPermissions",
1456
+ "http":{
1457
+ "method":"PUT",
1458
+ "requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}/permissions"
1459
+ },
1460
+ "input":{"shape":"UpdateAnalysisPermissionsRequest"},
1461
+ "output":{"shape":"UpdateAnalysisPermissionsResponse"},
1462
+ "errors":[
1463
+ {"shape":"ThrottlingException"},
1464
+ {"shape":"InvalidParameterValueException"},
1465
+ {"shape":"ResourceNotFoundException"},
1466
+ {"shape":"UnsupportedUserEditionException"},
1467
+ {"shape":"ConflictException"},
1468
+ {"shape":"InternalFailureException"}
1469
+ ]
1470
+ },
1319
1471
  "UpdateDashboard":{
1320
1472
  "name":"UpdateDashboard",
1321
1473
  "http":{
@@ -1661,6 +1813,103 @@
1661
1813
  "Domain":{"shape":"Domain"}
1662
1814
  }
1663
1815
  },
1816
+ "Analysis":{
1817
+ "type":"structure",
1818
+ "members":{
1819
+ "AnalysisId":{"shape":"RestrictiveResourceId"},
1820
+ "Arn":{"shape":"Arn"},
1821
+ "Name":{"shape":"AnalysisName"},
1822
+ "Status":{"shape":"ResourceStatus"},
1823
+ "Errors":{"shape":"AnalysisErrorList"},
1824
+ "DataSetArns":{"shape":"DataSetArnsList"},
1825
+ "ThemeArn":{"shape":"Arn"},
1826
+ "CreatedTime":{"shape":"Timestamp"},
1827
+ "LastUpdatedTime":{"shape":"Timestamp"}
1828
+ }
1829
+ },
1830
+ "AnalysisError":{
1831
+ "type":"structure",
1832
+ "members":{
1833
+ "Type":{"shape":"AnalysisErrorType"},
1834
+ "Message":{"shape":"NonEmptyString"}
1835
+ }
1836
+ },
1837
+ "AnalysisErrorList":{
1838
+ "type":"list",
1839
+ "member":{"shape":"AnalysisError"},
1840
+ "min":1
1841
+ },
1842
+ "AnalysisErrorType":{
1843
+ "type":"string",
1844
+ "enum":[
1845
+ "ACCESS_DENIED",
1846
+ "SOURCE_NOT_FOUND",
1847
+ "DATA_SET_NOT_FOUND",
1848
+ "INTERNAL_FAILURE",
1849
+ "PARAMETER_VALUE_INCOMPATIBLE",
1850
+ "PARAMETER_TYPE_INVALID",
1851
+ "PARAMETER_NOT_FOUND",
1852
+ "COLUMN_TYPE_MISMATCH",
1853
+ "COLUMN_GEOGRAPHIC_ROLE_MISMATCH",
1854
+ "COLUMN_REPLACEMENT_MISSING"
1855
+ ]
1856
+ },
1857
+ "AnalysisFilterAttribute":{
1858
+ "type":"string",
1859
+ "enum":["QUICKSIGHT_USER"]
1860
+ },
1861
+ "AnalysisName":{
1862
+ "type":"string",
1863
+ "max":2048,
1864
+ "min":1,
1865
+ "pattern":"[\\u0020-\\u00FF]+"
1866
+ },
1867
+ "AnalysisSearchFilter":{
1868
+ "type":"structure",
1869
+ "members":{
1870
+ "Operator":{"shape":"FilterOperator"},
1871
+ "Name":{"shape":"AnalysisFilterAttribute"},
1872
+ "Value":{"shape":"String"}
1873
+ }
1874
+ },
1875
+ "AnalysisSearchFilterList":{
1876
+ "type":"list",
1877
+ "member":{"shape":"AnalysisSearchFilter"},
1878
+ "max":1
1879
+ },
1880
+ "AnalysisSourceEntity":{
1881
+ "type":"structure",
1882
+ "members":{
1883
+ "SourceTemplate":{"shape":"AnalysisSourceTemplate"}
1884
+ }
1885
+ },
1886
+ "AnalysisSourceTemplate":{
1887
+ "type":"structure",
1888
+ "required":[
1889
+ "DataSetReferences",
1890
+ "Arn"
1891
+ ],
1892
+ "members":{
1893
+ "DataSetReferences":{"shape":"DataSetReferenceList"},
1894
+ "Arn":{"shape":"Arn"}
1895
+ }
1896
+ },
1897
+ "AnalysisSummary":{
1898
+ "type":"structure",
1899
+ "members":{
1900
+ "Arn":{"shape":"Arn"},
1901
+ "AnalysisId":{"shape":"RestrictiveResourceId"},
1902
+ "Name":{"shape":"AnalysisName"},
1903
+ "Status":{"shape":"ResourceStatus"},
1904
+ "CreatedTime":{"shape":"Timestamp"},
1905
+ "LastUpdatedTime":{"shape":"Timestamp"}
1906
+ }
1907
+ },
1908
+ "AnalysisSummaryList":{
1909
+ "type":"list",
1910
+ "member":{"shape":"AnalysisSummary"},
1911
+ "max":100
1912
+ },
1664
1913
  "Arn":{"type":"string"},
1665
1914
  "AssignmentStatus":{
1666
1915
  "type":"string",
@@ -1956,6 +2205,46 @@
1956
2205
  }
1957
2206
  }
1958
2207
  },
2208
+ "CreateAnalysisRequest":{
2209
+ "type":"structure",
2210
+ "required":[
2211
+ "AwsAccountId",
2212
+ "AnalysisId",
2213
+ "Name",
2214
+ "SourceEntity"
2215
+ ],
2216
+ "members":{
2217
+ "AwsAccountId":{
2218
+ "shape":"AwsAccountId",
2219
+ "location":"uri",
2220
+ "locationName":"AwsAccountId"
2221
+ },
2222
+ "AnalysisId":{
2223
+ "shape":"RestrictiveResourceId",
2224
+ "location":"uri",
2225
+ "locationName":"AnalysisId"
2226
+ },
2227
+ "Name":{"shape":"AnalysisName"},
2228
+ "Parameters":{"shape":"Parameters"},
2229
+ "Permissions":{"shape":"ResourcePermissionList"},
2230
+ "SourceEntity":{"shape":"AnalysisSourceEntity"},
2231
+ "ThemeArn":{"shape":"Arn"},
2232
+ "Tags":{"shape":"TagList"}
2233
+ }
2234
+ },
2235
+ "CreateAnalysisResponse":{
2236
+ "type":"structure",
2237
+ "members":{
2238
+ "Arn":{"shape":"Arn"},
2239
+ "AnalysisId":{"shape":"RestrictiveResourceId"},
2240
+ "CreationStatus":{"shape":"ResourceStatus"},
2241
+ "Status":{
2242
+ "shape":"StatusCode",
2243
+ "location":"statusCode"
2244
+ },
2245
+ "RequestId":{"shape":"String"}
2246
+ }
2247
+ },
1959
2248
  "CreateColumnsOperation":{
1960
2249
  "type":"structure",
1961
2250
  "required":["Columns"],
@@ -2587,7 +2876,8 @@
2587
2876
  "Arn":{"shape":"Arn"},
2588
2877
  "SourceEntityArn":{"shape":"Arn"},
2589
2878
  "DataSetArns":{"shape":"DataSetArnsList"},
2590
- "Description":{"shape":"VersionDescription"}
2879
+ "Description":{"shape":"VersionDescription"},
2880
+ "ThemeArn":{"shape":"Arn"}
2591
2881
  }
2592
2882
  },
2593
2883
  "DashboardVersionSummary":{
@@ -2867,6 +3157,48 @@
2867
3157
  }
2868
3158
  }
2869
3159
  },
3160
+ "DeleteAnalysisRequest":{
3161
+ "type":"structure",
3162
+ "required":[
3163
+ "AwsAccountId",
3164
+ "AnalysisId"
3165
+ ],
3166
+ "members":{
3167
+ "AwsAccountId":{
3168
+ "shape":"AwsAccountId",
3169
+ "location":"uri",
3170
+ "locationName":"AwsAccountId"
3171
+ },
3172
+ "AnalysisId":{
3173
+ "shape":"RestrictiveResourceId",
3174
+ "location":"uri",
3175
+ "locationName":"AnalysisId"
3176
+ },
3177
+ "RecoveryWindowInDays":{
3178
+ "shape":"RecoveryWindowInDays",
3179
+ "location":"querystring",
3180
+ "locationName":"recovery-window-in-days"
3181
+ },
3182
+ "ForceDeleteWithoutRecovery":{
3183
+ "shape":"boolean",
3184
+ "location":"querystring",
3185
+ "locationName":"force-delete-without-recovery"
3186
+ }
3187
+ }
3188
+ },
3189
+ "DeleteAnalysisResponse":{
3190
+ "type":"structure",
3191
+ "members":{
3192
+ "Status":{
3193
+ "shape":"StatusCode",
3194
+ "location":"statusCode"
3195
+ },
3196
+ "Arn":{"shape":"Arn"},
3197
+ "AnalysisId":{"shape":"RestrictiveResourceId"},
3198
+ "DeletionTime":{"shape":"Timestamp"},
3199
+ "RequestId":{"shape":"String"}
3200
+ }
3201
+ },
2870
3202
  "DeleteDashboardRequest":{
2871
3203
  "type":"structure",
2872
3204
  "required":[
@@ -3385,6 +3717,68 @@
3385
3717
  }
3386
3718
  }
3387
3719
  },
3720
+ "DescribeAnalysisPermissionsRequest":{
3721
+ "type":"structure",
3722
+ "required":[
3723
+ "AwsAccountId",
3724
+ "AnalysisId"
3725
+ ],
3726
+ "members":{
3727
+ "AwsAccountId":{
3728
+ "shape":"AwsAccountId",
3729
+ "location":"uri",
3730
+ "locationName":"AwsAccountId"
3731
+ },
3732
+ "AnalysisId":{
3733
+ "shape":"RestrictiveResourceId",
3734
+ "location":"uri",
3735
+ "locationName":"AnalysisId"
3736
+ }
3737
+ }
3738
+ },
3739
+ "DescribeAnalysisPermissionsResponse":{
3740
+ "type":"structure",
3741
+ "members":{
3742
+ "AnalysisId":{"shape":"RestrictiveResourceId"},
3743
+ "AnalysisArn":{"shape":"Arn"},
3744
+ "Permissions":{"shape":"ResourcePermissionList"},
3745
+ "Status":{
3746
+ "shape":"StatusCode",
3747
+ "location":"statusCode"
3748
+ },
3749
+ "RequestId":{"shape":"String"}
3750
+ }
3751
+ },
3752
+ "DescribeAnalysisRequest":{
3753
+ "type":"structure",
3754
+ "required":[
3755
+ "AwsAccountId",
3756
+ "AnalysisId"
3757
+ ],
3758
+ "members":{
3759
+ "AwsAccountId":{
3760
+ "shape":"AwsAccountId",
3761
+ "location":"uri",
3762
+ "locationName":"AwsAccountId"
3763
+ },
3764
+ "AnalysisId":{
3765
+ "shape":"RestrictiveResourceId",
3766
+ "location":"uri",
3767
+ "locationName":"AnalysisId"
3768
+ }
3769
+ }
3770
+ },
3771
+ "DescribeAnalysisResponse":{
3772
+ "type":"structure",
3773
+ "members":{
3774
+ "Analysis":{"shape":"Analysis"},
3775
+ "Status":{
3776
+ "shape":"StatusCode",
3777
+ "location":"statusCode"
3778
+ },
3779
+ "RequestId":{"shape":"String"}
3780
+ }
3781
+ },
3388
3782
  "DescribeDashboardPermissionsRequest":{
3389
3783
  "type":"structure",
3390
3784
  "required":[
@@ -4534,6 +4928,40 @@
4534
4928
  "error":{"httpStatusCode":409},
4535
4929
  "exception":true
4536
4930
  },
4931
+ "ListAnalysesRequest":{
4932
+ "type":"structure",
4933
+ "required":["AwsAccountId"],
4934
+ "members":{
4935
+ "AwsAccountId":{
4936
+ "shape":"AwsAccountId",
4937
+ "location":"uri",
4938
+ "locationName":"AwsAccountId"
4939
+ },
4940
+ "NextToken":{
4941
+ "shape":"String",
4942
+ "location":"querystring",
4943
+ "locationName":"next-token"
4944
+ },
4945
+ "MaxResults":{
4946
+ "shape":"MaxResults",
4947
+ "box":true,
4948
+ "location":"querystring",
4949
+ "locationName":"max-results"
4950
+ }
4951
+ }
4952
+ },
4953
+ "ListAnalysesResponse":{
4954
+ "type":"structure",
4955
+ "members":{
4956
+ "AnalysisSummaryList":{"shape":"AnalysisSummaryList"},
4957
+ "NextToken":{"shape":"String"},
4958
+ "Status":{
4959
+ "shape":"StatusCode",
4960
+ "location":"statusCode"
4961
+ },
4962
+ "RequestId":{"shape":"String"}
4963
+ }
4964
+ },
4537
4965
  "ListDashboardVersionsRequest":{
4538
4966
  "type":"structure",
4539
4967
  "required":[
@@ -5583,6 +6011,11 @@
5583
6011
  "Database":{"shape":"Database"}
5584
6012
  }
5585
6013
  },
6014
+ "RecoveryWindowInDays":{
6015
+ "type":"long",
6016
+ "max":30,
6017
+ "min":7
6018
+ },
5586
6019
  "RedshiftParameters":{
5587
6020
  "type":"structure",
5588
6021
  "required":["Database"],
@@ -5719,7 +6152,8 @@
5719
6152
  "CREATION_FAILED",
5720
6153
  "UPDATE_IN_PROGRESS",
5721
6154
  "UPDATE_SUCCESSFUL",
5722
- "UPDATE_FAILED"
6155
+ "UPDATE_FAILED",
6156
+ "DELETED"
5723
6157
  ]
5724
6158
  },
5725
6159
  "ResourceUnavailableException":{
@@ -5732,6 +6166,37 @@
5732
6166
  "error":{"httpStatusCode":503},
5733
6167
  "exception":true
5734
6168
  },
6169
+ "RestoreAnalysisRequest":{
6170
+ "type":"structure",
6171
+ "required":[
6172
+ "AwsAccountId",
6173
+ "AnalysisId"
6174
+ ],
6175
+ "members":{
6176
+ "AwsAccountId":{
6177
+ "shape":"AwsAccountId",
6178
+ "location":"uri",
6179
+ "locationName":"AwsAccountId"
6180
+ },
6181
+ "AnalysisId":{
6182
+ "shape":"RestrictiveResourceId",
6183
+ "location":"uri",
6184
+ "locationName":"AnalysisId"
6185
+ }
6186
+ }
6187
+ },
6188
+ "RestoreAnalysisResponse":{
6189
+ "type":"structure",
6190
+ "members":{
6191
+ "Status":{
6192
+ "shape":"StatusCode",
6193
+ "location":"statusCode"
6194
+ },
6195
+ "Arn":{"shape":"Arn"},
6196
+ "AnalysisId":{"shape":"RestrictiveResourceId"},
6197
+ "RequestId":{"shape":"String"}
6198
+ }
6199
+ },
5735
6200
  "RestrictiveResourceId":{
5736
6201
  "type":"string",
5737
6202
  "max":2048,
@@ -5811,6 +6276,38 @@
5811
6276
  "InputColumns":{"shape":"InputColumnList"}
5812
6277
  }
5813
6278
  },
6279
+ "SearchAnalysesRequest":{
6280
+ "type":"structure",
6281
+ "required":[
6282
+ "AwsAccountId",
6283
+ "Filters"
6284
+ ],
6285
+ "members":{
6286
+ "AwsAccountId":{
6287
+ "shape":"AwsAccountId",
6288
+ "location":"uri",
6289
+ "locationName":"AwsAccountId"
6290
+ },
6291
+ "Filters":{"shape":"AnalysisSearchFilterList"},
6292
+ "NextToken":{"shape":"String"},
6293
+ "MaxResults":{
6294
+ "shape":"MaxResults",
6295
+ "box":true
6296
+ }
6297
+ }
6298
+ },
6299
+ "SearchAnalysesResponse":{
6300
+ "type":"structure",
6301
+ "members":{
6302
+ "AnalysisSummaryList":{"shape":"AnalysisSummaryList"},
6303
+ "NextToken":{"shape":"String"},
6304
+ "Status":{
6305
+ "shape":"StatusCode",
6306
+ "location":"statusCode"
6307
+ },
6308
+ "RequestId":{"shape":"String"}
6309
+ }
6310
+ },
5814
6311
  "SearchDashboardsRequest":{
5815
6312
  "type":"structure",
5816
6313
  "required":[
@@ -5825,7 +6322,10 @@
5825
6322
  },
5826
6323
  "Filters":{"shape":"DashboardSearchFilterList"},
5827
6324
  "NextToken":{"shape":"String"},
5828
- "MaxResults":{"shape":"MaxResults"}
6325
+ "MaxResults":{
6326
+ "shape":"MaxResults",
6327
+ "box":true
6328
+ }
5829
6329
  }
5830
6330
  },
5831
6331
  "SearchDashboardsResponse":{
@@ -6059,7 +6559,8 @@
6059
6559
  "enum":[
6060
6560
  "SOURCE_NOT_FOUND",
6061
6561
  "DATA_SET_NOT_FOUND",
6062
- "INTERNAL_FAILURE"
6562
+ "INTERNAL_FAILURE",
6563
+ "ACCESS_DENIED"
6063
6564
  ]
6064
6565
  },
6065
6566
  "TemplateName":{
@@ -6118,7 +6619,8 @@
6118
6619
  "Status":{"shape":"ResourceStatus"},
6119
6620
  "DataSetConfigurations":{"shape":"DataSetConfigurationList"},
6120
6621
  "Description":{"shape":"VersionDescription"},
6121
- "SourceEntityArn":{"shape":"Arn"}
6622
+ "SourceEntityArn":{"shape":"Arn"},
6623
+ "ThemeArn":{"shape":"Arn"}
6122
6624
  }
6123
6625
  },
6124
6626
  "TemplateVersionSummary":{
@@ -6439,6 +6941,78 @@
6439
6941
  }
6440
6942
  }
6441
6943
  },
6944
+ "UpdateAnalysisPermissionsRequest":{
6945
+ "type":"structure",
6946
+ "required":[
6947
+ "AwsAccountId",
6948
+ "AnalysisId"
6949
+ ],
6950
+ "members":{
6951
+ "AwsAccountId":{
6952
+ "shape":"AwsAccountId",
6953
+ "location":"uri",
6954
+ "locationName":"AwsAccountId"
6955
+ },
6956
+ "AnalysisId":{
6957
+ "shape":"RestrictiveResourceId",
6958
+ "location":"uri",
6959
+ "locationName":"AnalysisId"
6960
+ },
6961
+ "GrantPermissions":{"shape":"UpdateResourcePermissionList"},
6962
+ "RevokePermissions":{"shape":"UpdateResourcePermissionList"}
6963
+ }
6964
+ },
6965
+ "UpdateAnalysisPermissionsResponse":{
6966
+ "type":"structure",
6967
+ "members":{
6968
+ "AnalysisArn":{"shape":"Arn"},
6969
+ "AnalysisId":{"shape":"RestrictiveResourceId"},
6970
+ "Permissions":{"shape":"ResourcePermissionList"},
6971
+ "RequestId":{"shape":"String"},
6972
+ "Status":{
6973
+ "shape":"StatusCode",
6974
+ "location":"statusCode"
6975
+ }
6976
+ }
6977
+ },
6978
+ "UpdateAnalysisRequest":{
6979
+ "type":"structure",
6980
+ "required":[
6981
+ "AwsAccountId",
6982
+ "AnalysisId",
6983
+ "Name",
6984
+ "SourceEntity"
6985
+ ],
6986
+ "members":{
6987
+ "AwsAccountId":{
6988
+ "shape":"AwsAccountId",
6989
+ "location":"uri",
6990
+ "locationName":"AwsAccountId"
6991
+ },
6992
+ "AnalysisId":{
6993
+ "shape":"RestrictiveResourceId",
6994
+ "location":"uri",
6995
+ "locationName":"AnalysisId"
6996
+ },
6997
+ "Name":{"shape":"AnalysisName"},
6998
+ "Parameters":{"shape":"Parameters"},
6999
+ "SourceEntity":{"shape":"AnalysisSourceEntity"},
7000
+ "ThemeArn":{"shape":"Arn"}
7001
+ }
7002
+ },
7003
+ "UpdateAnalysisResponse":{
7004
+ "type":"structure",
7005
+ "members":{
7006
+ "Arn":{"shape":"Arn"},
7007
+ "AnalysisId":{"shape":"RestrictiveResourceId"},
7008
+ "UpdateStatus":{"shape":"ResourceStatus"},
7009
+ "Status":{
7010
+ "shape":"StatusCode",
7011
+ "location":"statusCode"
7012
+ },
7013
+ "RequestId":{"shape":"String"}
7014
+ }
7015
+ },
6442
7016
  "UpdateDashboardPermissionsRequest":{
6443
7017
  "type":"structure",
6444
7018
  "required":[