aws-sdk 2.670.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 CHANGED
@@ -1,7 +1,11 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.670.0-->
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
+
5
9
  ## 2.670.0
6
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.
7
11
  * feature: SSM: AWS Systems Manager Parameter Store launches new data type to support aliases in EC2 APIs
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.670.0.min.js"></script>
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": "Sa"
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": "Sa"
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
- "Sa": {
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": "Sn"
111
+ "shape": "Sr"
74
112
  },
75
113
  "UnmappedAttributes": {
76
- "shape": "S10"
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": "Sn"
141
+ "shape": "Sr"
104
142
  },
105
143
  "UnmappedAttributes": {
106
- "shape": "S10"
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": "Sn"
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": "S1g"
235
+ "shape": "S1k"
198
236
  }
199
237
  }
200
238
  }
201
239
  },
202
240
  "Traits": {
203
- "shape": "S1g"
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": "S1u"
323
+ "shape": "S1y"
286
324
  }
287
325
  }
288
326
  }
289
327
  },
290
328
  "Traits": {
291
- "shape": "S1u"
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": "S20"
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": "S23"
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": "S20"
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": "S23"
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
- "Sn": {
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": "Su"
712
+ "shape": "Sy"
531
713
  },
532
714
  "Attributes": {
533
715
  "type": "list",
534
716
  "member": {
535
- "shape": "Sy"
717
+ "shape": "S12"
536
718
  }
537
719
  }
538
720
  }
539
721
  }
540
722
  },
541
- "Su": {
723
+ "Sy": {
542
724
  "type": "list",
543
725
  "member": {
544
726
  "type": "structure",
@@ -550,7 +732,7 @@
550
732
  }
551
733
  }
552
734
  },
553
- "Sy": {
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": "Su"
758
+ "shape": "Sy"
577
759
  }
578
760
  }
579
761
  },
