aws-sdk 2.1041.0 → 2.1045.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +22 -1
  2. package/README.md +1 -1
  3. package/apis/amplifyuibuilder-2021-08-11.examples.json +5 -0
  4. package/apis/amplifyuibuilder-2021-08-11.min.json +1036 -0
  5. package/apis/amplifyuibuilder-2021-08-11.paginators.json +16 -0
  6. package/apis/appsync-2017-07-25.min.json +327 -102
  7. package/apis/comprehendmedical-2018-10-30.min.json +244 -29
  8. package/apis/iot-2015-05-28.min.json +280 -271
  9. package/apis/location-2020-11-19.min.json +235 -107
  10. package/apis/logs-2014-03-28.min.json +4 -1
  11. package/apis/lookoutvision-2020-11-20.min.json +208 -11
  12. package/apis/lookoutvision-2020-11-20.paginators.json +6 -0
  13. package/apis/metadata.json +3 -0
  14. package/apis/networkmanager-2019-07-05.min.json +1931 -558
  15. package/apis/networkmanager-2019-07-05.paginators.json +36 -0
  16. package/apis/outposts-2019-12-03.min.json +29 -0
  17. package/apis/ram-2018-01-04.min.json +16 -11
  18. package/apis/sagemaker-2017-07-24.min.json +31 -28
  19. package/clients/all.d.ts +1 -0
  20. package/clients/all.js +2 -1
  21. package/clients/amplifyuibuilder.d.ts +1003 -0
  22. package/clients/amplifyuibuilder.js +18 -0
  23. package/clients/appsync.d.ts +330 -109
  24. package/clients/cloudwatchlogs.d.ts +6 -1
  25. package/clients/comprehendmedical.d.ts +306 -25
  26. package/clients/health.d.ts +2 -2
  27. package/clients/iot.d.ts +13 -0
  28. package/clients/location.d.ts +139 -9
  29. package/clients/lookoutvision.d.ts +293 -23
  30. package/clients/networkmanager.d.ts +1856 -361
  31. package/clients/outposts.d.ts +47 -3
  32. package/clients/ram.d.ts +234 -212
  33. package/clients/rekognition.d.ts +5 -5
  34. package/clients/route53.d.ts +11 -11
  35. package/clients/sagemaker.d.ts +3 -1
  36. package/clients/support.d.ts +62 -62
  37. package/dist/aws-sdk-core-react-native.js +2 -2
  38. package/dist/aws-sdk-react-native.js +53 -16
  39. package/dist/aws-sdk.js +769 -411
  40. package/dist/aws-sdk.min.js +74 -74
  41. package/lib/config_service_placeholders.d.ts +2 -0
  42. package/lib/core.js +1 -1
  43. package/package.json +1 -1
