cdk-docker-image-deployment 0.0.45 → 0.0.47
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 +5 -5
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/@types/aws-lambda/README.md +1 -1
- package/node_modules/@types/aws-lambda/package.json +2 -2
- package/node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts +2 -0
- package/node_modules/aws-sdk/CHANGELOG.md +17 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +30 -27
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +377 -134
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/eventbridge-2015-10-07.min.json +5 -1
- package/node_modules/aws-sdk/apis/managedblockchain-2018-09-24.min.json +173 -49
- package/node_modules/aws-sdk/apis/managedblockchain-2018-09-24.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +132 -132
- package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +311 -1
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +533 -12
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +722 -652
- package/node_modules/aws-sdk/apis/servicediscovery-2017-03-14.examples.json +2 -2
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.min.json +123 -80
- package/node_modules/aws-sdk/apis/support-app-2021-08-20.min.json +28 -1
- package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.min.json +290 -63
- package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.paginators.json +5 -0
- package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +3 -3
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +54 -40
- package/node_modules/aws-sdk/clients/configservice.d.ts +24 -24
- package/node_modules/aws-sdk/clients/connect.d.ts +327 -55
- package/node_modules/aws-sdk/clients/frauddetector.d.ts +4 -4
- package/node_modules/aws-sdk/clients/managedblockchain.d.ts +191 -46
- package/node_modules/aws-sdk/clients/s3.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +121 -5
- package/node_modules/aws-sdk/clients/servicediscovery.d.ts +45 -45
- package/node_modules/aws-sdk/clients/sesv2.d.ts +79 -27
- package/node_modules/aws-sdk/clients/supportapp.d.ts +48 -10
- package/node_modules/aws-sdk/clients/workspacesweb.d.ts +199 -1
- 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 +14 -14
- package/node_modules/aws-sdk/dist/aws-sdk.js +727 -165
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -83
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +9 -9
|
@@ -170,6 +170,12 @@
|
|
|
170
170
|
"output_token": "NextToken",
|
|
171
171
|
"result_key": "TaskTemplates"
|
|
172
172
|
},
|
|
173
|
+
"ListTrafficDistributionGroups": {
|
|
174
|
+
"input_token": "NextToken",
|
|
175
|
+
"limit_key": "MaxResults",
|
|
176
|
+
"output_token": "NextToken",
|
|
177
|
+
"result_key": "TrafficDistributionGroupSummaryList"
|
|
178
|
+
},
|
|
173
179
|
"ListUseCases": {
|
|
174
180
|
"input_token": "NextToken",
|
|
175
181
|
"limit_key": "MaxResults",
|
|
@@ -13,6 +13,31 @@
|
|
|
13
13
|
"uid": "managedblockchain-2018-09-24"
|
|
14
14
|
},
|
|
15
15
|
"operations": {
|
|
16
|
+
"CreateAccessor": {
|
|
17
|
+
"http": {
|
|
18
|
+
"requestUri": "/accessors"
|
|
19
|
+
},
|
|
20
|
+
"input": {
|
|
21
|
+
"type": "structure",
|
|
22
|
+
"required": [
|
|
23
|
+
"ClientRequestToken",
|
|
24
|
+
"AccessorType"
|
|
25
|
+
],
|
|
26
|
+
"members": {
|
|
27
|
+
"ClientRequestToken": {
|
|
28
|
+
"idempotencyToken": true
|
|
29
|
+
},
|
|
30
|
+
"AccessorType": {}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"output": {
|
|
34
|
+
"type": "structure",
|
|
35
|
+
"members": {
|
|
36
|
+
"AccessorId": {},
|
|
37
|
+
"BillingToken": {}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
},
|
|
16
41
|
"CreateMember": {
|
|
17
42
|
"http": {
|
|
18
43
|
"requestUri": "/networks/{networkId}/members"
|
|
@@ -35,7 +60,7 @@
|
|
|
35
60
|
"locationName": "networkId"
|
|
36
61
|
},
|
|
37
62
|
"MemberConfiguration": {
|
|
38
|
-
"shape": "
|
|
63
|
+
"shape": "S8"
|
|
39
64
|
}
|
|
40
65
|
}
|
|
41
66
|
},
|
|
@@ -83,13 +108,13 @@
|
|
|
83
108
|
}
|
|
84
109
|
},
|
|
85
110
|
"VotingPolicy": {
|
|
86
|
-
"shape": "
|
|
111
|
+
"shape": "Sw"
|
|
87
112
|
},
|
|
88
113
|
"MemberConfiguration": {
|
|
89
|
-
"shape": "
|
|
114
|
+
"shape": "S8"
|
|
90
115
|
},
|
|
91
116
|
"Tags": {
|
|
92
|
-
"shape": "
|
|
117
|
+
"shape": "Sk"
|
|
93
118
|
}
|
|
94
119
|
}
|
|
95
120
|
},
|
|
@@ -130,13 +155,13 @@
|
|
|
130
155
|
"InstanceType": {},
|
|
131
156
|
"AvailabilityZone": {},
|
|
132
157
|
"LogPublishingConfiguration": {
|
|
133
|
-
"shape": "
|
|
158
|
+
"shape": "S16"
|
|
134
159
|
},
|
|
135
160
|
"StateDB": {}
|
|
136
161
|
}
|
|
137
162
|
},
|
|
138
163
|
"Tags": {
|
|
139
|
-
"shape": "
|
|
164
|
+
"shape": "Sk"
|
|
140
165
|
}
|
|
141
166
|
}
|
|
142
167
|
},
|
|
@@ -169,11 +194,11 @@
|
|
|
169
194
|
},
|
|
170
195
|
"MemberId": {},
|
|
171
196
|
"Actions": {
|
|
172
|
-
"shape": "
|
|
197
|
+
"shape": "S1b"
|
|
173
198
|
},
|
|
174
199
|
"Description": {},
|
|
175
200
|
"Tags": {
|
|
176
|
-
"shape": "
|
|
201
|
+
"shape": "Sk"
|
|
177
202
|
}
|
|
178
203
|
}
|
|
179
204
|
},
|
|
@@ -184,6 +209,28 @@
|
|
|
184
209
|
}
|
|
185
210
|
}
|
|
186
211
|
},
|
|
212
|
+
"DeleteAccessor": {
|
|
213
|
+
"http": {
|
|
214
|
+
"method": "DELETE",
|
|
215
|
+
"requestUri": "/accessors/{AccessorId}"
|
|
216
|
+
},
|
|
217
|
+
"input": {
|
|
218
|
+
"type": "structure",
|
|
219
|
+
"required": [
|
|
220
|
+
"AccessorId"
|
|
221
|
+
],
|
|
222
|
+
"members": {
|
|
223
|
+
"AccessorId": {
|
|
224
|
+
"location": "uri",
|
|
225
|
+
"locationName": "AccessorId"
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"output": {
|
|
230
|
+
"type": "structure",
|
|
231
|
+
"members": {}
|
|
232
|
+
}
|
|
233
|
+
},
|
|
187
234
|
"DeleteMember": {
|
|
188
235
|
"http": {
|
|
189
236
|
"method": "DELETE",
|
|
@@ -242,6 +289,42 @@
|
|
|
242
289
|
"members": {}
|
|
243
290
|
}
|
|
244
291
|
},
|
|
292
|
+
"GetAccessor": {
|
|
293
|
+
"http": {
|
|
294
|
+
"method": "GET",
|
|
295
|
+
"requestUri": "/accessors/{AccessorId}"
|
|
296
|
+
},
|
|
297
|
+
"input": {
|
|
298
|
+
"type": "structure",
|
|
299
|
+
"required": [
|
|
300
|
+
"AccessorId"
|
|
301
|
+
],
|
|
302
|
+
"members": {
|
|
303
|
+
"AccessorId": {
|
|
304
|
+
"location": "uri",
|
|
305
|
+
"locationName": "AccessorId"
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"output": {
|
|
310
|
+
"type": "structure",
|
|
311
|
+
"members": {
|
|
312
|
+
"Accessor": {
|
|
313
|
+
"type": "structure",
|
|
314
|
+
"members": {
|
|
315
|
+
"Id": {},
|
|
316
|
+
"Type": {},
|
|
317
|
+
"BillingToken": {},
|
|
318
|
+
"Status": {},
|
|
319
|
+
"CreationDate": {
|
|
320
|
+
"shape": "S1s"
|
|
321
|
+
},
|
|
322
|
+
"Arn": {}
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
},
|
|
245
328
|
"GetMember": {
|
|
246
329
|
"http": {
|
|
247
330
|
"method": "GET",
|
|
@@ -287,14 +370,14 @@
|
|
|
287
370
|
}
|
|
288
371
|
},
|
|
289
372
|
"LogPublishingConfiguration": {
|
|
290
|
-
"shape": "
|
|
373
|
+
"shape": "Sf"
|
|
291
374
|
},
|
|
292
375
|
"Status": {},
|
|
293
376
|
"CreationDate": {
|
|
294
|
-
"shape": "
|
|
377
|
+
"shape": "S1s"
|
|
295
378
|
},
|
|
296
379
|
"Tags": {
|
|
297
|
-
"shape": "
|
|
380
|
+
"shape": "S20"
|
|
298
381
|
},
|
|
299
382
|
"Arn": {},
|
|
300
383
|
"KmsKeyArn": {}
|
|
@@ -351,14 +434,14 @@
|
|
|
351
434
|
},
|
|
352
435
|
"VpcEndpointServiceName": {},
|
|
353
436
|
"VotingPolicy": {
|
|
354
|
-
"shape": "
|
|
437
|
+
"shape": "Sw"
|
|
355
438
|
},
|
|
356
439
|
"Status": {},
|
|
357
440
|
"CreationDate": {
|
|
358
|
-
"shape": "
|
|
441
|
+
"shape": "S1s"
|
|
359
442
|
},
|
|
360
443
|
"Tags": {
|
|
361
|
-
"shape": "
|
|
444
|
+
"shape": "S20"
|
|
362
445
|
},
|
|
363
446
|
"Arn": {}
|
|
364
447
|
}
|
|
@@ -423,15 +506,15 @@
|
|
|
423
506
|
}
|
|
424
507
|
},
|
|
425
508
|
"LogPublishingConfiguration": {
|
|
426
|
-
"shape": "
|
|
509
|
+
"shape": "S16"
|
|
427
510
|
},
|
|
428
511
|
"StateDB": {},
|
|
429
512
|
"Status": {},
|
|
430
513
|
"CreationDate": {
|
|
431
|
-
"shape": "
|
|
514
|
+
"shape": "S1s"
|
|
432
515
|
},
|
|
433
516
|
"Tags": {
|
|
434
|
-
"shape": "
|
|
517
|
+
"shape": "S20"
|
|
435
518
|
},
|
|
436
519
|
"Arn": {},
|
|
437
520
|
"KmsKeyArn": {}
|
|
@@ -472,16 +555,16 @@
|
|
|
472
555
|
"NetworkId": {},
|
|
473
556
|
"Description": {},
|
|
474
557
|
"Actions": {
|
|
475
|
-
"shape": "
|
|
558
|
+
"shape": "S1b"
|
|
476
559
|
},
|
|
477
560
|
"ProposedByMemberId": {},
|
|
478
561
|
"ProposedByMemberName": {},
|
|
479
562
|
"Status": {},
|
|
480
563
|
"CreationDate": {
|
|
481
|
-
"shape": "
|
|
564
|
+
"shape": "S1s"
|
|
482
565
|
},
|
|
483
566
|
"ExpirationDate": {
|
|
484
|
-
"shape": "
|
|
567
|
+
"shape": "S1s"
|
|
485
568
|
},
|
|
486
569
|
"YesVoteCount": {
|
|
487
570
|
"type": "integer"
|
|
@@ -493,7 +576,7 @@
|
|
|
493
576
|
"type": "integer"
|
|
494
577
|
},
|
|
495
578
|
"Tags": {
|
|
496
|
-
"shape": "
|
|
579
|
+
"shape": "S20"
|
|
497
580
|
},
|
|
498
581
|
"Arn": {}
|
|
499
582
|
}
|
|
@@ -501,6 +584,47 @@
|
|
|
501
584
|
}
|
|
502
585
|
}
|
|
503
586
|
},
|
|
587
|
+
"ListAccessors": {
|
|
588
|
+
"http": {
|
|
589
|
+
"method": "GET",
|
|
590
|
+
"requestUri": "/accessors"
|
|
591
|
+
},
|
|
592
|
+
"input": {
|
|
593
|
+
"type": "structure",
|
|
594
|
+
"members": {
|
|
595
|
+
"MaxResults": {
|
|
596
|
+
"location": "querystring",
|
|
597
|
+
"locationName": "maxResults",
|
|
598
|
+
"type": "integer"
|
|
599
|
+
},
|
|
600
|
+
"NextToken": {
|
|
601
|
+
"location": "querystring",
|
|
602
|
+
"locationName": "nextToken"
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"output": {
|
|
607
|
+
"type": "structure",
|
|
608
|
+
"members": {
|
|
609
|
+
"Accessors": {
|
|
610
|
+
"type": "list",
|
|
611
|
+
"member": {
|
|
612
|
+
"type": "structure",
|
|
613
|
+
"members": {
|
|
614
|
+
"Id": {},
|
|
615
|
+
"Type": {},
|
|
616
|
+
"Status": {},
|
|
617
|
+
"CreationDate": {
|
|
618
|
+
"shape": "S1s"
|
|
619
|
+
},
|
|
620
|
+
"Arn": {}
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
"NextToken": {}
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
},
|
|
504
628
|
"ListInvitations": {
|
|
505
629
|
"http": {
|
|
506
630
|
"method": "GET",
|
|
@@ -530,14 +654,14 @@
|
|
|
530
654
|
"members": {
|
|
531
655
|
"InvitationId": {},
|
|
532
656
|
"CreationDate": {
|
|
533
|
-
"shape": "
|
|
657
|
+
"shape": "S1s"
|
|
534
658
|
},
|
|
535
659
|
"ExpirationDate": {
|
|
536
|
-
"shape": "
|
|
660
|
+
"shape": "S1s"
|
|
537
661
|
},
|
|
538
662
|
"Status": {},
|
|
539
663
|
"NetworkSummary": {
|
|
540
|
-
"shape": "
|
|
664
|
+
"shape": "S2w"
|
|
541
665
|
},
|
|
542
666
|
"Arn": {}
|
|
543
667
|
}
|
|
@@ -599,7 +723,7 @@
|
|
|
599
723
|
"Description": {},
|
|
600
724
|
"Status": {},
|
|
601
725
|
"CreationDate": {
|
|
602
|
-
"shape": "
|
|
726
|
+
"shape": "S1s"
|
|
603
727
|
},
|
|
604
728
|
"IsOwned": {
|
|
605
729
|
"type": "boolean"
|
|
@@ -649,7 +773,7 @@
|
|
|
649
773
|
"Networks": {
|
|
650
774
|
"type": "list",
|
|
651
775
|
"member": {
|
|
652
|
-
"shape": "
|
|
776
|
+
"shape": "S2w"
|
|
653
777
|
}
|
|
654
778
|
},
|
|
655
779
|
"NextToken": {}
|
|
@@ -701,7 +825,7 @@
|
|
|
701
825
|
"Id": {},
|
|
702
826
|
"Status": {},
|
|
703
827
|
"CreationDate": {
|
|
704
|
-
"shape": "
|
|
828
|
+
"shape": "S1s"
|
|
705
829
|
},
|
|
706
830
|
"AvailabilityZone": {},
|
|
707
831
|
"InstanceType": {},
|
|
@@ -802,10 +926,10 @@
|
|
|
802
926
|
"ProposedByMemberName": {},
|
|
803
927
|
"Status": {},
|
|
804
928
|
"CreationDate": {
|
|
805
|
-
"shape": "
|
|
929
|
+
"shape": "S1s"
|
|
806
930
|
},
|
|
807
931
|
"ExpirationDate": {
|
|
808
|
-
"shape": "
|
|
932
|
+
"shape": "S1s"
|
|
809
933
|
},
|
|
810
934
|
"Arn": {}
|
|
811
935
|
}
|
|
@@ -836,7 +960,7 @@
|
|
|
836
960
|
"type": "structure",
|
|
837
961
|
"members": {
|
|
838
962
|
"Tags": {
|
|
839
|
-
"shape": "
|
|
963
|
+
"shape": "S20"
|
|
840
964
|
}
|
|
841
965
|
}
|
|
842
966
|
}
|
|
@@ -879,7 +1003,7 @@
|
|
|
879
1003
|
"locationName": "resourceArn"
|
|
880
1004
|
},
|
|
881
1005
|
"Tags": {
|
|
882
|
-
"shape": "
|
|
1006
|
+
"shape": "Sk"
|
|
883
1007
|
}
|
|
884
1008
|
}
|
|
885
1009
|
},
|
|
@@ -938,7 +1062,7 @@
|
|
|
938
1062
|
"locationName": "memberId"
|
|
939
1063
|
},
|
|
940
1064
|
"LogPublishingConfiguration": {
|
|
941
|
-
"shape": "
|
|
1065
|
+
"shape": "Sf"
|
|
942
1066
|
}
|
|
943
1067
|
}
|
|
944
1068
|
},
|
|
@@ -969,7 +1093,7 @@
|
|
|
969
1093
|
"locationName": "nodeId"
|
|
970
1094
|
},
|
|
971
1095
|
"LogPublishingConfiguration": {
|
|
972
|
-
"shape": "
|
|
1096
|
+
"shape": "S16"
|
|
973
1097
|
}
|
|
974
1098
|
}
|
|
975
1099
|
},
|
|
@@ -1010,7 +1134,7 @@
|
|
|
1010
1134
|
}
|
|
1011
1135
|
},
|
|
1012
1136
|
"shapes": {
|
|
1013
|
-
"
|
|
1137
|
+
"S8": {
|
|
1014
1138
|
"type": "structure",
|
|
1015
1139
|
"required": [
|
|
1016
1140
|
"Name",
|
|
@@ -1039,28 +1163,28 @@
|
|
|
1039
1163
|
}
|
|
1040
1164
|
},
|
|
1041
1165
|
"LogPublishingConfiguration": {
|
|
1042
|
-
"shape": "
|
|
1166
|
+
"shape": "Sf"
|
|
1043
1167
|
},
|
|
1044
1168
|
"Tags": {
|
|
1045
|
-
"shape": "
|
|
1169
|
+
"shape": "Sk"
|
|
1046
1170
|
},
|
|
1047
1171
|
"KmsKeyArn": {}
|
|
1048
1172
|
}
|
|
1049
1173
|
},
|
|
1050
|
-
"
|
|
1174
|
+
"Sf": {
|
|
1051
1175
|
"type": "structure",
|
|
1052
1176
|
"members": {
|
|
1053
1177
|
"Fabric": {
|
|
1054
1178
|
"type": "structure",
|
|
1055
1179
|
"members": {
|
|
1056
1180
|
"CaLogs": {
|
|
1057
|
-
"shape": "
|
|
1181
|
+
"shape": "Sh"
|
|
1058
1182
|
}
|
|
1059
1183
|
}
|
|
1060
1184
|
}
|
|
1061
1185
|
}
|
|
1062
1186
|
},
|
|
1063
|
-
"
|
|
1187
|
+
"Sh": {
|
|
1064
1188
|
"type": "structure",
|
|
1065
1189
|
"members": {
|
|
1066
1190
|
"Cloudwatch": {
|
|
@@ -1073,12 +1197,12 @@
|
|
|
1073
1197
|
}
|
|
1074
1198
|
}
|
|
1075
1199
|
},
|
|
1076
|
-
"
|
|
1200
|
+
"Sk": {
|
|
1077
1201
|
"type": "map",
|
|
1078
1202
|
"key": {},
|
|
1079
1203
|
"value": {}
|
|
1080
1204
|
},
|
|
1081
|
-
"
|
|
1205
|
+
"Sw": {
|
|
1082
1206
|
"type": "structure",
|
|
1083
1207
|
"members": {
|
|
1084
1208
|
"ApprovalThresholdPolicy": {
|
|
@@ -1095,23 +1219,23 @@
|
|
|
1095
1219
|
}
|
|
1096
1220
|
}
|
|
1097
1221
|
},
|
|
1098
|
-
"
|
|
1222
|
+
"S16": {
|
|
1099
1223
|
"type": "structure",
|
|
1100
1224
|
"members": {
|
|
1101
1225
|
"Fabric": {
|
|
1102
1226
|
"type": "structure",
|
|
1103
1227
|
"members": {
|
|
1104
1228
|
"ChaincodeLogs": {
|
|
1105
|
-
"shape": "
|
|
1229
|
+
"shape": "Sh"
|
|
1106
1230
|
},
|
|
1107
1231
|
"PeerLogs": {
|
|
1108
|
-
"shape": "
|
|
1232
|
+
"shape": "Sh"
|
|
1109
1233
|
}
|
|
1110
1234
|
}
|
|
1111
1235
|
}
|
|
1112
1236
|
}
|
|
1113
1237
|
},
|
|
1114
|
-
"
|
|
1238
|
+
"S1b": {
|
|
1115
1239
|
"type": "structure",
|
|
1116
1240
|
"members": {
|
|
1117
1241
|
"Invitations": {
|
|
@@ -1140,16 +1264,16 @@
|
|
|
1140
1264
|
}
|
|
1141
1265
|
}
|
|
1142
1266
|
},
|
|
1143
|
-
"
|
|
1267
|
+
"S1s": {
|
|
1144
1268
|
"type": "timestamp",
|
|
1145
1269
|
"timestampFormat": "iso8601"
|
|
1146
1270
|
},
|
|
1147
|
-
"
|
|
1271
|
+
"S20": {
|
|
1148
1272
|
"type": "map",
|
|
1149
1273
|
"key": {},
|
|
1150
1274
|
"value": {}
|
|
1151
1275
|
},
|
|
1152
|
-
"
|
|
1276
|
+
"S2w": {
|
|
1153
1277
|
"type": "structure",
|
|
1154
1278
|
"members": {
|
|
1155
1279
|
"Id": {},
|
|
@@ -1159,7 +1283,7 @@
|
|
|
1159
1283
|
"FrameworkVersion": {},
|
|
1160
1284
|
"Status": {},
|
|
1161
1285
|
"CreationDate": {
|
|
1162
|
-
"shape": "
|
|
1286
|
+
"shape": "S1s"
|
|
1163
1287
|
},
|
|
1164
1288
|
"Arn": {}
|
|
1165
1289
|
}
|