aws-sdk 2.566.0 → 2.570.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -1
- package/README.md +1 -1
- package/apis/ce-2017-10-25.min.json +110 -71
- package/apis/cloudformation-2010-05-15.min.json +68 -29
- package/apis/cloudformation-2010-05-15.waiters2.json +56 -1
- package/apis/codepipeline-2015-07-09.min.json +58 -40
- package/apis/cognito-identity-2014-06-30.min.json +50 -42
- package/apis/dynamodb-2012-08-10.min.json +66 -40
- package/apis/marketplace-catalog-2018-09-17.examples.json +5 -0
- package/apis/marketplace-catalog-2018-09-17.min.json +305 -0
- package/apis/marketplace-catalog-2018-09-17.paginators.json +14 -0
- package/apis/metadata.json +11 -0
- package/apis/sso-2019-06-10.examples.json +5 -0
- package/apis/sso-2019-06-10.min.json +190 -0
- package/apis/sso-2019-06-10.paginators.json +16 -0
- package/apis/sso-oidc-2019-06-10.examples.json +5 -0
- package/apis/sso-oidc-2019-06-10.min.json +131 -0
- package/apis/sso-oidc-2019-06-10.paginators.json +4 -0
- package/clients/all.d.ts +3 -0
- package/clients/all.js +4 -1
- package/clients/cloudformation.d.ts +65 -15
- package/clients/codepipeline.d.ts +26 -0
- package/clients/cognitoidentity.d.ts +14 -5
- package/clients/comprehend.d.ts +2 -2
- package/clients/costexplorer.d.ts +66 -18
- package/clients/dynamodb.d.ts +85 -53
- package/clients/ecr.d.ts +4 -4
- package/clients/elbv2.d.ts +14 -14
- package/clients/marketplacecatalog.d.ts +421 -0
- package/clients/marketplacecatalog.js +18 -0
- package/clients/sso.d.ts +197 -0
- package/clients/sso.js +18 -0
- package/clients/ssooidc.d.ts +210 -0
- package/clients/ssooidc.js +18 -0
- package/clients/transcribeservice.d.ts +8 -5
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +239 -76
- package/dist/aws-sdk.js +423 -227
- package/dist/aws-sdk.min.js +69 -69
- package/dist/xml2js.js +117 -65
- package/lib/config_service_placeholders.d.ts +6 -0
- package/lib/core.js +1 -1
- package/lib/dynamodb/document_client.d.ts +81 -49
- package/package.json +1 -1
|
@@ -102,6 +102,12 @@
|
|
|
102
102
|
"matcher": "pathAny",
|
|
103
103
|
"state": "failure"
|
|
104
104
|
},
|
|
105
|
+
{
|
|
106
|
+
"argument": "Stacks[].StackStatus",
|
|
107
|
+
"expected": "UPDATE_ROLLBACK_IN_PROGRESS",
|
|
108
|
+
"matcher": "pathAny",
|
|
109
|
+
"state": "failure"
|
|
110
|
+
},
|
|
105
111
|
{
|
|
106
112
|
"argument": "Stacks[].StackStatus",
|
|
107
113
|
"expected": "UPDATE_ROLLBACK_FAILED",
|
|
@@ -110,7 +116,7 @@
|
|
|
110
116
|
},
|
|
111
117
|
{
|
|
112
118
|
"argument": "Stacks[].StackStatus",
|
|
113
|
-
"expected": "
|
|
119
|
+
"expected": "UPDATE_ROLLBACK_COMPLETE",
|
|
114
120
|
"matcher": "pathAny",
|
|
115
121
|
"state": "failure"
|
|
116
122
|
}
|
|
@@ -153,6 +159,55 @@
|
|
|
153
159
|
}
|
|
154
160
|
]
|
|
155
161
|
},
|
|
162
|
+
"StackImportComplete": {
|
|
163
|
+
"delay": 30,
|
|
164
|
+
"maxAttempts": 120,
|
|
165
|
+
"operation": "DescribeStacks",
|
|
166
|
+
"description": "Wait until stack status is IMPORT_COMPLETE.",
|
|
167
|
+
"acceptors": [
|
|
168
|
+
{
|
|
169
|
+
"argument": "Stacks[].StackStatus",
|
|
170
|
+
"expected": "IMPORT_COMPLETE",
|
|
171
|
+
"matcher": "pathAll",
|
|
172
|
+
"state": "success"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"expected": "ROLLBACK_COMPLETE",
|
|
176
|
+
"matcher": "pathAny",
|
|
177
|
+
"state": "failure",
|
|
178
|
+
"argument": "Stacks[].StackStatus"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"expected": "ROLLBACK_FAILED",
|
|
182
|
+
"matcher": "pathAny",
|
|
183
|
+
"state": "failure",
|
|
184
|
+
"argument": "Stacks[].StackStatus"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"argument": "Stacks[].StackStatus",
|
|
188
|
+
"expected": "IMPORT_ROLLBACK_IN_PROGRESS",
|
|
189
|
+
"matcher": "pathAny",
|
|
190
|
+
"state": "failure"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"argument": "Stacks[].StackStatus",
|
|
194
|
+
"expected": "IMPORT_ROLLBACK_FAILED",
|
|
195
|
+
"matcher": "pathAny",
|
|
196
|
+
"state": "failure"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"expected": "IMPORT_ROLLBACK_COMPLETE",
|
|
200
|
+
"matcher": "pathAny",
|
|
201
|
+
"state": "failure",
|
|
202
|
+
"argument": "Stacks[].StackStatus"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"expected": "ValidationError",
|
|
206
|
+
"matcher": "error",
|
|
207
|
+
"state": "failure"
|
|
208
|
+
}
|
|
209
|
+
]
|
|
210
|
+
},
|
|
156
211
|
"ChangeSetCreateComplete": {
|
|
157
212
|
"delay": 30,
|
|
158
213
|
"operation": "DescribeChangeSet",
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
"members": {
|
|
230
230
|
"id": {},
|
|
231
231
|
"data": {
|
|
232
|
-
"shape": "
|
|
232
|
+
"shape": "S29"
|
|
233
233
|
},
|
|
234
234
|
"accountId": {}
|
|
235
235
|
}
|
|
@@ -359,7 +359,7 @@
|
|
|
359
359
|
"members": {
|
|
360
360
|
"actionName": {},
|
|
361
361
|
"currentRevision": {
|
|
362
|
-
"shape": "
|
|
362
|
+
"shape": "S3h"
|
|
363
363
|
},
|
|
364
364
|
"latestExecution": {
|
|
365
365
|
"type": "structure",
|
|
@@ -439,19 +439,19 @@
|
|
|
439
439
|
"shape": "Sw"
|
|
440
440
|
},
|
|
441
441
|
"actionConfiguration": {
|
|
442
|
-
"shape": "
|
|
442
|
+
"shape": "S2a"
|
|
443
443
|
},
|
|
444
444
|
"pipelineContext": {
|
|
445
|
-
"shape": "
|
|
445
|
+
"shape": "S2b"
|
|
446
446
|
},
|
|
447
447
|
"inputArtifacts": {
|
|
448
|
-
"shape": "
|
|
448
|
+
"shape": "S2h"
|
|
449
449
|
},
|
|
450
450
|
"outputArtifacts": {
|
|
451
|
-
"shape": "
|
|
451
|
+
"shape": "S2h"
|
|
452
452
|
},
|
|
453
453
|
"artifactCredentials": {
|
|
454
|
-
"shape": "
|
|
454
|
+
"shape": "S2p"
|
|
455
455
|
},
|
|
456
456
|
"continuationToken": {},
|
|
457
457
|
"encryptionKey": {
|
|
@@ -516,18 +516,24 @@
|
|
|
516
516
|
"configuration": {
|
|
517
517
|
"shape": "S1l"
|
|
518
518
|
},
|
|
519
|
+
"resolvedConfiguration": {
|
|
520
|
+
"type": "map",
|
|
521
|
+
"key": {},
|
|
522
|
+
"value": {}
|
|
523
|
+
},
|
|
519
524
|
"roleArn": {},
|
|
520
525
|
"region": {},
|
|
521
526
|
"inputArtifacts": {
|
|
522
|
-
"shape": "
|
|
523
|
-
}
|
|
527
|
+
"shape": "S48"
|
|
528
|
+
},
|
|
529
|
+
"namespace": {}
|
|
524
530
|
}
|
|
525
531
|
},
|
|
526
532
|
"output": {
|
|
527
533
|
"type": "structure",
|
|
528
534
|
"members": {
|
|
529
535
|
"outputArtifacts": {
|
|
530
|
-
"shape": "
|
|
536
|
+
"shape": "S48"
|
|
531
537
|
},
|
|
532
538
|
"executionResult": {
|
|
533
539
|
"type": "structure",
|
|
@@ -536,6 +542,9 @@
|
|
|
536
542
|
"externalExecutionSummary": {},
|
|
537
543
|
"externalExecutionUrl": {}
|
|
538
544
|
}
|
|
545
|
+
},
|
|
546
|
+
"outputVariables": {
|
|
547
|
+
"shape": "S4h"
|
|
539
548
|
}
|
|
540
549
|
}
|
|
541
550
|
}
|
|
@@ -701,7 +710,7 @@
|
|
|
701
710
|
"webhooks": {
|
|
702
711
|
"type": "list",
|
|
703
712
|
"member": {
|
|
704
|
-
"shape": "
|
|
713
|
+
"shape": "S56"
|
|
705
714
|
}
|
|
706
715
|
},
|
|
707
716
|
"NextToken": {}
|
|
@@ -738,7 +747,7 @@
|
|
|
738
747
|
"members": {
|
|
739
748
|
"id": {},
|
|
740
749
|
"data": {
|
|
741
|
-
"shape": "
|
|
750
|
+
"shape": "S29"
|
|
742
751
|
},
|
|
743
752
|
"nonce": {},
|
|
744
753
|
"accountId": {}
|
|
@@ -793,7 +802,7 @@
|
|
|
793
802
|
"stageName": {},
|
|
794
803
|
"actionName": {},
|
|
795
804
|
"actionRevision": {
|
|
796
|
-
"shape": "
|
|
805
|
+
"shape": "S3h"
|
|
797
806
|
}
|
|
798
807
|
}
|
|
799
808
|
},
|
|
@@ -854,7 +863,7 @@
|
|
|
854
863
|
"members": {
|
|
855
864
|
"jobId": {},
|
|
856
865
|
"failureDetails": {
|
|
857
|
-
"shape": "
|
|
866
|
+
"shape": "S66"
|
|
858
867
|
}
|
|
859
868
|
}
|
|
860
869
|
}
|
|
@@ -868,11 +877,14 @@
|
|
|
868
877
|
"members": {
|
|
869
878
|
"jobId": {},
|
|
870
879
|
"currentRevision": {
|
|
871
|
-
"shape": "
|
|
880
|
+
"shape": "S69"
|
|
872
881
|
},
|
|
873
882
|
"continuationToken": {},
|
|
874
883
|
"executionDetails": {
|
|
875
|
-
"shape": "
|
|
884
|
+
"shape": "S6b"
|
|
885
|
+
},
|
|
886
|
+
"outputVariables": {
|
|
887
|
+
"shape": "S4h"
|
|
876
888
|
}
|
|
877
889
|
}
|
|
878
890
|
}
|
|
@@ -889,7 +901,7 @@
|
|
|
889
901
|
"jobId": {},
|
|
890
902
|
"clientToken": {},
|
|
891
903
|
"failureDetails": {
|
|
892
|
-
"shape": "
|
|
904
|
+
"shape": "S66"
|
|
893
905
|
}
|
|
894
906
|
}
|
|
895
907
|
}
|
|
@@ -905,11 +917,11 @@
|
|
|
905
917
|
"jobId": {},
|
|
906
918
|
"clientToken": {},
|
|
907
919
|
"currentRevision": {
|
|
908
|
-
"shape": "
|
|
920
|
+
"shape": "S69"
|
|
909
921
|
},
|
|
910
922
|
"continuationToken": {},
|
|
911
923
|
"executionDetails": {
|
|
912
|
-
"shape": "
|
|
924
|
+
"shape": "S6b"
|
|
913
925
|
}
|
|
914
926
|
}
|
|
915
927
|
}
|
|
@@ -922,7 +934,7 @@
|
|
|
922
934
|
],
|
|
923
935
|
"members": {
|
|
924
936
|
"webhook": {
|
|
925
|
-
"shape": "
|
|
937
|
+
"shape": "S57"
|
|
926
938
|
},
|
|
927
939
|
"tags": {
|
|
928
940
|
"shape": "Sq"
|
|
@@ -933,7 +945,7 @@
|
|
|
933
945
|
"type": "structure",
|
|
934
946
|
"members": {
|
|
935
947
|
"webhook": {
|
|
936
|
-
"shape": "
|
|
948
|
+
"shape": "S56"
|
|
937
949
|
}
|
|
938
950
|
}
|
|
939
951
|
}
|
|
@@ -1250,7 +1262,8 @@
|
|
|
1250
1262
|
}
|
|
1251
1263
|
},
|
|
1252
1264
|
"roleArn": {},
|
|
1253
|
-
"region": {}
|
|
1265
|
+
"region": {},
|
|
1266
|
+
"namespace": {}
|
|
1254
1267
|
}
|
|
1255
1268
|
}
|
|
1256
1269
|
}
|
|
@@ -1292,26 +1305,26 @@
|
|
|
1292
1305
|
"key": {},
|
|
1293
1306
|
"value": {}
|
|
1294
1307
|
},
|
|
1295
|
-
"
|
|
1308
|
+
"S29": {
|
|
1296
1309
|
"type": "structure",
|
|
1297
1310
|
"members": {
|
|
1298
1311
|
"actionTypeId": {
|
|
1299
1312
|
"shape": "Sw"
|
|
1300
1313
|
},
|
|
1301
1314
|
"actionConfiguration": {
|
|
1302
|
-
"shape": "
|
|
1315
|
+
"shape": "S2a"
|
|
1303
1316
|
},
|
|
1304
1317
|
"pipelineContext": {
|
|
1305
|
-
"shape": "
|
|
1318
|
+
"shape": "S2b"
|
|
1306
1319
|
},
|
|
1307
1320
|
"inputArtifacts": {
|
|
1308
|
-
"shape": "
|
|
1321
|
+
"shape": "S2h"
|
|
1309
1322
|
},
|
|
1310
1323
|
"outputArtifacts": {
|
|
1311
|
-
"shape": "
|
|
1324
|
+
"shape": "S2h"
|
|
1312
1325
|
},
|
|
1313
1326
|
"artifactCredentials": {
|
|
1314
|
-
"shape": "
|
|
1327
|
+
"shape": "S2p"
|
|
1315
1328
|
},
|
|
1316
1329
|
"continuationToken": {},
|
|
1317
1330
|
"encryptionKey": {
|
|
@@ -1319,7 +1332,7 @@
|
|
|
1319
1332
|
}
|
|
1320
1333
|
}
|
|
1321
1334
|
},
|
|
1322
|
-
"
|
|
1335
|
+
"S2a": {
|
|
1323
1336
|
"type": "structure",
|
|
1324
1337
|
"members": {
|
|
1325
1338
|
"configuration": {
|
|
@@ -1327,7 +1340,7 @@
|
|
|
1327
1340
|
}
|
|
1328
1341
|
}
|
|
1329
1342
|
},
|
|
1330
|
-
"
|
|
1343
|
+
"S2b": {
|
|
1331
1344
|
"type": "structure",
|
|
1332
1345
|
"members": {
|
|
1333
1346
|
"pipelineName": {},
|
|
@@ -1348,7 +1361,7 @@
|
|
|
1348
1361
|
"pipelineExecutionId": {}
|
|
1349
1362
|
}
|
|
1350
1363
|
},
|
|
1351
|
-
"
|
|
1364
|
+
"S2h": {
|
|
1352
1365
|
"type": "list",
|
|
1353
1366
|
"member": {
|
|
1354
1367
|
"type": "structure",
|
|
@@ -1375,7 +1388,7 @@
|
|
|
1375
1388
|
}
|
|
1376
1389
|
}
|
|
1377
1390
|
},
|
|
1378
|
-
"
|
|
1391
|
+
"S2p": {
|
|
1379
1392
|
"type": "structure",
|
|
1380
1393
|
"required": [
|
|
1381
1394
|
"accessKeyId",
|
|
@@ -1389,7 +1402,7 @@
|
|
|
1389
1402
|
},
|
|
1390
1403
|
"sensitive": true
|
|
1391
1404
|
},
|
|
1392
|
-
"
|
|
1405
|
+
"S3h": {
|
|
1393
1406
|
"type": "structure",
|
|
1394
1407
|
"required": [
|
|
1395
1408
|
"revisionId",
|
|
@@ -1404,7 +1417,7 @@
|
|
|
1404
1417
|
}
|
|
1405
1418
|
}
|
|
1406
1419
|
},
|
|
1407
|
-
"
|
|
1420
|
+
"S48": {
|
|
1408
1421
|
"type": "list",
|
|
1409
1422
|
"member": {
|
|
1410
1423
|
"type": "structure",
|
|
@@ -1420,7 +1433,12 @@
|
|
|
1420
1433
|
}
|
|
1421
1434
|
}
|
|
1422
1435
|
},
|
|
1423
|
-
"
|
|
1436
|
+
"S4h": {
|
|
1437
|
+
"type": "map",
|
|
1438
|
+
"key": {},
|
|
1439
|
+
"value": {}
|
|
1440
|
+
},
|
|
1441
|
+
"S56": {
|
|
1424
1442
|
"type": "structure",
|
|
1425
1443
|
"required": [
|
|
1426
1444
|
"definition",
|
|
@@ -1428,7 +1446,7 @@
|
|
|
1428
1446
|
],
|
|
1429
1447
|
"members": {
|
|
1430
1448
|
"definition": {
|
|
1431
|
-
"shape": "
|
|
1449
|
+
"shape": "S57"
|
|
1432
1450
|
},
|
|
1433
1451
|
"url": {},
|
|
1434
1452
|
"errorMessage": {},
|
|
@@ -1442,7 +1460,7 @@
|
|
|
1442
1460
|
}
|
|
1443
1461
|
}
|
|
1444
1462
|
},
|
|
1445
|
-
"
|
|
1463
|
+
"S57": {
|
|
1446
1464
|
"type": "structure",
|
|
1447
1465
|
"required": [
|
|
1448
1466
|
"name",
|
|
@@ -1479,7 +1497,7 @@
|
|
|
1479
1497
|
}
|
|
1480
1498
|
}
|
|
1481
1499
|
},
|
|
1482
|
-
"
|
|
1500
|
+
"S66": {
|
|
1483
1501
|
"type": "structure",
|
|
1484
1502
|
"required": [
|
|
1485
1503
|
"type",
|
|
@@ -1491,7 +1509,7 @@
|
|
|
1491
1509
|
"externalExecutionId": {}
|
|
1492
1510
|
}
|
|
1493
1511
|
},
|
|
1494
|
-
"
|
|
1512
|
+
"S69": {
|
|
1495
1513
|
"type": "structure",
|
|
1496
1514
|
"required": [
|
|
1497
1515
|
"revision",
|
|
@@ -1506,7 +1524,7 @@
|
|
|
1506
1524
|
"revisionSummary": {}
|
|
1507
1525
|
}
|
|
1508
1526
|
},
|
|
1509
|
-
"
|
|
1527
|
+
"S6b": {
|
|
1510
1528
|
"type": "structure",
|
|
1511
1529
|
"members": {
|
|
1512
1530
|
"summary": {},
|
|
@@ -24,26 +24,29 @@
|
|
|
24
24
|
"AllowUnauthenticatedIdentities": {
|
|
25
25
|
"type": "boolean"
|
|
26
26
|
},
|
|
27
|
+
"AllowClassicFlow": {
|
|
28
|
+
"type": "boolean"
|
|
29
|
+
},
|
|
27
30
|
"SupportedLoginProviders": {
|
|
28
|
-
"shape": "
|
|
31
|
+
"shape": "S5"
|
|
29
32
|
},
|
|
30
33
|
"DeveloperProviderName": {},
|
|
31
34
|
"OpenIdConnectProviderARNs": {
|
|
32
|
-
"shape": "
|
|
35
|
+
"shape": "S9"
|
|
33
36
|
},
|
|
34
37
|
"CognitoIdentityProviders": {
|
|
35
|
-
"shape": "
|
|
38
|
+
"shape": "Sb"
|
|
36
39
|
},
|
|
37
40
|
"SamlProviderARNs": {
|
|
38
|
-
"shape": "
|
|
41
|
+
"shape": "Sg"
|
|
39
42
|
},
|
|
40
43
|
"IdentityPoolTags": {
|
|
41
|
-
"shape": "
|
|
44
|
+
"shape": "Sh"
|
|
42
45
|
}
|
|
43
46
|
}
|
|
44
47
|
},
|
|
45
48
|
"output": {
|
|
46
|
-
"shape": "
|
|
49
|
+
"shape": "Sk"
|
|
47
50
|
}
|
|
48
51
|
},
|
|
49
52
|
"DeleteIdentities": {
|
|
@@ -97,7 +100,7 @@
|
|
|
97
100
|
}
|
|
98
101
|
},
|
|
99
102
|
"output": {
|
|
100
|
-
"shape": "
|
|
103
|
+
"shape": "Sv"
|
|
101
104
|
}
|
|
102
105
|
},
|
|
103
106
|
"DescribeIdentityPool": {
|
|
@@ -111,7 +114,7 @@
|
|
|
111
114
|
}
|
|
112
115
|
},
|
|
113
116
|
"output": {
|
|
114
|
-
"shape": "
|
|
117
|
+
"shape": "Sk"
|
|
115
118
|
}
|
|
116
119
|
},
|
|
117
120
|
"GetCredentialsForIdentity": {
|
|
@@ -123,7 +126,7 @@
|
|
|
123
126
|
"members": {
|
|
124
127
|
"IdentityId": {},
|
|
125
128
|
"Logins": {
|
|
126
|
-
"shape": "
|
|
129
|
+
"shape": "S10"
|
|
127
130
|
},
|
|
128
131
|
"CustomRoleArn": {}
|
|
129
132
|
}
|
|
@@ -156,7 +159,7 @@
|
|
|
156
159
|
"AccountId": {},
|
|
157
160
|
"IdentityPoolId": {},
|
|
158
161
|
"Logins": {
|
|
159
|
-
"shape": "
|
|
162
|
+
"shape": "S10"
|
|
160
163
|
}
|
|
161
164
|
}
|
|
162
165
|
},
|
|
@@ -182,10 +185,10 @@
|
|
|
182
185
|
"members": {
|
|
183
186
|
"IdentityPoolId": {},
|
|
184
187
|
"Roles": {
|
|
185
|
-
"shape": "
|
|
188
|
+
"shape": "S1c"
|
|
186
189
|
},
|
|
187
190
|
"RoleMappings": {
|
|
188
|
-
"shape": "
|
|
191
|
+
"shape": "S1e"
|
|
189
192
|
}
|
|
190
193
|
}
|
|
191
194
|
}
|
|
@@ -199,7 +202,7 @@
|
|
|
199
202
|
"members": {
|
|
200
203
|
"IdentityId": {},
|
|
201
204
|
"Logins": {
|
|
202
|
-
"shape": "
|
|
205
|
+
"shape": "S10"
|
|
203
206
|
}
|
|
204
207
|
}
|
|
205
208
|
},
|
|
@@ -222,7 +225,7 @@
|
|
|
222
225
|
"IdentityPoolId": {},
|
|
223
226
|
"IdentityId": {},
|
|
224
227
|
"Logins": {
|
|
225
|
-
"shape": "
|
|
228
|
+
"shape": "S10"
|
|
226
229
|
},
|
|
227
230
|
"TokenDuration": {
|
|
228
231
|
"type": "long"
|
|
@@ -262,7 +265,7 @@
|
|
|
262
265
|
"Identities": {
|
|
263
266
|
"type": "list",
|
|
264
267
|
"member": {
|
|
265
|
-
"shape": "
|
|
268
|
+
"shape": "Sv"
|
|
266
269
|
}
|
|
267
270
|
},
|
|
268
271
|
"NextToken": {}
|
|
@@ -313,7 +316,7 @@
|
|
|
313
316
|
"type": "structure",
|
|
314
317
|
"members": {
|
|
315
318
|
"Tags": {
|
|
316
|
-
"shape": "
|
|
319
|
+
"shape": "Sh"
|
|
317
320
|
}
|
|
318
321
|
}
|
|
319
322
|
}
|
|
@@ -379,10 +382,10 @@
|
|
|
379
382
|
"members": {
|
|
380
383
|
"IdentityPoolId": {},
|
|
381
384
|
"Roles": {
|
|
382
|
-
"shape": "
|
|
385
|
+
"shape": "S1c"
|
|
383
386
|
},
|
|
384
387
|
"RoleMappings": {
|
|
385
|
-
"shape": "
|
|
388
|
+
"shape": "S1e"
|
|
386
389
|
}
|
|
387
390
|
}
|
|
388
391
|
}
|
|
@@ -391,12 +394,13 @@
|
|
|
391
394
|
"input": {
|
|
392
395
|
"type": "structure",
|
|
393
396
|
"required": [
|
|
394
|
-
"ResourceArn"
|
|
397
|
+
"ResourceArn",
|
|
398
|
+
"Tags"
|
|
395
399
|
],
|
|
396
400
|
"members": {
|
|
397
401
|
"ResourceArn": {},
|
|
398
402
|
"Tags": {
|
|
399
|
-
"shape": "
|
|
403
|
+
"shape": "Sh"
|
|
400
404
|
}
|
|
401
405
|
}
|
|
402
406
|
},
|
|
@@ -433,10 +437,10 @@
|
|
|
433
437
|
"members": {
|
|
434
438
|
"IdentityId": {},
|
|
435
439
|
"Logins": {
|
|
436
|
-
"shape": "
|
|
440
|
+
"shape": "S10"
|
|
437
441
|
},
|
|
438
442
|
"LoginsToRemove": {
|
|
439
|
-
"shape": "
|
|
443
|
+
"shape": "Sw"
|
|
440
444
|
}
|
|
441
445
|
}
|
|
442
446
|
}
|
|
@@ -445,7 +449,8 @@
|
|
|
445
449
|
"input": {
|
|
446
450
|
"type": "structure",
|
|
447
451
|
"required": [
|
|
448
|
-
"ResourceArn"
|
|
452
|
+
"ResourceArn",
|
|
453
|
+
"TagKeys"
|
|
449
454
|
],
|
|
450
455
|
"members": {
|
|
451
456
|
"ResourceArn": {},
|
|
@@ -462,24 +467,24 @@
|
|
|
462
467
|
},
|
|
463
468
|
"UpdateIdentityPool": {
|
|
464
469
|
"input": {
|
|
465
|
-
"shape": "
|
|
470
|
+
"shape": "Sk"
|
|
466
471
|
},
|
|
467
472
|
"output": {
|
|
468
|
-
"shape": "
|
|
473
|
+
"shape": "Sk"
|
|
469
474
|
}
|
|
470
475
|
}
|
|
471
476
|
},
|
|
472
477
|
"shapes": {
|
|
473
|
-
"
|
|
478
|
+
"S5": {
|
|
474
479
|
"type": "map",
|
|
475
480
|
"key": {},
|
|
476
481
|
"value": {}
|
|
477
482
|
},
|
|
478
|
-
"
|
|
483
|
+
"S9": {
|
|
479
484
|
"type": "list",
|
|
480
485
|
"member": {}
|
|
481
486
|
},
|
|
482
|
-
"
|
|
487
|
+
"Sb": {
|
|
483
488
|
"type": "list",
|
|
484
489
|
"member": {
|
|
485
490
|
"type": "structure",
|
|
@@ -492,16 +497,16 @@
|
|
|
492
497
|
}
|
|
493
498
|
}
|
|
494
499
|
},
|
|
495
|
-
"
|
|
500
|
+
"Sg": {
|
|
496
501
|
"type": "list",
|
|
497
502
|
"member": {}
|
|
498
503
|
},
|
|
499
|
-
"
|
|
504
|
+
"Sh": {
|
|
500
505
|
"type": "map",
|
|
501
506
|
"key": {},
|
|
502
507
|
"value": {}
|
|
503
508
|
},
|
|
504
|
-
"
|
|
509
|
+
"Sk": {
|
|
505
510
|
"type": "structure",
|
|
506
511
|
"required": [
|
|
507
512
|
"IdentityPoolId",
|
|
@@ -514,30 +519,33 @@
|
|
|
514
519
|
"AllowUnauthenticatedIdentities": {
|
|
515
520
|
"type": "boolean"
|
|
516
521
|
},
|
|
522
|
+
"AllowClassicFlow": {
|
|
523
|
+
"type": "boolean"
|
|
524
|
+
},
|
|
517
525
|
"SupportedLoginProviders": {
|
|
518
|
-
"shape": "
|
|
526
|
+
"shape": "S5"
|
|
519
527
|
},
|
|
520
528
|
"DeveloperProviderName": {},
|
|
521
529
|
"OpenIdConnectProviderARNs": {
|
|
522
|
-
"shape": "
|
|
530
|
+
"shape": "S9"
|
|
523
531
|
},
|
|
524
532
|
"CognitoIdentityProviders": {
|
|
525
|
-
"shape": "
|
|
533
|
+
"shape": "Sb"
|
|
526
534
|
},
|
|
527
535
|
"SamlProviderARNs": {
|
|
528
|
-
"shape": "
|
|
536
|
+
"shape": "Sg"
|
|
529
537
|
},
|
|
530
538
|
"IdentityPoolTags": {
|
|
531
|
-
"shape": "
|
|
539
|
+
"shape": "Sh"
|
|
532
540
|
}
|
|
533
541
|
}
|
|
534
542
|
},
|
|
535
|
-
"
|
|
543
|
+
"Sv": {
|
|
536
544
|
"type": "structure",
|
|
537
545
|
"members": {
|
|
538
546
|
"IdentityId": {},
|
|
539
547
|
"Logins": {
|
|
540
|
-
"shape": "
|
|
548
|
+
"shape": "Sw"
|
|
541
549
|
},
|
|
542
550
|
"CreationDate": {
|
|
543
551
|
"type": "timestamp"
|
|
@@ -547,21 +555,21 @@
|
|
|
547
555
|
}
|
|
548
556
|
}
|
|
549
557
|
},
|
|
550
|
-
"
|
|
558
|
+
"Sw": {
|
|
551
559
|
"type": "list",
|
|
552
560
|
"member": {}
|
|
553
561
|
},
|
|
554
|
-
"
|
|
562
|
+
"S10": {
|
|
555
563
|
"type": "map",
|
|
556
564
|
"key": {},
|
|
557
565
|
"value": {}
|
|
558
566
|
},
|
|
559
|
-
"
|
|
567
|
+
"S1c": {
|
|
560
568
|
"type": "map",
|
|
561
569
|
"key": {},
|
|
562
570
|
"value": {}
|
|
563
571
|
},
|
|
564
|
-
"
|
|
572
|
+
"S1e": {
|
|
565
573
|
"type": "map",
|
|
566
574
|
"key": {},
|
|
567
575
|
"value": {
|