580
- "S10": {
762
+ "S14": {
581
763
  "type": "list",
582
764
  "member": {
583
765
  "type": "structure",
584
766
  "members": {
585
767
  "Type": {},
586
768
  "Attribute": {
587
- "shape": "Sy"
769
+ "shape": "S12"
588
770
  }
589
771
  }
590
772
  }
591
773
  },
592
- "S1g": {
774
+ "S1k": {
593
775
  "type": "list",
594
776
  "member": {
595
777
  "type": "structure",
@@ -601,7 +783,7 @@
601
783
  }
602
784
  }
603
785
  },
604
- "S1u": {
786
+ "S1y": {
605
787
  "type": "list",
606
788
  "member": {
607
789
  "type": "structure",
@@ -613,7 +795,7 @@
613
795
  }
614
796
  }
615
797
  },
616
- "S20": {
798
+ "S24": {
617
799
  "type": "structure",
618
800
  "members": {
619
801
  "JobName": {},
@@ -626,7 +808,7 @@
626
808
  }
627
809
  }
628
810
  },
629
- "S23": {
811
+ "S27": {
630
812
  "type": "list",
631
813
  "member": {
632
814
  "shape": "S4"
@@ -43,9 +43,34 @@ declare class CodeStarconnections extends Service {
43
43
  * Lists the connections associated with your account.
44
44
  */
45
45
  listConnections(callback?: (err: AWSError, data: CodeStarconnections.Types.ListConnectionsOutput) => void): Request<CodeStarconnections.Types.ListConnectionsOutput, AWSError>;
46
+ /**
47
+ * Gets the set of key-value pairs (metadata) that are used to manage the resource.
48
+ */
49
+ listTagsForResource(params: CodeStarconnections.Types.ListTagsForResourceInput, callback?: (err: AWSError, data: CodeStarconnections.Types.ListTagsForResourceOutput) => void): Request<CodeStarconnections.Types.ListTagsForResourceOutput, AWSError>;
50
+ /**
51
+ * Gets the set of key-value pairs (metadata) that are used to manage the resource.
52
+ */
53
+ listTagsForResource(callback?: (err: AWSError, data: CodeStarconnections.Types.ListTagsForResourceOutput) => void): Request<CodeStarconnections.Types.ListTagsForResourceOutput, AWSError>;
54
+ /**
55
+ * Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.
56
+ */
57
+ tagResource(params: CodeStarconnections.Types.TagResourceInput, callback?: (err: AWSError, data: CodeStarconnections.Types.TagResourceOutput) => void): Request<CodeStarconnections.Types.TagResourceOutput, AWSError>;
58
+ /**
59
+ * Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.
60
+ */
61
+ tagResource(callback?: (err: AWSError, data: CodeStarconnections.Types.TagResourceOutput) => void): Request<CodeStarconnections.Types.TagResourceOutput, AWSError>;
62
+ /**
63
+ * Removes tags from an AWS resource.
64
+ */
65
+ untagResource(params: CodeStarconnections.Types.UntagResourceInput, callback?: (err: AWSError, data: CodeStarconnections.Types.UntagResourceOutput) => void): Request<CodeStarconnections.Types.UntagResourceOutput, AWSError>;
66
+ /**
67
+ * Removes tags from an AWS resource.
68
+ */
69
+ untagResource(callback?: (err: AWSError, data: CodeStarconnections.Types.UntagResourceOutput) => void): Request<CodeStarconnections.Types.UntagResourceOutput, AWSError>;
46
70
  }
47
71
  declare namespace CodeStarconnections {
48
72
  export type AccountId = string;
73
+ export type AmazonResourceName = string;
49
74
  export interface Connection {
50
75
  /**
51
76
  * The name of the connection. Connection names must be unique in an AWS user account.
@@ -60,7 +85,7 @@ declare namespace CodeStarconnections {
60
85
  */
61
86
  ProviderType?: ProviderType;
62
87
  /**
63
- * The name of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.
88
+ * The identifier of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.
64
89
  */
65
90
  OwnerAccountId?: AccountId;
66
91
  /**
@@ -81,12 +106,20 @@ declare namespace CodeStarconnections {
81
106
  * The name of the connection to be created. The name must be unique in the calling AWS account.
82
107
  */
83
108
  ConnectionName: ConnectionName;
109
+ /**
110
+ * The key-value pair to use when tagging the resource.
111
+ */
112
+ Tags?: TagList;
84
113
  }
85
114
  export interface CreateConnectionOutput {
86
115
  /**
87
116
  * The Amazon Resource Name (ARN) of the connection to be created. The ARN is used as the connection reference when the connection is shared between AWS services. The ARN is never reused if the connection is deleted.
88
117
  */
89
118
  ConnectionArn: ConnectionArn;
119
+ /**
120
+ * Specifies the tags applied to the resource.
121
+ */
122
+ Tags?: TagList;
90
123
  }
91
124
  export interface DeleteConnectionInput {
92
125
  /**
@@ -132,9 +165,59 @@ declare namespace CodeStarconnections {
132
165
  */
133
166
  NextToken?: NextToken;
134
167
  }
168
+ export interface ListTagsForResourceInput {
169
+ /**
170
+ * The Amazon Resource Name (ARN) of the resource for which you want to get information about tags, if any.
171
+ */
172
+ ResourceArn: AmazonResourceName;
173
+ }
174
+ export interface ListTagsForResourceOutput {
175
+ /**
176
+ * A list of tag key and value pairs associated with the specified resource.
177
+ */
178
+ Tags?: TagList;
179
+ }
135
180
  export type MaxResults = number;
136
181
  export type NextToken = string;
137
182
  export type ProviderType = "Bitbucket"|string;
183
+ export interface Tag {
184
+ /**
185
+ * The tag's key.
186
+ */
187
+ Key: TagKey;
188
+ /**
189
+ * The tag's value.
190
+ */
191
+ Value: TagValue;
192
+ }
193
+ export type TagKey = string;
194
+ export type TagKeyList = TagKey[];
195
+ export type TagList = Tag[];
196
+ export interface TagResourceInput {
197
+ /**
198
+ * The Amazon Resource Name (ARN) of the resource to which you want to add or update tags.
199
+ */
200
+ ResourceArn: AmazonResourceName;
201
+ /**
202
+ * The tags you want to modify or add to the resource.
203
+ */
204
+ Tags: TagList;
205
+ }
206
+ export interface TagResourceOutput {
207
+ }
208
+ export type TagValue = string;
209
+ export interface UntagResourceInput {
210
+ /**
211
+ * The Amazon Resource Name (ARN) of the resource to remove tags from.
212
+ */
213
+ ResourceArn: AmazonResourceName;
214
+ /**
215
+ * The list of keys for the tags to be removed from the resource.
216
+ */
217
+ TagKeys: TagKeyList;
218
+ }
219
+ export interface UntagResourceOutput {
220
+ }
138
221
  /**
139
222
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
140
223
  */