cdk-comprehend-s3olap 2.0.129 → 2.0.131
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/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +19 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/chime-2018-05-01.min.json +32 -28
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +2 -1
- package/node_modules/aws-sdk/apis/chime-sdk-meetings-2021-07-15.min.json +3 -1
- package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +181 -154
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +106 -53
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +1 -1
- package/node_modules/aws-sdk/apis/iot-2015-05-28.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/ram-2018-01-04.min.json +396 -66
- package/node_modules/aws-sdk/apis/ram-2018-01-04.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +94 -94
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +710 -703
- package/node_modules/aws-sdk/apis/secretsmanager-2017-10-17.examples.json +32 -0
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.examples.json +1516 -0
- package/node_modules/aws-sdk/apis/snowball-2016-06-30.min.json +79 -52
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +159 -73
- package/node_modules/aws-sdk/clients/chime.d.ts +94 -42
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +14 -10
- package/node_modules/aws-sdk/clients/chimesdkmeetings.d.ts +33 -24
- package/node_modules/aws-sdk/clients/comprehend.d.ts +45 -5
- package/node_modules/aws-sdk/clients/ecs.d.ts +7 -7
- package/node_modules/aws-sdk/clients/gamelift.d.ts +240 -240
- package/node_modules/aws-sdk/clients/guardduty.d.ts +61 -4
- package/node_modules/aws-sdk/clients/iot.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ram.d.ts +538 -91
- package/node_modules/aws-sdk/clients/rds.d.ts +16 -16
- package/node_modules/aws-sdk/clients/s3.d.ts +117 -117
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +53 -39
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +10 -10
- package/node_modules/aws-sdk/clients/snowball.d.ts +56 -9
- package/node_modules/aws-sdk/clients/wafv2.d.ts +120 -10
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +13 -13
- package/node_modules/aws-sdk/dist/aws-sdk.js +197 -158
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -98,6 +98,63 @@
|
|
98
98
|
}
|
99
99
|
}
|
100
100
|
},
|
101
|
+
"CreatePermission": {
|
102
|
+
"http": {
|
103
|
+
"requestUri": "/createpermission"
|
104
|
+
},
|
105
|
+
"input": {
|
106
|
+
"type": "structure",
|
107
|
+
"required": [
|
108
|
+
"name",
|
109
|
+
"resourceType",
|
110
|
+
"policyTemplate"
|
111
|
+
],
|
112
|
+
"members": {
|
113
|
+
"name": {},
|
114
|
+
"resourceType": {},
|
115
|
+
"policyTemplate": {},
|
116
|
+
"clientToken": {},
|
117
|
+
"tags": {
|
118
|
+
"shape": "Sm"
|
119
|
+
}
|
120
|
+
}
|
121
|
+
},
|
122
|
+
"output": {
|
123
|
+
"type": "structure",
|
124
|
+
"members": {
|
125
|
+
"permission": {
|
126
|
+
"shape": "Sr"
|
127
|
+
},
|
128
|
+
"clientToken": {}
|
129
|
+
}
|
130
|
+
}
|
131
|
+
},
|
132
|
+
"CreatePermissionVersion": {
|
133
|
+
"http": {
|
134
|
+
"requestUri": "/createpermissionversion"
|
135
|
+
},
|
136
|
+
"input": {
|
137
|
+
"type": "structure",
|
138
|
+
"required": [
|
139
|
+
"permissionArn",
|
140
|
+
"policyTemplate"
|
141
|
+
],
|
142
|
+
"members": {
|
143
|
+
"permissionArn": {},
|
144
|
+
"policyTemplate": {},
|
145
|
+
"clientToken": {}
|
146
|
+
}
|
147
|
+
},
|
148
|
+
"output": {
|
149
|
+
"type": "structure",
|
150
|
+
"members": {
|
151
|
+
"permission": {
|
152
|
+
"shape": "Sw"
|
153
|
+
},
|
154
|
+
"clientToken": {}
|
155
|
+
}
|
156
|
+
}
|
157
|
+
},
|
101
158
|
"CreateResourceShare": {
|
102
159
|
"http": {
|
103
160
|
"requestUri": "/createresourceshare"
|
@@ -116,7 +173,7 @@
|
|
116
173
|
"shape": "Se"
|
117
174
|
},
|
118
175
|
"tags": {
|
119
|
-
"shape": "
|
176
|
+
"shape": "Sm"
|
120
177
|
},
|
121
178
|
"allowExternalPrincipals": {
|
122
179
|
"type": "boolean"
|
@@ -132,12 +189,82 @@
|
|
132
189
|
"type": "structure",
|
133
190
|
"members": {
|
134
191
|
"resourceShare": {
|
135
|
-
"shape": "
|
192
|
+
"shape": "S11"
|
136
193
|
},
|
137
194
|
"clientToken": {}
|
138
195
|
}
|
139
196
|
}
|
140
197
|
},
|
198
|
+
"DeletePermission": {
|
199
|
+
"http": {
|
200
|
+
"method": "DELETE",
|
201
|
+
"requestUri": "/deletepermission"
|
202
|
+
},
|
203
|
+
"input": {
|
204
|
+
"type": "structure",
|
205
|
+
"required": [
|
206
|
+
"permissionArn"
|
207
|
+
],
|
208
|
+
"members": {
|
209
|
+
"permissionArn": {
|
210
|
+
"location": "querystring",
|
211
|
+
"locationName": "permissionArn"
|
212
|
+
},
|
213
|
+
"clientToken": {
|
214
|
+
"location": "querystring",
|
215
|
+
"locationName": "clientToken"
|
216
|
+
}
|
217
|
+
}
|
218
|
+
},
|
219
|
+
"output": {
|
220
|
+
"type": "structure",
|
221
|
+
"members": {
|
222
|
+
"returnValue": {
|
223
|
+
"type": "boolean"
|
224
|
+
},
|
225
|
+
"clientToken": {},
|
226
|
+
"permissionStatus": {}
|
227
|
+
}
|
228
|
+
}
|
229
|
+
},
|
230
|
+
"DeletePermissionVersion": {
|
231
|
+
"http": {
|
232
|
+
"method": "DELETE",
|
233
|
+
"requestUri": "/deletepermissionversion"
|
234
|
+
},
|
235
|
+
"input": {
|
236
|
+
"type": "structure",
|
237
|
+
"required": [
|
238
|
+
"permissionArn",
|
239
|
+
"permissionVersion"
|
240
|
+
],
|
241
|
+
"members": {
|
242
|
+
"permissionArn": {
|
243
|
+
"location": "querystring",
|
244
|
+
"locationName": "permissionArn"
|
245
|
+
},
|
246
|
+
"permissionVersion": {
|
247
|
+
"location": "querystring",
|
248
|
+
"locationName": "permissionVersion",
|
249
|
+
"type": "integer"
|
250
|
+
},
|
251
|
+
"clientToken": {
|
252
|
+
"location": "querystring",
|
253
|
+
"locationName": "clientToken"
|
254
|
+
}
|
255
|
+
}
|
256
|
+
},
|
257
|
+
"output": {
|
258
|
+
"type": "structure",
|
259
|
+
"members": {
|
260
|
+
"returnValue": {
|
261
|
+
"type": "boolean"
|
262
|
+
},
|
263
|
+
"clientToken": {},
|
264
|
+
"permissionStatus": {}
|
265
|
+
}
|
266
|
+
}
|
267
|
+
},
|
141
268
|
"DeleteResourceShare": {
|
142
269
|
"http": {
|
143
270
|
"method": "DELETE",
|
@@ -262,26 +389,7 @@
|
|
262
389
|
"type": "structure",
|
263
390
|
"members": {
|
264
391
|
"permission": {
|
265
|
-
"
|
266
|
-
"members": {
|
267
|
-
"arn": {},
|
268
|
-
"version": {},
|
269
|
-
"defaultVersion": {
|
270
|
-
"type": "boolean"
|
271
|
-
},
|
272
|
-
"name": {},
|
273
|
-
"resourceType": {},
|
274
|
-
"permission": {},
|
275
|
-
"creationTime": {
|
276
|
-
"type": "timestamp"
|
277
|
-
},
|
278
|
-
"lastUpdatedTime": {
|
279
|
-
"type": "timestamp"
|
280
|
-
},
|
281
|
-
"isResourceTypeDefault": {
|
282
|
-
"type": "boolean"
|
283
|
-
}
|
284
|
-
}
|
392
|
+
"shape": "Sw"
|
285
393
|
}
|
286
394
|
}
|
287
395
|
}
|
@@ -329,7 +437,7 @@
|
|
329
437
|
"members": {
|
330
438
|
"associationType": {},
|
331
439
|
"resourceShareArns": {
|
332
|
-
"shape": "
|
440
|
+
"shape": "S1n"
|
333
441
|
},
|
334
442
|
"resourceArn": {},
|
335
443
|
"principal": {},
|
@@ -362,7 +470,7 @@
|
|
362
470
|
"member": {}
|
363
471
|
},
|
364
472
|
"resourceShareArns": {
|
365
|
-
"shape": "
|
473
|
+
"shape": "S1n"
|
366
474
|
},
|
367
475
|
"nextToken": {},
|
368
476
|
"maxResults": {
|
@@ -394,7 +502,7 @@
|
|
394
502
|
],
|
395
503
|
"members": {
|
396
504
|
"resourceShareArns": {
|
397
|
-
"shape": "
|
505
|
+
"shape": "S1n"
|
398
506
|
},
|
399
507
|
"resourceShareStatus": {},
|
400
508
|
"resourceOwner": {},
|
@@ -416,7 +524,10 @@
|
|
416
524
|
"maxResults": {
|
417
525
|
"type": "integer"
|
418
526
|
},
|
419
|
-
"permissionArn": {}
|
527
|
+
"permissionArn": {},
|
528
|
+
"permissionVersion": {
|
529
|
+
"type": "integer"
|
530
|
+
}
|
420
531
|
}
|
421
532
|
},
|
422
533
|
"output": {
|
@@ -425,7 +536,7 @@
|
|
425
536
|
"resourceShares": {
|
426
537
|
"type": "list",
|
427
538
|
"member": {
|
428
|
-
"shape": "
|
539
|
+
"shape": "S11"
|
429
540
|
}
|
430
541
|
},
|
431
542
|
"nextToken": {}
|
@@ -454,7 +565,57 @@
|
|
454
565
|
"type": "structure",
|
455
566
|
"members": {
|
456
567
|
"resources": {
|
457
|
-
"shape": "
|
568
|
+
"shape": "S23"
|
569
|
+
},
|
570
|
+
"nextToken": {}
|
571
|
+
}
|
572
|
+
}
|
573
|
+
},
|
574
|
+
"ListPermissionAssociations": {
|
575
|
+
"http": {
|
576
|
+
"requestUri": "/listpermissionassociations"
|
577
|
+
},
|
578
|
+
"input": {
|
579
|
+
"type": "structure",
|
580
|
+
"members": {
|
581
|
+
"permissionArn": {},
|
582
|
+
"permissionVersion": {
|
583
|
+
"type": "integer"
|
584
|
+
},
|
585
|
+
"associationStatus": {},
|
586
|
+
"resourceType": {},
|
587
|
+
"featureSet": {},
|
588
|
+
"defaultVersion": {
|
589
|
+
"type": "boolean"
|
590
|
+
},
|
591
|
+
"nextToken": {},
|
592
|
+
"maxResults": {
|
593
|
+
"type": "integer"
|
594
|
+
}
|
595
|
+
}
|
596
|
+
},
|
597
|
+
"output": {
|
598
|
+
"type": "structure",
|
599
|
+
"members": {
|
600
|
+
"permissions": {
|
601
|
+
"type": "list",
|
602
|
+
"member": {
|
603
|
+
"type": "structure",
|
604
|
+
"members": {
|
605
|
+
"arn": {},
|
606
|
+
"permissionVersion": {},
|
607
|
+
"defaultVersion": {
|
608
|
+
"type": "boolean"
|
609
|
+
},
|
610
|
+
"resourceType": {},
|
611
|
+
"status": {},
|
612
|
+
"featureSet": {},
|
613
|
+
"lastUpdatedTime": {
|
614
|
+
"type": "timestamp"
|
615
|
+
},
|
616
|
+
"resourceShareArn": {}
|
617
|
+
}
|
618
|
+
}
|
458
619
|
},
|
459
620
|
"nextToken": {}
|
460
621
|
}
|
@@ -481,7 +642,7 @@
|
|
481
642
|
"type": "structure",
|
482
643
|
"members": {
|
483
644
|
"permissions": {
|
484
|
-
"shape": "
|
645
|
+
"shape": "S2d"
|
485
646
|
},
|
486
647
|
"nextToken": {}
|
487
648
|
}
|
@@ -498,14 +659,15 @@
|
|
498
659
|
"nextToken": {},
|
499
660
|
"maxResults": {
|
500
661
|
"type": "integer"
|
501
|
-
}
|
662
|
+
},
|
663
|
+
"permissionType": {}
|
502
664
|
}
|
503
665
|
},
|
504
666
|
"output": {
|
505
667
|
"type": "structure",
|
506
668
|
"members": {
|
507
669
|
"permissions": {
|
508
|
-
"shape": "
|
670
|
+
"shape": "S2d"
|
509
671
|
},
|
510
672
|
"nextToken": {}
|
511
673
|
}
|
@@ -528,7 +690,7 @@
|
|
528
690
|
},
|
529
691
|
"resourceType": {},
|
530
692
|
"resourceShareArns": {
|
531
|
-
"shape": "
|
693
|
+
"shape": "S1n"
|
532
694
|
},
|
533
695
|
"nextToken": {},
|
534
696
|
"maxResults": {
|
@@ -562,6 +724,37 @@
|
|
562
724
|
}
|
563
725
|
}
|
564
726
|
},
|
727
|
+
"ListReplacePermissionAssociationsWork": {
|
728
|
+
"http": {
|
729
|
+
"requestUri": "/listreplacepermissionassociationswork"
|
730
|
+
},
|
731
|
+
"input": {
|
732
|
+
"type": "structure",
|
733
|
+
"members": {
|
734
|
+
"workIds": {
|
735
|
+
"type": "list",
|
736
|
+
"member": {}
|
737
|
+
},
|
738
|
+
"status": {},
|
739
|
+
"nextToken": {},
|
740
|
+
"maxResults": {
|
741
|
+
"type": "integer"
|
742
|
+
}
|
743
|
+
}
|
744
|
+
},
|
745
|
+
"output": {
|
746
|
+
"type": "structure",
|
747
|
+
"members": {
|
748
|
+
"replacePermissionAssociationsWorks": {
|
749
|
+
"type": "list",
|
750
|
+
"member": {
|
751
|
+
"shape": "S2q"
|
752
|
+
}
|
753
|
+
},
|
754
|
+
"nextToken": {}
|
755
|
+
}
|
756
|
+
}
|
757
|
+
},
|
565
758
|
"ListResourceSharePermissions": {
|
566
759
|
"http": {
|
567
760
|
"requestUri": "/listresourcesharepermissions"
|
@@ -583,7 +776,7 @@
|
|
583
776
|
"type": "structure",
|
584
777
|
"members": {
|
585
778
|
"permissions": {
|
586
|
-
"shape": "
|
779
|
+
"shape": "S2d"
|
587
780
|
},
|
588
781
|
"nextToken": {}
|
589
782
|
}
|
@@ -638,7 +831,7 @@
|
|
638
831
|
"shape": "Sd"
|
639
832
|
},
|
640
833
|
"resourceShareArns": {
|
641
|
-
"shape": "
|
834
|
+
"shape": "S1n"
|
642
835
|
},
|
643
836
|
"nextToken": {},
|
644
837
|
"maxResults": {
|
@@ -651,12 +844,38 @@
|
|
651
844
|
"type": "structure",
|
652
845
|
"members": {
|
653
846
|
"resources": {
|
654
|
-
"shape": "
|
847
|
+
"shape": "S23"
|
655
848
|
},
|
656
849
|
"nextToken": {}
|
657
850
|
}
|
658
851
|
}
|
659
852
|
},
|
853
|
+
"PromotePermissionCreatedFromPolicy": {
|
854
|
+
"http": {
|
855
|
+
"requestUri": "/promotepermissioncreatedfrompolicy"
|
856
|
+
},
|
857
|
+
"input": {
|
858
|
+
"type": "structure",
|
859
|
+
"required": [
|
860
|
+
"permissionArn",
|
861
|
+
"name"
|
862
|
+
],
|
863
|
+
"members": {
|
864
|
+
"permissionArn": {},
|
865
|
+
"name": {},
|
866
|
+
"clientToken": {}
|
867
|
+
}
|
868
|
+
},
|
869
|
+
"output": {
|
870
|
+
"type": "structure",
|
871
|
+
"members": {
|
872
|
+
"permission": {
|
873
|
+
"shape": "Sr"
|
874
|
+
},
|
875
|
+
"clientToken": {}
|
876
|
+
}
|
877
|
+
}
|
878
|
+
},
|
660
879
|
"PromoteResourceShareCreatedFromPolicy": {
|
661
880
|
"http": {
|
662
881
|
"requestUri": "/promoteresourcesharecreatedfrompolicy"
|
@@ -706,6 +925,63 @@
|
|
706
925
|
}
|
707
926
|
}
|
708
927
|
},
|
928
|
+
"ReplacePermissionAssociations": {
|
929
|
+
"http": {
|
930
|
+
"requestUri": "/replacepermissionassociations"
|
931
|
+
},
|
932
|
+
"input": {
|
933
|
+
"type": "structure",
|
934
|
+
"required": [
|
935
|
+
"fromPermissionArn",
|
936
|
+
"toPermissionArn"
|
937
|
+
],
|
938
|
+
"members": {
|
939
|
+
"fromPermissionArn": {},
|
940
|
+
"fromPermissionVersion": {
|
941
|
+
"type": "integer"
|
942
|
+
},
|
943
|
+
"toPermissionArn": {},
|
944
|
+
"clientToken": {}
|
945
|
+
}
|
946
|
+
},
|
947
|
+
"output": {
|
948
|
+
"type": "structure",
|
949
|
+
"members": {
|
950
|
+
"replacePermissionAssociationsWork": {
|
951
|
+
"shape": "S2q"
|
952
|
+
},
|
953
|
+
"clientToken": {}
|
954
|
+
}
|
955
|
+
}
|
956
|
+
},
|
957
|
+
"SetDefaultPermissionVersion": {
|
958
|
+
"http": {
|
959
|
+
"requestUri": "/setdefaultpermissionversion"
|
960
|
+
},
|
961
|
+
"input": {
|
962
|
+
"type": "structure",
|
963
|
+
"required": [
|
964
|
+
"permissionArn",
|
965
|
+
"permissionVersion"
|
966
|
+
],
|
967
|
+
"members": {
|
968
|
+
"permissionArn": {},
|
969
|
+
"permissionVersion": {
|
970
|
+
"type": "integer"
|
971
|
+
},
|
972
|
+
"clientToken": {}
|
973
|
+
}
|
974
|
+
},
|
975
|
+
"output": {
|
976
|
+
"type": "structure",
|
977
|
+
"members": {
|
978
|
+
"returnValue": {
|
979
|
+
"type": "boolean"
|
980
|
+
},
|
981
|
+
"clientToken": {}
|
982
|
+
}
|
983
|
+
}
|
984
|
+
},
|
709
985
|
"TagResource": {
|
710
986
|
"http": {
|
711
987
|
"requestUri": "/tagresource"
|
@@ -713,14 +989,14 @@
|
|
713
989
|
"input": {
|
714
990
|
"type": "structure",
|
715
991
|
"required": [
|
716
|
-
"resourceShareArn",
|
717
992
|
"tags"
|
718
993
|
],
|
719
994
|
"members": {
|
720
995
|
"resourceShareArn": {},
|
721
996
|
"tags": {
|
722
|
-
"shape": "
|
723
|
-
}
|
997
|
+
"shape": "Sm"
|
998
|
+
},
|
999
|
+
"resourceArn": {}
|
724
1000
|
}
|
725
1001
|
},
|
726
1002
|
"output": {
|
@@ -735,7 +1011,6 @@
|
|
735
1011
|
"input": {
|
736
1012
|
"type": "structure",
|
737
1013
|
"required": [
|
738
|
-
"resourceShareArn",
|
739
1014
|
"tagKeys"
|
740
1015
|
],
|
741
1016
|
"members": {
|
@@ -743,7 +1018,8 @@
|
|
743
1018
|
"tagKeys": {
|
744
1019
|
"type": "list",
|
745
1020
|
"member": {}
|
746
|
-
}
|
1021
|
+
},
|
1022
|
+
"resourceArn": {}
|
747
1023
|
}
|
748
1024
|
},
|
749
1025
|
"output": {
|
@@ -773,7 +1049,7 @@
|
|
773
1049
|
"type": "structure",
|
774
1050
|
"members": {
|
775
1051
|
"resourceShare": {
|
776
|
-
"shape": "
|
1052
|
+
"shape": "S11"
|
777
1053
|
},
|
778
1054
|
"clientToken": {}
|
779
1055
|
}
|
@@ -832,7 +1108,7 @@
|
|
832
1108
|
"type": "list",
|
833
1109
|
"member": {}
|
834
1110
|
},
|
835
|
-
"
|
1111
|
+
"Sm": {
|
836
1112
|
"type": "list",
|
837
1113
|
"member": {
|
838
1114
|
"type": "structure",
|
@@ -842,7 +1118,62 @@
|
|
842
1118
|
}
|
843
1119
|
}
|
844
1120
|
},
|
845
|
-
"
|
1121
|
+
"Sr": {
|
1122
|
+
"type": "structure",
|
1123
|
+
"members": {
|
1124
|
+
"arn": {},
|
1125
|
+
"version": {},
|
1126
|
+
"defaultVersion": {
|
1127
|
+
"type": "boolean"
|
1128
|
+
},
|
1129
|
+
"name": {},
|
1130
|
+
"resourceType": {},
|
1131
|
+
"status": {},
|
1132
|
+
"creationTime": {
|
1133
|
+
"type": "timestamp"
|
1134
|
+
},
|
1135
|
+
"lastUpdatedTime": {
|
1136
|
+
"type": "timestamp"
|
1137
|
+
},
|
1138
|
+
"isResourceTypeDefault": {
|
1139
|
+
"type": "boolean"
|
1140
|
+
},
|
1141
|
+
"permissionType": {},
|
1142
|
+
"featureSet": {},
|
1143
|
+
"tags": {
|
1144
|
+
"shape": "Sm"
|
1145
|
+
}
|
1146
|
+
}
|
1147
|
+
},
|
1148
|
+
"Sw": {
|
1149
|
+
"type": "structure",
|
1150
|
+
"members": {
|
1151
|
+
"arn": {},
|
1152
|
+
"version": {},
|
1153
|
+
"defaultVersion": {
|
1154
|
+
"type": "boolean"
|
1155
|
+
},
|
1156
|
+
"name": {},
|
1157
|
+
"resourceType": {},
|
1158
|
+
"permission": {},
|
1159
|
+
"creationTime": {
|
1160
|
+
"type": "timestamp"
|
1161
|
+
},
|
1162
|
+
"lastUpdatedTime": {
|
1163
|
+
"type": "timestamp"
|
1164
|
+
},
|
1165
|
+
"isResourceTypeDefault": {
|
1166
|
+
"type": "boolean"
|
1167
|
+
},
|
1168
|
+
"permissionType": {},
|
1169
|
+
"featureSet": {},
|
1170
|
+
"status": {},
|
1171
|
+
"tags": {
|
1172
|
+
"shape": "Sm"
|
1173
|
+
}
|
1174
|
+
}
|
1175
|
+
},
|
1176
|
+
"S11": {
|
846
1177
|
"type": "structure",
|
847
1178
|
"members": {
|
848
1179
|
"resourceShareArn": {},
|
@@ -854,7 +1185,7 @@
|
|
854
1185
|
"status": {},
|
855
1186
|
"statusMessage": {},
|
856
1187
|
"tags": {
|
857
|
-
"shape": "
|
1188
|
+
"shape": "Sm"
|
858
1189
|
},
|
859
1190
|
"creationTime": {
|
860
1191
|
"type": "timestamp"
|
@@ -865,11 +1196,11 @@
|
|
865
1196
|
"featureSet": {}
|
866
1197
|
}
|
867
1198
|
},
|
868
|
-
"
|
1199
|
+
"S1n": {
|
869
1200
|
"type": "list",
|
870
1201
|
"member": {}
|
871
1202
|
},
|
872
|
-
"
|
1203
|
+
"S23": {
|
873
1204
|
"type": "list",
|
874
1205
|
"member": {
|
875
1206
|
"type": "structure",
|
@@ -890,28 +1221,27 @@
|
|
890
1221
|
}
|
891
1222
|
}
|
892
1223
|
},
|
893
|
-
"
|
1224
|
+
"S2d": {
|
894
1225
|
"type": "list",
|
895
1226
|
"member": {
|
896
|
-
"
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
}
|
1227
|
+
"shape": "Sr"
|
1228
|
+
}
|
1229
|
+
},
|
1230
|
+
"S2q": {
|
1231
|
+
"type": "structure",
|
1232
|
+
"members": {
|
1233
|
+
"id": {},
|
1234
|
+
"fromPermissionArn": {},
|
1235
|
+
"fromPermissionVersion": {},
|
1236
|
+
"toPermissionArn": {},
|
1237
|
+
"toPermissionVersion": {},
|
1238
|
+
"status": {},
|
1239
|
+
"statusMessage": {},
|
1240
|
+
"creationTime": {
|
1241
|
+
"type": "timestamp"
|
1242
|
+
},
|
1243
|
+
"lastUpdatedTime": {
|
1244
|
+
"type": "timestamp"
|
915
1245
|
}
|
916
1246
|
}
|
917
1247
|
}
|
@@ -25,6 +25,11 @@
|
|
25
25
|
"output_token": "nextToken",
|
26
26
|
"limit_key": "maxResults"
|
27
27
|
},
|
28
|
+
"ListPermissionAssociations": {
|
29
|
+
"input_token": "nextToken",
|
30
|
+
"output_token": "nextToken",
|
31
|
+
"limit_key": "maxResults"
|
32
|
+
},
|
28
33
|
"ListPermissionVersions": {
|
29
34
|
"input_token": "nextToken",
|
30
35
|
"output_token": "nextToken",
|
@@ -40,6 +45,11 @@
|
|
40
45
|
"output_token": "nextToken",
|
41
46
|
"limit_key": "maxResults"
|
42
47
|
},
|
48
|
+
"ListReplacePermissionAssociationsWork": {
|
49
|
+
"input_token": "nextToken",
|
50
|
+
"output_token": "nextToken",
|
51
|
+
"limit_key": "maxResults"
|
52
|
+
},
|
43
53
|
"ListResourceSharePermissions": {
|
44
54
|
"input_token": "nextToken",
|
45
55
|
"output_token": "nextToken",
|