@@ -0,0 +1,1036 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2021-08-11",
5
+ "endpointPrefix": "amplifyuibuilder",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceFullName": "AWS Amplify UI Builder",
9
+ "serviceId": "AmplifyUIBuilder",
10
+ "signatureVersion": "v4",
11
+ "signingName": "amplifyuibuilder",
12
+ "uid": "amplifyuibuilder-2021-08-11"
13
+ },
14
+ "operations": {
15
+ "CreateComponent": {
16
+ "http": {
17
+ "requestUri": "/app/{appId}/environment/{environmentName}/components",
18
+ "responseCode": 200
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "required": [
23
+ "appId",
24
+ "componentToCreate",
25
+ "environmentName"
26
+ ],
27
+ "members": {
28
+ "appId": {
29
+ "location": "uri",
30
+ "locationName": "appId"
31
+ },
32
+ "clientToken": {
33
+ "idempotencyToken": true,
34
+ "location": "querystring",
35
+ "locationName": "clientToken"
36
+ },
37
+ "componentToCreate": {
38
+ "type": "structure",
39
+ "required": [
40
+ "bindingProperties",
41
+ "componentType",
42
+ "name",
43
+ "overrides",
44
+ "properties",
45
+ "variants"
46
+ ],
47
+ "members": {
48
+ "bindingProperties": {
49
+ "shape": "S4"
50
+ },
51
+ "children": {
52
+ "shape": "S9"
53
+ },
54
+ "collectionProperties": {
55
+ "shape": "Sj"
56
+ },
57
+ "componentType": {},
58
+ "name": {},
59
+ "overrides": {
60
+ "shape": "Sr"
61
+ },
62
+ "properties": {
63
+ "shape": "Sb"
64
+ },
65
+ "sourceId": {},
66
+ "tags": {
67
+ "shape": "St"
68
+ },
69
+ "variants": {
70
+ "shape": "Sw"
71
+ }
72
+ }
73
+ },
74
+ "environmentName": {
75
+ "location": "uri",
76
+ "locationName": "environmentName"
77
+ }
78
+ },
79
+ "payload": "componentToCreate"
80
+ },
81
+ "output": {
82
+ "type": "structure",
83
+ "members": {
84
+ "entity": {
85
+ "shape": "S10"
86
+ }
87
+ },
88
+ "payload": "entity"
89
+ },
90
+ "idempotent": true
91
+ },
92
+ "CreateTheme": {
93
+ "http": {
94
+ "requestUri": "/app/{appId}/environment/{environmentName}/themes",
95
+ "responseCode": 200
96
+ },
97
+ "input": {
98
+ "type": "structure",
99
+ "required": [
100
+ "appId",
101
+ "environmentName",
102
+ "themeToCreate"
103
+ ],
104
+ "members": {
105
+ "appId": {
106
+ "location": "uri",
107
+ "locationName": "appId"
108
+ },
109
+ "clientToken": {
110
+ "idempotencyToken": true,
111
+ "location": "querystring",
112
+ "locationName": "clientToken"
113
+ },
114
+ "environmentName": {
115
+ "location": "uri",
116
+ "locationName": "environmentName"
117
+ },
118
+ "themeToCreate": {
119
+ "type": "structure",
120
+ "required": [
121
+ "name",
122
+ "values"
123
+ ],
124
+ "members": {
125
+ "name": {},
126
+ "overrides": {
127
+ "shape": "S16"
128
+ },
129
+ "tags": {
130
+ "shape": "St"
131
+ },
132
+ "values": {
133
+ "shape": "S16"
134
+ }
135
+ }
136
+ }
137
+ },
138
+ "payload": "themeToCreate"
139
+ },
140
+ "output": {
141
+ "type": "structure",
142
+ "members": {
143
+ "entity": {
144
+ "shape": "S1a"
145
+ }
146
+ },
147
+ "payload": "entity"
148
+ },
149
+ "idempotent": true
150
+ },
151
+ "DeleteComponent": {
152
+ "http": {
153
+ "method": "DELETE",
154
+ "requestUri": "/app/{appId}/environment/{environmentName}/components/{id}",
155
+ "responseCode": 200
156
+ },
157
+ "input": {
158
+ "type": "structure",
159
+ "required": [
160
+ "appId",
161
+ "environmentName",
162
+ "id"
163
+ ],
164
+ "members": {
165
+ "appId": {
166
+ "location": "uri",
167
+ "locationName": "appId"
168
+ },
169
+ "environmentName": {
170
+ "location": "uri",
171
+ "locationName": "environmentName"
172
+ },
173
+ "id": {
174
+ "location": "uri",
175
+ "locationName": "id"
176
+ }
177
+ }
178
+ },
179
+ "idempotent": true
180
+ },
181
+ "DeleteTheme": {
182
+ "http": {
183
+ "method": "DELETE",
184
+ "requestUri": "/app/{appId}/environment/{environmentName}/themes/{id}",
185
+ "responseCode": 200
186
+ },
187
+ "input": {
188
+ "type": "structure",
189
+ "required": [
190
+ "appId",
191
+ "environmentName",
192
+ "id"
193
+ ],
194
+ "members": {
195
+ "appId": {
196
+ "location": "uri",
197
+ "locationName": "appId"
198
+ },
199
+ "environmentName": {
200
+ "location": "uri",
201
+ "locationName": "environmentName"
202
+ },
203
+ "id": {
204
+ "location": "uri",
205
+ "locationName": "id"
206
+ }
207
+ }
208
+ },
209
+ "idempotent": true
210
+ },
211
+ "ExchangeCodeForToken": {
212
+ "http": {
213
+ "requestUri": "/tokens/{provider}",
214
+ "responseCode": 200
215
+ },
216
+ "input": {
217
+ "type": "structure",
218
+ "required": [
219
+ "provider",
220
+ "request"
221
+ ],
222
+ "members": {
223
+ "provider": {
224
+ "location": "uri",
225
+ "locationName": "provider"
226
+ },
227
+ "request": {
228
+ "type": "structure",
229
+ "required": [
230
+ "code",
231
+ "redirectUri"
232
+ ],
233
+ "members": {
234
+ "code": {
235
+ "type": "string",
236
+ "sensitive": true
237
+ },
238
+ "redirectUri": {}
239
+ }
240
+ }
241
+ },
242
+ "payload": "request"
243
+ },
244
+ "output": {
245
+ "type": "structure",
246
+ "required": [
247
+ "accessToken",
248
+ "expiresIn",
249
+ "refreshToken"
250
+ ],
251
+ "members": {
252
+ "accessToken": {
253
+ "shape": "S1i"
254
+ },
255
+ "expiresIn": {
256
+ "type": "integer"
257
+ },
258
+ "refreshToken": {
259
+ "shape": "S1i"
260
+ }
261
+ }
262
+ }
263
+ },
264
+ "ExportComponents": {
265
+ "http": {
266
+ "method": "GET",
267
+ "requestUri": "/export/app/{appId}/environment/{environmentName}/components",
268
+ "responseCode": 200
269
+ },
270
+ "input": {
271
+ "type": "structure",
272
+ "required": [
273
+ "appId",
274
+ "environmentName"
275
+ ],
276
+ "members": {
277
+ "appId": {
278
+ "location": "uri",
279
+ "locationName": "appId"
280
+ },
281
+ "environmentName": {
282
+ "location": "uri",
283
+ "locationName": "environmentName"
284
+ }
285
+ }
286
+ },
287
+ "output": {
288
+ "type": "structure",
289
+ "required": [
290
+ "entities"
291
+ ],
292
+ "members": {
293
+ "entities": {
294
+ "type": "list",
295
+ "member": {
296
+ "shape": "S10"
297
+ }
298
+ }
299
+ }
300
+ }
301
+ },
302
+ "ExportThemes": {
303
+ "http": {
304
+ "method": "GET",
305
+ "requestUri": "/export/app/{appId}/environment/{environmentName}/themes",
306
+ "responseCode": 200
307
+ },
308
+ "input": {
309
+ "type": "structure",
310
+ "required": [
311
+ "appId",
312
+ "environmentName"
313
+ ],
314
+ "members": {
315
+ "appId": {
316
+ "location": "uri",
317
+ "locationName": "appId"
318
+ },
319
+ "environmentName": {
320
+ "location": "uri",
321
+ "locationName": "environmentName"
322
+ }
323
+ }
324
+ },
325
+ "output": {
326
+ "type": "structure",
327
+ "required": [
328
+ "entities"
329
+ ],
330
+ "members": {
331
+ "entities": {
332
+ "type": "list",
333
+ "member": {
334
+ "shape": "S1a"
335
+ }
336
+ }
337
+ }
338
+ }
339
+ },
340
+ "GetComponent": {
341
+ "http": {
342
+ "method": "GET",
343
+ "requestUri": "/app/{appId}/environment/{environmentName}/components/{id}",
344
+ "responseCode": 200
345
+ },
346
+ "input": {
347
+ "type": "structure",
348
+ "required": [
349
+ "appId",
350
+ "environmentName",
351
+ "id"
352
+ ],
353
+ "members": {
354
+ "appId": {
355
+ "location": "uri",
356
+ "locationName": "appId"
357
+ },
358
+ "environmentName": {
359
+ "location": "uri",
360
+ "locationName": "environmentName"
361
+ },
362
+ "id": {
363
+ "location": "uri",
364
+ "locationName": "id"
365
+ }
366
+ }
367
+ },
368
+ "output": {
369
+ "type": "structure",
370
+ "members": {
371
+ "component": {
372
+ "shape": "S10"
373
+ }
374
+ },
375
+ "payload": "component"
376
+ }
377
+ },
378
+ "GetTheme": {
379
+ "http": {
380
+ "method": "GET",
381
+ "requestUri": "/app/{appId}/environment/{environmentName}/themes/{id}",
382
+ "responseCode": 200
383
+ },
384
+ "input": {
385
+ "type": "structure",
386
+ "required": [
387
+ "appId",
388
+ "environmentName",
389
+ "id"
390
+ ],
391
+ "members": {
392
+ "appId": {
393
+ "location": "uri",
394
+ "locationName": "appId"
395
+ },
396
+ "environmentName": {
397
+ "location": "uri",
398
+ "locationName": "environmentName"
399
+ },
400
+ "id": {
401
+ "location": "uri",
402
+ "locationName": "id"
403
+ }
404
+ }
405
+ },
406
+ "output": {
407
+ "type": "structure",
408
+ "members": {
409
+ "theme": {
410
+ "shape": "S1a"
411
+ }
412
+ },
413
+ "payload": "theme"
414
+ }
415
+ },
416
+ "ListComponents": {
417
+ "http": {
418
+ "method": "GET",
419
+ "requestUri": "/app/{appId}/environment/{environmentName}/components",
420
+ "responseCode": 200
421
+ },
422
+ "input": {
423
+ "type": "structure",
424
+ "required": [
425
+ "appId",
426
+ "environmentName"
427
+ ],
428
+ "members": {
429
+ "appId": {
430
+ "location": "uri",
431
+ "locationName": "appId"
432
+ },
433
+ "environmentName": {
434
+ "location": "uri",
435
+ "locationName": "environmentName"
436
+ },
437
+ "maxResults": {
438
+ "location": "querystring",
439
+ "locationName": "maxResults",
440
+ "type": "integer"
441
+ },
442
+ "nextToken": {
443
+ "location": "querystring",
444
+ "locationName": "nextToken"
445
+ }
446
+ }
447
+ },
448
+ "output": {
449
+ "type": "structure",
450
+ "required": [
451
+ "entities"
452
+ ],
453
+ "members": {
454
+ "entities": {
455
+ "type": "list",
456
+ "member": {
457
+ "type": "structure",
458
+ "required": [
459
+ "appId",
460
+ "componentType",
461
+ "environmentName",
462
+ "id",
463
+ "name"
464
+ ],
465
+ "members": {
466
+ "appId": {},
467
+ "componentType": {},
468
+ "environmentName": {},
469
+ "id": {},
470
+ "name": {}
471
+ }
472
+ }
473
+ },
474
+ "nextToken": {}
475
+ }
476
+ }
477
+ },
478
+ "ListThemes": {
479
+ "http": {
480
+ "method": "GET",
481
+ "requestUri": "/app/{appId}/environment/{environmentName}/themes",
482
+ "responseCode": 200
483
+ },
484
+ "input": {
485
+ "type": "structure",
486
+ "required": [
487
+ "appId",
488
+ "environmentName"
489
+ ],
490
+ "members": {
491
+ "appId": {
492
+ "location": "uri",
493
+ "locationName": "appId"
494
+ },
495
+ "environmentName": {
496
+ "location": "uri",
497
+ "locationName": "environmentName"
498
+ },
499
+ "maxResults": {
500
+ "location": "querystring",
501
+ "locationName": "maxResults",
502
+ "type": "integer"
503
+ },
504
+ "nextToken": {
505
+ "location": "querystring",
506
+ "locationName": "nextToken"
507
+ }
508
+ }
509
+ },
510
+ "output": {
511
+ "type": "structure",
512
+ "required": [
513
+ "entities"
514
+ ],
515
+ "members": {
516
+ "entities": {
517
+ "type": "list",
518
+ "member": {
519
+ "type": "structure",
520
+ "required": [
521
+ "appId",
522
+ "environmentName",
523
+ "id",
524
+ "name"
525
+ ],
526
+ "members": {
527
+ "appId": {},
528
+ "environmentName": {},
529
+ "id": {},
530
+ "name": {}
531
+ }
532
+ }
533
+ },
534
+ "nextToken": {}
535
+ }
536
+ }
537
+ },
538
+ "RefreshToken": {
539
+ "http": {
540
+ "requestUri": "/tokens/{provider}/refresh",
541
+ "responseCode": 200
542
+ },
543
+ "input": {
544
+ "type": "structure",
545
+ "required": [
546
+ "provider",
547
+ "refreshTokenBody"
548
+ ],
549
+ "members": {
550
+ "provider": {
551
+ "location": "uri",
552
+ "locationName": "provider"
553
+ },
554
+ "refreshTokenBody": {
555
+ "type": "structure",
556
+ "required": [
557
+ "token"
558
+ ],
559
+ "members": {
560
+ "token": {
561
+ "type": "string",
562
+ "sensitive": true
563
+ }
564
+ }
565
+ }
566
+ },
567
+ "payload": "refreshTokenBody"
568
+ },
569
+ "output": {
570
+ "type": "structure",
571
+ "required": [
572
+ "accessToken",
573
+ "expiresIn"
574
+ ],
575
+ "members": {
576
+ "accessToken": {
577
+ "type": "string",
578
+ "sensitive": true
579
+ },
580
+ "expiresIn": {
581
+ "type": "integer"
582
+ }
583
+ }
584
+ }
585
+ },
586
+ "UpdateComponent": {
587
+ "http": {
588
+ "method": "PATCH",
589
+ "requestUri": "/app/{appId}/environment/{environmentName}/components/{id}",
590
+ "responseCode": 200
591
+ },
592
+ "input": {
593
+ "type": "structure",
594
+ "required": [
595
+ "appId",
596
+ "environmentName",
597
+ "id",
598
+ "updatedComponent"
599
+ ],
600
+ "members": {
601
+ "appId": {
602
+ "location": "uri",
603
+ "locationName": "appId"
604
+ },
605
+ "clientToken": {
606
+ "idempotencyToken": true,
607
+ "location": "querystring",
608
+ "locationName": "clientToken"
609
+ },
610
+ "environmentName": {
611
+ "location": "uri",
612
+ "locationName": "environmentName"
613
+ },
614
+ "id": {
615
+ "location": "uri",
616
+ "locationName": "id"
617
+ },
618
+ "updatedComponent": {
619
+ "type": "structure",
620
+ "members": {
621
+ "bindingProperties": {
622
+ "shape": "S4"
623
+ },
624
+ "children": {
625
+ "shape": "S9"
626
+ },
627
+ "collectionProperties": {
628
+ "shape": "Sj"
629
+ },
630
+ "componentType": {},
631
+ "id": {},
632
+ "name": {},
633
+ "overrides": {
634
+ "shape": "Sr"
635
+ },
636
+ "properties": {
637
+ "shape": "Sb"
638
+ },
639
+ "sourceId": {},
640
+ "variants": {
641
+ "shape": "Sw"
642
+ }
643
+ }
644
+ }
645
+ },
646
+ "payload": "updatedComponent"
647
+ },
648
+ "output": {
649
+ "type": "structure",
650
+ "members": {
651
+ "entity": {
652
+ "shape": "S10"
653
+ }
654
+ },
655
+ "payload": "entity"
656
+ },
657
+ "idempotent": true
658
+ },
659
+ "UpdateTheme": {
660
+ "http": {
661
+ "method": "PATCH",
662
+ "requestUri": "/app/{appId}/environment/{environmentName}/themes/{id}",
663
+ "responseCode": 200
664
+ },
665
+ "input": {
666
+ "type": "structure",
667
+ "required": [
668
+ "appId",
669
+ "environmentName",
670
+ "id",
671
+ "updatedTheme"
672
+ ],
673
+ "members": {
674
+ "appId": {
675
+ "location": "uri",
676
+ "locationName": "appId"
677
+ },
678
+ "clientToken": {
679
+ "idempotencyToken": true,
680
+ "location": "querystring",
681
+ "locationName": "clientToken"
682
+ },
683
+ "environmentName": {
684
+ "location": "uri",
685
+ "locationName": "environmentName"
686
+ },
687
+ "id": {
688
+ "location": "uri",
689
+ "locationName": "id"
690
+ },
691
+ "updatedTheme": {
692
+ "type": "structure",
693
+ "required": [
694
+ "values"
695
+ ],
696
+ "members": {
697
+ "id": {},
698
+ "name": {},
699
+ "overrides": {
700
+ "shape": "S16"
701
+ },
702
+ "values": {
703
+ "shape": "S16"
704
+ }
705
+ }
706
+ }
707
+ },
708
+ "payload": "updatedTheme"
709
+ },
710
+ "output": {
711
+ "type": "structure",
712
+ "members": {
713
+ "entity": {
714
+ "shape": "S1a"
715
+ }
716
+ },
717
+ "payload": "entity"
718
+ },
719
+ "idempotent": true
720
+ }
721
+ },
722
+ "shapes": {
723
+ "S4": {
724
+ "type": "map",
725
+ "key": {},
726
+ "value": {
727
+ "type": "structure",
728
+ "members": {
729
+ "bindingProperties": {
730
+ "type": "structure",
731
+ "members": {
732
+ "bucket": {},
733
+ "defaultValue": {},
734
+ "field": {},
735
+ "key": {},
736
+ "model": {},
737
+ "predicates": {
738
+ "shape": "S7"
739
+ },
740
+ "userAttribute": {}
741
+ }
742
+ },
743
+ "defaultValue": {},
744
+ "type": {}
745
+ }
746
+ }
747
+ },
748
+ "S7": {
749
+ "type": "list",
750
+ "member": {
751
+ "shape": "S8"
752
+ }
753
+ },
754
+ "S8": {
755
+ "type": "structure",
756
+ "members": {
757
+ "and": {
758
+ "shape": "S7"
759
+ },
760
+ "field": {},
761
+ "operand": {},
762
+ "operator": {},
763
+ "or": {
764
+ "shape": "S7"
765
+ }
766
+ }
767
+ },
768
+ "S9": {
769
+ "type": "list",
770
+ "member": {
771
+ "type": "structure",
772
+ "required": [
773
+ "componentType",
774
+ "name",
775
+ "properties"
776
+ ],
777
+ "members": {
778
+ "children": {
779
+ "shape": "S9"
780
+ },
781
+ "componentType": {},
782
+ "name": {},
783
+ "properties": {
784
+ "shape": "Sb"
785
+ }
786
+ }
787
+ }
788
+ },
789
+ "Sb": {
790
+ "type": "map",
791
+ "key": {},
792
+ "value": {
793
+ "shape": "Sc"
794
+ }
795
+ },
796
+ "Sc": {
797
+ "type": "structure",
798
+ "members": {
799
+ "bindingProperties": {
800
+ "shape": "Sd"
801
+ },
802
+ "bindings": {
803
+ "type": "map",
804
+ "key": {},
805
+ "value": {
806
+ "type": "structure",
807
+ "required": [
808
+ "element",
809
+ "property"
810
+ ],
811
+ "members": {
812
+ "element": {},
813
+ "property": {}
814
+ }
815
+ }
816
+ },
817
+ "collectionBindingProperties": {
818
+ "shape": "Sd"
819
+ },
820
+ "concat": {
821
+ "type": "list",
822
+ "member": {
823
+ "shape": "Sc"
824
+ }
825
+ },
826
+ "condition": {
827
+ "type": "structure",
828
+ "members": {
829
+ "else": {
830
+ "shape": "Sc"
831
+ },
832
+ "field": {},
833
+ "operand": {},
834
+ "operator": {},
835
+ "property": {},
836
+ "then": {
837
+ "shape": "Sc"
838
+ }
839
+ }
840
+ },
841
+ "configured": {
842
+ "type": "boolean"
843
+ },
844
+ "defaultValue": {},
845
+ "event": {},
846
+ "importedValue": {},
847
+ "model": {},
848
+ "type": {},
849
+ "userAttribute": {},
850
+ "value": {}
851
+ }
852
+ },
853
+ "Sd": {
854
+ "type": "structure",
855
+ "required": [
856
+ "property"
857
+ ],
858
+ "members": {
859
+ "field": {},
860
+ "property": {}
861
+ }
862
+ },
863
+ "Sj": {
864
+ "type": "map",
865
+ "key": {},
866
+ "value": {
867
+ "type": "structure",
868
+ "required": [
869
+ "model"
870
+ ],
871
+ "members": {
872
+ "identifiers": {
873
+ "type": "list",
874
+ "member": {}
875
+ },
876
+ "model": {},
877
+ "predicate": {
878
+ "shape": "S8"
879
+ },
880
+ "sort": {
881
+ "type": "list",
882
+ "member": {
883
+ "type": "structure",
884
+ "required": [
885
+ "direction",
886
+ "field"
887
+ ],
888
+ "members": {
889
+ "direction": {},
890
+ "field": {}
891
+ }
892
+ }
893
+ }
894
+ }
895
+ }
896
+ },
897
+ "Sr": {
898
+ "type": "map",
899
+ "key": {},
900
+ "value": {
901
+ "type": "map",
902
+ "key": {},
903
+ "value": {}
904
+ }
905
+ },
906
+ "St": {
907
+ "type": "map",
908
+ "key": {},
909
+ "value": {}
910
+ },
911
+ "Sw": {
912
+ "type": "list",
913
+ "member": {
914
+ "type": "structure",
915
+ "members": {
916
+ "overrides": {
917
+ "shape": "Sr"
918
+ },
919
+ "variantValues": {
920
+ "type": "map",
921
+ "key": {},
922
+ "value": {}
923
+ }
924
+ }
925
+ }
926
+ },
927
+ "S10": {
928
+ "type": "structure",
929
+ "required": [
930
+ "appId",
931
+ "bindingProperties",
932
+ "componentType",
933
+ "createdAt",
934
+ "environmentName",
935
+ "id",
936
+ "name",
937
+ "overrides",
938
+ "properties",
939
+ "variants"
940
+ ],
941
+ "members": {
942
+ "appId": {},
943
+ "bindingProperties": {
944
+ "shape": "S4"
945
+ },
946
+ "children": {
947
+ "shape": "S9"
948
+ },
949
+ "collectionProperties": {
950
+ "shape": "Sj"
951
+ },
952
+ "componentType": {},
953
+ "createdAt": {
954
+ "shape": "S11"
955
+ },
956
+ "environmentName": {},
957
+ "id": {},
958
+ "modifiedAt": {
959
+ "shape": "S11"
960
+ },
961
+ "name": {},
962
+ "overrides": {
963
+ "shape": "Sr"
964
+ },
965
+ "properties": {
966
+ "shape": "Sb"
967
+ },
968
+ "sourceId": {},
969
+ "tags": {
970
+ "shape": "St"
971
+ },
972
+ "variants": {
973
+ "shape": "Sw"
974
+ }
975
+ }
976
+ },
977
+ "S11": {
978
+ "type": "timestamp",
979
+ "timestampFormat": "iso8601"
980
+ },
981
+ "S16": {
982
+ "type": "list",
983
+ "member": {
984
+ "type": "structure",
985
+ "members": {
986
+ "key": {},
987
+ "value": {
988
+ "type": "structure",
989
+ "members": {
990
+ "children": {
991
+ "shape": "S16"
992
+ },
993
+ "value": {}
994
+ }
995
+ }
996
+ }
997
+ }
998
+ },
999
+ "S1a": {
1000
+ "type": "structure",
1001
+ "required": [
1002
+ "appId",
1003
+ "createdAt",
1004
+ "environmentName",
1005
+ "id",
1006
+ "name",
1007
+ "values"
1008
+ ],
1009
+ "members": {
1010
+ "appId": {},
1011
+ "createdAt": {
1012
+ "shape": "S11"
1013
+ },
1014
+ "environmentName": {},
1015
+ "id": {},
1016
+ "modifiedAt": {
1017
+ "shape": "S11"
1018
+ },
1019
+ "name": {},
1020
+ "overrides": {
1021
+ "shape": "S16"
1022
+ },
1023
+ "tags": {
1024
+ "shape": "St"
1025
+ },
1026
+ "values": {
1027
+ "shape": "S16"
1028
+ }
1029
+ }
1030
+ },
1031
+ "S1i": {
1032
+ "type": "string",
1033
+ "sensitive": true
1034
+ }
1035
+ }
1036
+ }