aws-sdk 2.667.0 → 2.671.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 +17 -1
- package/README.md +1 -1
- package/apis/codestar-connections-2019-12-01.min.json +83 -5
- package/apis/comprehendmedical-2018-10-30.min.json +207 -25
- package/apis/ec2-2016-11-15.min.json +453 -442
- package/apis/elasticfilesystem-2015-02-01.min.json +5 -2
- package/apis/s3control-2018-08-20.min.json +52 -15
- package/apis/ssm-2014-11-06.min.json +90 -84
- package/clients/codestarconnections.d.ts +84 -1
- package/clients/comprehendmedical.d.ts +232 -0
- package/clients/ec2.d.ts +26 -10
- package/clients/efs.d.ts +1 -1
- package/clients/s3control.d.ts +82 -43
- package/clients/ssm.d.ts +25 -4
- package/clients/support.d.ts +22 -22
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +758 -556
- package/dist/aws-sdk.min.js +62 -62
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.671.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.671.0
|
|
6
|
+
* feature: CodeStarconnections: Added support for tagging resources in AWS CodeStar Connections
|
|
7
|
+
* feature: ComprehendMedical: New Batch Ontology APIs for ICD-10 and RxNorm will provide batch capability of linking the information extracted by Comprehend Medical to medical ontologies. The new ontology linking APIs make it easy to detect medications and medical conditions in unstructured clinical text and link them to RxNorm and ICD-10-CM codes respectively. This new feature can help you reduce the cost, time and effort of processing large amounts of unstructured medical text with high accuracy.
|
|
8
|
+
|
|
9
|
+
## 2.670.0
|
|
10
|
+
* feature: EC2: With this release, you can call ModifySubnetAttribute with two new parameters: MapCustomerOwnedIpOnLaunch and CustomerOwnedIpv4Pool, to map a customerOwnedIpv4Pool to a subnet. You will also see these two new fields in the DescribeSubnets response. If your subnet has a customerOwnedIpv4Pool mapped, your network interface will get an auto assigned customerOwnedIpv4 address when placed onto an instance.
|
|
11
|
+
* feature: SSM: AWS Systems Manager Parameter Store launches new data type to support aliases in EC2 APIs
|
|
12
|
+
|
|
13
|
+
## 2.669.0
|
|
14
|
+
* feature: EC2: With this release, you can include enriched metadata in Amazon Virtual Private Cloud (Amazon VPC) flow logs published to Amazon CloudWatch Logs or Amazon Simple Storage Service (S3). Prior to this, custom format VPC flow logs enriched with additional metadata could be published only to S3. With this launch, we are also adding additional metadata fields that provide insights about the location such as AWS Region, AWS Availability Zone, AWS Local Zone, AWS Wavelength Zone, or AWS Outpost where the network interface where flow logs are captured exists.
|
|
15
|
+
* feature: S3Control: Amazon S3 Batch Operations now supports Object Lock.
|
|
16
|
+
|
|
17
|
+
## 2.668.0
|
|
18
|
+
* feature: EFS: Change the TagKeys argument for UntagResource to a URL parameter to address an issue with the Java and .NET SDKs.
|
|
19
|
+
* feature: SSM: Added TimeoutSeconds as part of ListCommands API response.
|
|
20
|
+
|
|
5
21
|
## 2.667.0
|
|
6
22
|
* feature: IoTEvents: Doc only update to correct APIs and related descriptions
|
|
7
23
|
* feature: Iot: AWS IoT Core released Fleet Provisioning for scalable onboarding of IoT devices to the cloud. This release includes support for customer's Lambda functions to validate devices during onboarding. Fleet Provisioning also allows devices to send Certificate Signing Requests (CSR) to AWS IoT Core for signing and getting a unique certificate. Lastly, AWS IoT Core added a feature to register the same certificate for multiple accounts in the same region without needing to register the certificate authority (CA).
|
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ version.
|
|
|
25
25
|
To use the SDK in the browser, simply add the following script tag to your
|
|
26
26
|
HTML pages:
|
|
27
27
|
|
|
28
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
28
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.671.0.min.js"></script>
|
|
29
29
|
|
|
30
30
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
31
31
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
],
|
|
23
23
|
"members": {
|
|
24
24
|
"ProviderType": {},
|
|
25
|
-
"ConnectionName": {}
|
|
25
|
+
"ConnectionName": {},
|
|
26
|
+
"Tags": {
|
|
27
|
+
"shape": "S4"
|
|
28
|
+
}
|
|
26
29
|
}
|
|
27
30
|
},
|
|
28
31
|
"output": {
|
|
@@ -31,7 +34,10 @@
|
|
|
31
34
|
"ConnectionArn"
|
|
32
35
|
],
|
|
33
36
|
"members": {
|
|
34
|
-
"ConnectionArn": {}
|
|
37
|
+
"ConnectionArn": {},
|
|
38
|
+
"Tags": {
|
|
39
|
+
"shape": "S4"
|
|
40
|
+
}
|
|
35
41
|
}
|
|
36
42
|
}
|
|
37
43
|
},
|
|
@@ -64,7 +70,7 @@
|
|
|
64
70
|
"type": "structure",
|
|
65
71
|
"members": {
|
|
66
72
|
"Connection": {
|
|
67
|
-
"shape": "
|
|
73
|
+
"shape": "Se"
|
|
68
74
|
}
|
|
69
75
|
}
|
|
70
76
|
}
|
|
@@ -86,16 +92,88 @@
|
|
|
86
92
|
"Connections": {
|
|
87
93
|
"type": "list",
|
|
88
94
|
"member": {
|
|
89
|
-
"shape": "
|
|
95
|
+
"shape": "Se"
|
|
90
96
|
}
|
|
91
97
|
},
|
|
92
98
|
"NextToken": {}
|
|
93
99
|
}
|
|
94
100
|
}
|
|
101
|
+
},
|
|
102
|
+
"ListTagsForResource": {
|
|
103
|
+
"input": {
|
|
104
|
+
"type": "structure",
|
|
105
|
+
"required": [
|
|
106
|
+
"ResourceArn"
|
|
107
|
+
],
|
|
108
|
+
"members": {
|
|
109
|
+
"ResourceArn": {}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"output": {
|
|
113
|
+
"type": "structure",
|
|
114
|
+
"members": {
|
|
115
|
+
"Tags": {
|
|
116
|
+
"shape": "S4"
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"TagResource": {
|
|
122
|
+
"input": {
|
|
123
|
+
"type": "structure",
|
|
124
|
+
"required": [
|
|
125
|
+
"ResourceArn",
|
|
126
|
+
"Tags"
|
|
127
|
+
],
|
|
128
|
+
"members": {
|
|
129
|
+
"ResourceArn": {},
|
|
130
|
+
"Tags": {
|
|
131
|
+
"shape": "S4"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"output": {
|
|
136
|
+
"type": "structure",
|
|
137
|
+
"members": {}
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"UntagResource": {
|
|
141
|
+
"input": {
|
|
142
|
+
"type": "structure",
|
|
143
|
+
"required": [
|
|
144
|
+
"ResourceArn",
|
|
145
|
+
"TagKeys"
|
|
146
|
+
],
|
|
147
|
+
"members": {
|
|
148
|
+
"ResourceArn": {},
|
|
149
|
+
"TagKeys": {
|
|
150
|
+
"type": "list",
|
|
151
|
+
"member": {}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"output": {
|
|
156
|
+
"type": "structure",
|
|
157
|
+
"members": {}
|
|
158
|
+
}
|
|
95
159
|
}
|
|
96
160
|
},
|
|
97
161
|
"shapes": {
|
|
98
|
-
"
|
|
162
|
+
"S4": {
|
|
163
|
+
"type": "list",
|
|
164
|
+
"member": {
|
|
165
|
+
"type": "structure",
|
|
166
|
+
"required": [
|
|
167
|
+
"Key",
|
|
168
|
+
"Value"
|
|
169
|
+
],
|
|
170
|
+
"members": {
|
|
171
|
+
"Key": {},
|
|
172
|
+
"Value": {}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"Se": {
|
|
99
177
|
"type": "structure",
|
|
100
178
|
"members": {
|
|
101
179
|
"ConnectionName": {},
|
|
@@ -33,6 +33,25 @@
|
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
+
"DescribeICD10CMInferenceJob": {
|
|
37
|
+
"input": {
|
|
38
|
+
"type": "structure",
|
|
39
|
+
"required": [
|
|
40
|
+
"JobId"
|
|
41
|
+
],
|
|
42
|
+
"members": {
|
|
43
|
+
"JobId": {}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"output": {
|
|
47
|
+
"type": "structure",
|
|
48
|
+
"members": {
|
|
49
|
+
"ComprehendMedicalAsyncJobProperties": {
|
|
50
|
+
"shape": "S4"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
36
55
|
"DescribePHIDetectionJob": {
|
|
37
56
|
"input": {
|
|
38
57
|
"type": "structure",
|
|
@@ -52,6 +71,25 @@
|
|
|
52
71
|
}
|
|
53
72
|
}
|
|
54
73
|
},
|
|
74
|
+
"DescribeRxNormInferenceJob": {
|
|
75
|
+
"input": {
|
|
76
|
+
"type": "structure",
|
|
77
|
+
"required": [
|
|
78
|
+
"JobId"
|
|
79
|
+
],
|
|
80
|
+
"members": {
|
|
81
|
+
"JobId": {}
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"output": {
|
|
85
|
+
"type": "structure",
|
|
86
|
+
"members": {
|
|
87
|
+
"ComprehendMedicalAsyncJobProperties": {
|
|
88
|
+
"shape": "S4"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
},
|
|
55
93
|
"DetectEntities": {
|
|
56
94
|
"input": {
|
|
57
95
|
"type": "structure",
|
|
@@ -70,10 +108,10 @@
|
|
|
70
108
|
],
|
|
71
109
|
"members": {
|
|
72
110
|
"Entities": {
|
|
73
|
-
"shape": "
|
|
111
|
+
"shape": "Sr"
|
|
74
112
|
},
|
|
75
113
|
"UnmappedAttributes": {
|
|
76
|
-
"shape": "
|
|
114
|
+
"shape": "S14"
|
|
77
115
|
},
|
|
78
116
|
"PaginationToken": {},
|
|
79
117
|
"ModelVersion": {}
|
|
@@ -100,10 +138,10 @@
|
|
|
100
138
|
],
|
|
101
139
|
"members": {
|
|
102
140
|
"Entities": {
|
|
103
|
-
"shape": "
|
|
141
|
+
"shape": "Sr"
|
|
104
142
|
},
|
|
105
143
|
"UnmappedAttributes": {
|
|
106
|
-
"shape": "
|
|
144
|
+
"shape": "S14"
|
|
107
145
|
},
|
|
108
146
|
"PaginationToken": {},
|
|
109
147
|
"ModelVersion": {}
|
|
@@ -128,7 +166,7 @@
|
|
|
128
166
|
],
|
|
129
167
|
"members": {
|
|
130
168
|
"Entities": {
|
|
131
|
-
"shape": "
|
|
169
|
+
"shape": "Sr"
|
|
132
170
|
},
|
|
133
171
|
"PaginationToken": {},
|
|
134
172
|
"ModelVersion": {}
|
|
@@ -194,13 +232,13 @@
|
|
|
194
232
|
},
|
|
195
233
|
"Text": {},
|
|
196
234
|
"Traits": {
|
|
197
|
-
"shape": "
|
|
235
|
+
"shape": "S1k"
|
|
198
236
|
}
|
|
199
237
|
}
|
|
200
238
|
}
|
|
201
239
|
},
|
|
202
240
|
"Traits": {
|
|
203
|
-
"shape": "
|
|
241
|
+
"shape": "S1k"
|
|
204
242
|
},
|
|
205
243
|
"ICD10CMConcepts": {
|
|
206
244
|
"type": "list",
|
|
@@ -282,13 +320,13 @@
|
|
|
282
320
|
},
|
|
283
321
|
"Text": {},
|
|
284
322
|
"Traits": {
|
|
285
|
-
"shape": "
|
|
323
|
+
"shape": "S1y"
|
|
286
324
|
}
|
|
287
325
|
}
|
|
288
326
|
}
|
|
289
327
|
},
|
|
290
328
|
"Traits": {
|
|
291
|
-
"shape": "
|
|
329
|
+
"shape": "S1y"
|
|
292
330
|
},
|
|
293
331
|
"RxNormConcepts": {
|
|
294
332
|
"type": "list",
|
|
@@ -316,7 +354,7 @@
|
|
|
316
354
|
"type": "structure",
|
|
317
355
|
"members": {
|
|
318
356
|
"Filter": {
|
|
319
|
-
"shape": "
|
|
357
|
+
"shape": "S24"
|
|
320
358
|
},
|
|
321
359
|
"NextToken": {},
|
|
322
360
|
"MaxResults": {
|
|
@@ -328,7 +366,30 @@
|
|
|
328
366
|
"type": "structure",
|
|
329
367
|
"members": {
|
|
330
368
|
"ComprehendMedicalAsyncJobPropertiesList": {
|
|
331
|
-
"shape": "
|
|
369
|
+
"shape": "S27"
|
|
370
|
+
},
|
|
371
|
+
"NextToken": {}
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"ListICD10CMInferenceJobs": {
|
|
376
|
+
"input": {
|
|
377
|
+
"type": "structure",
|
|
378
|
+
"members": {
|
|
379
|
+
"Filter": {
|
|
380
|
+
"shape": "S24"
|
|
381
|
+
},
|
|
382
|
+
"NextToken": {},
|
|
383
|
+
"MaxResults": {
|
|
384
|
+
"type": "integer"
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
"output": {
|
|
389
|
+
"type": "structure",
|
|
390
|
+
"members": {
|
|
391
|
+
"ComprehendMedicalAsyncJobPropertiesList": {
|
|
392
|
+
"shape": "S27"
|
|
332
393
|
},
|
|
333
394
|
"NextToken": {}
|
|
334
395
|
}
|
|
@@ -339,7 +400,7 @@
|
|
|
339
400
|
"type": "structure",
|
|
340
401
|
"members": {
|
|
341
402
|
"Filter": {
|
|
342
|
-
"shape": "
|
|
403
|
+
"shape": "S24"
|
|
343
404
|
},
|
|
344
405
|
"NextToken": {},
|
|
345
406
|
"MaxResults": {
|
|
@@ -351,7 +412,30 @@
|
|
|
351
412
|
"type": "structure",
|
|
352
413
|
"members": {
|
|
353
414
|
"ComprehendMedicalAsyncJobPropertiesList": {
|
|
354
|
-
"shape": "
|
|
415
|
+
"shape": "S27"
|
|
416
|
+
},
|
|
417
|
+
"NextToken": {}
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"ListRxNormInferenceJobs": {
|
|
422
|
+
"input": {
|
|
423
|
+
"type": "structure",
|
|
424
|
+
"members": {
|
|
425
|
+
"Filter": {
|
|
426
|
+
"shape": "S24"
|
|
427
|
+
},
|
|
428
|
+
"NextToken": {},
|
|
429
|
+
"MaxResults": {
|
|
430
|
+
"type": "integer"
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"output": {
|
|
435
|
+
"type": "structure",
|
|
436
|
+
"members": {
|
|
437
|
+
"ComprehendMedicalAsyncJobPropertiesList": {
|
|
438
|
+
"shape": "S27"
|
|
355
439
|
},
|
|
356
440
|
"NextToken": {}
|
|
357
441
|
}
|
|
@@ -389,6 +473,38 @@
|
|
|
389
473
|
}
|
|
390
474
|
}
|
|
391
475
|
},
|
|
476
|
+
"StartICD10CMInferenceJob": {
|
|
477
|
+
"input": {
|
|
478
|
+
"type": "structure",
|
|
479
|
+
"required": [
|
|
480
|
+
"InputDataConfig",
|
|
481
|
+
"OutputDataConfig",
|
|
482
|
+
"DataAccessRoleArn",
|
|
483
|
+
"LanguageCode"
|
|
484
|
+
],
|
|
485
|
+
"members": {
|
|
486
|
+
"InputDataConfig": {
|
|
487
|
+
"shape": "S9"
|
|
488
|
+
},
|
|
489
|
+
"OutputDataConfig": {
|
|
490
|
+
"shape": "Sc"
|
|
491
|
+
},
|
|
492
|
+
"DataAccessRoleArn": {},
|
|
493
|
+
"JobName": {},
|
|
494
|
+
"ClientRequestToken": {
|
|
495
|
+
"idempotencyToken": true
|
|
496
|
+
},
|
|
497
|
+
"KMSKey": {},
|
|
498
|
+
"LanguageCode": {}
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"output": {
|
|
502
|
+
"type": "structure",
|
|
503
|
+
"members": {
|
|
504
|
+
"JobId": {}
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
},
|
|
392
508
|
"StartPHIDetectionJob": {
|
|
393
509
|
"input": {
|
|
394
510
|
"type": "structure",
|
|
@@ -421,6 +537,38 @@
|
|
|
421
537
|
}
|
|
422
538
|
}
|
|
423
539
|
},
|
|
540
|
+
"StartRxNormInferenceJob": {
|
|
541
|
+
"input": {
|
|
542
|
+
"type": "structure",
|
|
543
|
+
"required": [
|
|
544
|
+
"InputDataConfig",
|
|
545
|
+
"OutputDataConfig",
|
|
546
|
+
"DataAccessRoleArn",
|
|
547
|
+
"LanguageCode"
|
|
548
|
+
],
|
|
549
|
+
"members": {
|
|
550
|
+
"InputDataConfig": {
|
|
551
|
+
"shape": "S9"
|
|
552
|
+
},
|
|
553
|
+
"OutputDataConfig": {
|
|
554
|
+
"shape": "Sc"
|
|
555
|
+
},
|
|
556
|
+
"DataAccessRoleArn": {},
|
|
557
|
+
"JobName": {},
|
|
558
|
+
"ClientRequestToken": {
|
|
559
|
+
"idempotencyToken": true
|
|
560
|
+
},
|
|
561
|
+
"KMSKey": {},
|
|
562
|
+
"LanguageCode": {}
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
"output": {
|
|
566
|
+
"type": "structure",
|
|
567
|
+
"members": {
|
|
568
|
+
"JobId": {}
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
},
|
|
424
572
|
"StopEntitiesDetectionV2Job": {
|
|
425
573
|
"input": {
|
|
426
574
|
"type": "structure",
|
|
@@ -438,6 +586,23 @@
|
|
|
438
586
|
}
|
|
439
587
|
}
|
|
440
588
|
},
|
|
589
|
+
"StopICD10CMInferenceJob": {
|
|
590
|
+
"input": {
|
|
591
|
+
"type": "structure",
|
|
592
|
+
"required": [
|
|
593
|
+
"JobId"
|
|
594
|
+
],
|
|
595
|
+
"members": {
|
|
596
|
+
"JobId": {}
|
|
597
|
+
}
|
|
598
|
+
},
|
|
599
|
+
"output": {
|
|
600
|
+
"type": "structure",
|
|
601
|
+
"members": {
|
|
602
|
+
"JobId": {}
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
},
|
|
441
606
|
"StopPHIDetectionJob": {
|
|
442
607
|
"input": {
|
|
443
608
|
"type": "structure",
|
|
@@ -454,6 +619,23 @@
|
|
|
454
619
|
"JobId": {}
|
|
455
620
|
}
|
|
456
621
|
}
|
|
622
|
+
},
|
|
623
|
+
"StopRxNormInferenceJob": {
|
|
624
|
+
"input": {
|
|
625
|
+
"type": "structure",
|
|
626
|
+
"required": [
|
|
627
|
+
"JobId"
|
|
628
|
+
],
|
|
629
|
+
"members": {
|
|
630
|
+
"JobId": {}
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
"output": {
|
|
634
|
+
"type": "structure",
|
|
635
|
+
"members": {
|
|
636
|
+
"JobId": {}
|
|
637
|
+
}
|
|
638
|
+
}
|
|
457
639
|
}
|
|
458
640
|
},
|
|
459
641
|
"shapes": {
|
|
@@ -506,7 +688,7 @@
|
|
|
506
688
|
"S3Key": {}
|
|
507
689
|
}
|
|
508
690
|
},
|
|
509
|
-
"
|
|
691
|
+
"Sr": {
|
|
510
692
|
"type": "list",
|
|
511
693
|
"member": {
|
|
512
694
|
"type": "structure",
|
|
@@ -527,18 +709,18 @@
|
|
|
527
709
|
"Category": {},
|
|
528
710
|
"Type": {},
|
|
529
711
|
"Traits": {
|
|
530
|
-
"shape": "
|
|
712
|
+
"shape": "Sy"
|
|
531
713
|
},
|
|
532
714
|
"Attributes": {
|
|
533
715
|
"type": "list",
|
|
534
716
|
"member": {
|
|
535
|
-
"shape": "
|
|
717
|
+
"shape": "S12"
|
|
536
718
|
}
|
|
537
719
|
}
|
|
538
720
|
}
|
|
539
721
|
}
|
|
540
722
|
},
|
|
541
|
-
"
|
|
723
|
+
"Sy": {
|
|
542
724
|
"type": "list",
|
|
543
725
|
"member": {
|
|
544
726
|
"type": "structure",
|
|
@@ -550,7 +732,7 @@
|
|
|
550
732
|
}
|
|
551
733
|
}
|
|
552
734
|
},
|
|
553
|
-
"
|
|
735
|
+
"S12": {
|
|
554
736
|
"type": "structure",
|
|
555
737
|
"members": {
|
|
556
738
|
"Type": {},
|
|
@@ -573,23 +755,23 @@
|
|
|
573
755
|
"Text": {},
|
|
574
756
|
"Category": {},
|
|
575
757
|
"Traits": {
|
|
576
|
-
"shape": "
|
|
758
|
+
"shape": "Sy"
|
|
577
759
|
}
|
|
578
760
|
}
|
|
579
761
|
},
|
|
580
|
-
"
|
|
762
|
+
"S14": {
|
|
581
763
|
"type": "list",
|
|
582
764
|
"member": {
|
|
583
765
|
"type": "structure",
|
|
584
766
|
"members": {
|
|
585
767
|
"Type": {},
|
|
586
768
|
"Attribute": {
|
|
587
|
-
"shape": "
|
|
769
|
+
"shape": "S12"
|
|
588
770
|
}
|
|
589
771
|
}
|
|
590
772
|
}
|
|
591
773
|
},
|
|
592
|
-
"
|
|
774
|
+
"S1k": {
|
|
593
775
|
"type": "list",
|
|
594
776
|
"member": {
|
|
595
777
|
"type": "structure",
|
|
@@ -601,7 +783,7 @@
|
|
|
601
783
|
}
|
|
602
784
|
}
|
|
603
785
|
},
|
|
604
|
-
"
|
|
786
|
+
"S1y": {
|
|
605
787
|
"type": "list",
|
|
606
788
|
"member": {
|
|
607
789
|
"type": "structure",
|
|
@@ -613,7 +795,7 @@
|
|
|
613
795
|
}
|
|
614
796
|
}
|
|
615
797
|
},
|
|
616
|
-
"
|
|
798
|
+
"S24": {
|
|
617
799
|
"type": "structure",
|
|
618
800
|
"members": {
|
|
619
801
|
"JobName": {},
|
|
@@ -626,7 +808,7 @@
|
|
|
626
808
|
}
|
|
627
809
|
}
|
|
628
810
|
},
|
|
629
|
-
"
|
|
811
|
+
"S27": {
|
|
630
812
|
"type": "list",
|
|
631
813
|
"member": {
|
|
632
814
|
"shape": "S4"
|