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
@@ -898,6 +898,7 @@ declare namespace CloudWatchLogs {
898
898
  eventId?: EventId;
899
899
  }
900
900
  export type FilteredLogEvents = FilteredLogEvent[];
901
+ export type ForceUpdate = boolean;
901
902
  export interface GetLogEventsRequest {
902
903
  /**
903
904
  * The name of the log group.
@@ -1191,6 +1192,10 @@ declare namespace CloudWatchLogs {
1191
1192
  * An IAM policy document that authorizes cross-account users to deliver their log events to the associated destination. This can be up to 5120 bytes.
1192
1193
  */
1193
1194
  accessPolicy: AccessPolicy;
1195
+ /**
1196
+ * Specify true if you are updating an existing destination policy to grant permission to an organization ID instead of granting permission to individual AWS accounts. Before you update a destination policy this way, you must first update the subscription filters in the accounts that send logs to this destination. If you do not, the subscription filters might stop working. By specifying true for forceUpdate, you are affirming that you have already updated the subscription filters. For more information, see Updating an existing cross-account subscription If you omit this parameter, the default of false is used.
1197
+ */
1198
+ forceUpdate?: ForceUpdate;
1194
1199
  }
1195
1200
  export interface PutDestinationRequest {
1196
1201
  /**
@@ -1288,7 +1293,7 @@ declare namespace CloudWatchLogs {
1288
1293
  */
1289
1294
  policyName?: PolicyName;
1290
1295
  /**
1291
- * Details of the new policy, including the identity of the principal that is enabled to put logs to this account. This is formatted as a JSON string. This parameter is required. The following example creates a resource policy enabling the Route 53 service to put DNS query logs in to the specified log group. Replace "logArn" with the ARN of your CloudWatch Logs resource, such as a log group or log stream. CloudWatch Logs also supports aws:SourceArn and aws:SourceAccount condition context keys. In the example resource policy, you would replace the value of SourceArn with the resource making the call from Route 53 to CloudWatch Logs and replace the value of SourceAccount with the Amazon Web Services account ID making that call. { "Version": "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", "Effect": "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] }, "Action": "logs:PutLogEvents", "Resource": "logArn", "Condition": { "ArnLike": { "aws:SourceArn": "myRoute53ResourceArn" }, "StringEquals": { "aws:SourceAccount": "myAwsAccountId" } } } ] }
1296
+ * Details of the new policy, including the identity of the principal that is enabled to put logs to this account. This is formatted as a JSON string. This parameter is required. The following example creates a resource policy enabling the Route 53 service to put DNS query logs in to the specified log group. Replace "logArn" with the ARN of your CloudWatch Logs resource, such as a log group or log stream. CloudWatch Logs also supports aws:SourceArn and aws:SourceAccount condition context keys. In the example resource policy, you would replace the value of SourceArn with the resource making the call from Route 53 to CloudWatch Logs and replace the value of SourceAccount with the Amazon Web Services account ID making that call. { "Version": "2012-10-17", "Statement": [ { "Sid": "Route53LogsToCloudWatchLogs", "Effect": "Allow", "Principal": { "Service": [ "route53.amazonaws.com" ] }, "Action": "logs:PutLogEvents", "Resource": "logArn", "Condition": { "ArnLike": { "aws:SourceArn": "myRoute53ResourceArn" }, "StringEquals": { "aws:SourceAccount": "myAwsAccountId" } } } ] }
1292
1297
  */
1293
1298
  policyDocument?: PolicyDocument;
1294
1299
  }
@@ -43,6 +43,14 @@ declare class ComprehendMedical extends Service {
43
43
  * Gets the properties associated with an InferRxNorm job. Use this operation to get the status of an inference job.
44
44
  */
45
45
  describeRxNormInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.DescribeRxNormInferenceJobResponse) => void): Request<ComprehendMedical.Types.DescribeRxNormInferenceJobResponse, AWSError>;
46
+ /**
47
+ * Gets the properties associated with an InferSNOMEDCT job. Use this operation to get the status of an inference job.
48
+ */
49
+ describeSNOMEDCTInferenceJob(params: ComprehendMedical.Types.DescribeSNOMEDCTInferenceJobRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.DescribeSNOMEDCTInferenceJobResponse) => void): Request<ComprehendMedical.Types.DescribeSNOMEDCTInferenceJobResponse, AWSError>;
50
+ /**
51
+ * Gets the properties associated with an InferSNOMEDCT job. Use this operation to get the status of an inference job.
52
+ */
53
+ describeSNOMEDCTInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.DescribeSNOMEDCTInferenceJobResponse) => void): Request<ComprehendMedical.Types.DescribeSNOMEDCTInferenceJobResponse, AWSError>;
46
54
  /**
47
55
  * The DetectEntities operation is deprecated. You should use the DetectEntitiesV2 operation instead. Inspects the clinical text for a variety of medical entities and returns specific information about them such as entity category, location, and confidence score on that information .
48
56
  */
@@ -83,6 +91,14 @@ declare class ComprehendMedical extends Service {
83
91
  * InferRxNorm detects medications as entities listed in a patient record and links to the normalized concept identifiers in the RxNorm database from the National Library of Medicine. Amazon Comprehend Medical only detects medical entities in English language texts.
84
92
  */
85
93
  inferRxNorm(callback?: (err: AWSError, data: ComprehendMedical.Types.InferRxNormResponse) => void): Request<ComprehendMedical.Types.InferRxNormResponse, AWSError>;
94
+ /**
95
+ * InferSNOMEDCT detects possible medical concepts as entities and links them to codes from the Systematized Nomenclature of Medicine, Clinical Terms (SNOMED-CT) ontology
96
+ */
97
+ inferSNOMEDCT(params: ComprehendMedical.Types.InferSNOMEDCTRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.InferSNOMEDCTResponse) => void): Request<ComprehendMedical.Types.InferSNOMEDCTResponse, AWSError>;
98
+ /**
99
+ * InferSNOMEDCT detects possible medical concepts as entities and links them to codes from the Systematized Nomenclature of Medicine, Clinical Terms (SNOMED-CT) ontology
100
+ */
101
+ inferSNOMEDCT(callback?: (err: AWSError, data: ComprehendMedical.Types.InferSNOMEDCTResponse) => void): Request<ComprehendMedical.Types.InferSNOMEDCTResponse, AWSError>;
86
102
  /**
87
103
  * Gets a list of medical entity detection jobs that you have submitted.
88
104
  */
@@ -115,6 +131,14 @@ declare class ComprehendMedical extends Service {
115
131
  * Gets a list of InferRxNorm jobs that you have submitted.
116
132
  */
117
133
  listRxNormInferenceJobs(callback?: (err: AWSError, data: ComprehendMedical.Types.ListRxNormInferenceJobsResponse) => void): Request<ComprehendMedical.Types.ListRxNormInferenceJobsResponse, AWSError>;
134
+ /**
135
+ * Gets a list of InferSNOMEDCT jobs a user has submitted.
136
+ */
137
+ listSNOMEDCTInferenceJobs(params: ComprehendMedical.Types.ListSNOMEDCTInferenceJobsRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.ListSNOMEDCTInferenceJobsResponse) => void): Request<ComprehendMedical.Types.ListSNOMEDCTInferenceJobsResponse, AWSError>;
138
+ /**
139
+ * Gets a list of InferSNOMEDCT jobs a user has submitted.
140
+ */
141
+ listSNOMEDCTInferenceJobs(callback?: (err: AWSError, data: ComprehendMedical.Types.ListSNOMEDCTInferenceJobsResponse) => void): Request<ComprehendMedical.Types.ListSNOMEDCTInferenceJobsResponse, AWSError>;
118
142
  /**
119
143
  * Starts an asynchronous medical entity detection job for a collection of documents. Use the DescribeEntitiesDetectionV2Job operation to track the status of a job.
120
144
  */
@@ -147,6 +171,14 @@ declare class ComprehendMedical extends Service {
147
171
  * Starts an asynchronous job to detect medication entities and link them to the RxNorm ontology. Use the DescribeRxNormInferenceJob operation to track the status of a job.
148
172
  */
149
173
  startRxNormInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.StartRxNormInferenceJobResponse) => void): Request<ComprehendMedical.Types.StartRxNormInferenceJobResponse, AWSError>;
174
+ /**
175
+ * Starts an asynchronous job to detect medical concepts and link them to the SNOMED-CT ontology. Use the DescribeSNOMEDCTInferenceJob operation to track the status of a job.
176
+ */
177
+ startSNOMEDCTInferenceJob(params: ComprehendMedical.Types.StartSNOMEDCTInferenceJobRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.StartSNOMEDCTInferenceJobResponse) => void): Request<ComprehendMedical.Types.StartSNOMEDCTInferenceJobResponse, AWSError>;
178
+ /**
179
+ * Starts an asynchronous job to detect medical concepts and link them to the SNOMED-CT ontology. Use the DescribeSNOMEDCTInferenceJob operation to track the status of a job.
180
+ */
181
+ startSNOMEDCTInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.StartSNOMEDCTInferenceJobResponse) => void): Request<ComprehendMedical.Types.StartSNOMEDCTInferenceJobResponse, AWSError>;
150
182
  /**
151
183
  * Stops a medical entities detection job in progress.
152
184
  */
@@ -179,6 +211,14 @@ declare class ComprehendMedical extends Service {
179
211
  * Stops an InferRxNorm inference job in progress.
180
212
  */
181
213
  stopRxNormInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.StopRxNormInferenceJobResponse) => void): Request<ComprehendMedical.Types.StopRxNormInferenceJobResponse, AWSError>;
214
+ /**
215
+ * Stops an InferSNOMEDCT inference job in progress.
216
+ */
217
+ stopSNOMEDCTInferenceJob(params: ComprehendMedical.Types.StopSNOMEDCTInferenceJobRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.StopSNOMEDCTInferenceJobResponse) => void): Request<ComprehendMedical.Types.StopSNOMEDCTInferenceJobResponse, AWSError>;
218
+ /**
219
+ * Stops an InferSNOMEDCT inference job in progress.
220
+ */
221
+ stopSNOMEDCTInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.StopSNOMEDCTInferenceJobResponse) => void): Request<ComprehendMedical.Types.StopSNOMEDCTInferenceJobResponse, AWSError>;
182
222
  }
183
223
  declare namespace ComprehendMedical {
184
224
  export type AnyLengthString = string;
@@ -188,11 +228,11 @@ declare namespace ComprehendMedical {
188
228
  */
189
229
  Type?: EntitySubType;
190
230
  /**
191
- * The level of confidence that Amazon Comprehend Medical has that the segment of text is correctly recognized as an attribute.
231
+ * The level of confidence that Comprehend Medical; has that the segment of text is correctly recognized as an attribute.
192
232
  */
193
233
  Score?: Float;
194
234
  /**
195
- * The level of confidence that Amazon Comprehend Medical has that this attribute is correctly related to this entity.
235
+ * The level of confidence that Comprehend Medical; has that this attribute is correctly related to this entity.
196
236
  */
197
237
  RelationshipScore?: Float;
198
238
  /**
@@ -227,6 +267,12 @@ declare namespace ComprehendMedical {
227
267
  export type AttributeList = Attribute[];
228
268
  export type AttributeName = "SIGN"|"SYMPTOM"|"DIAGNOSIS"|"NEGATION"|string;
229
269
  export type BoundedLengthString = string;
270
+ export interface Characters {
271
+ /**
272
+ * The number of characters present in the input text document as processed by Comprehend Medical.
273
+ */
274
+ OriginalTextCharacters?: Integer;
275
+ }
230
276
  export type ClientRequestTokenString = string;
231
277
  export interface ComprehendMedicalAsyncJobFilter {
232
278
  /**
@@ -288,7 +334,7 @@ declare namespace ComprehendMedical {
288
334
  */
289
335
  LanguageCode?: LanguageCode;
290
336
  /**
291
- * The Amazon Resource Name (ARN) that gives Amazon Comprehend Medical read access to your input data.
337
+ * The Amazon Resource Name (ARN) that gives Comprehend Medical; read access to your input data.
292
338
  */
293
339
  DataAccessRoleArn?: IamRoleArn;
294
340
  /**
@@ -307,7 +353,7 @@ declare namespace ComprehendMedical {
307
353
  export type ComprehendMedicalAsyncJobPropertiesList = ComprehendMedicalAsyncJobProperties[];
308
354
  export interface DescribeEntitiesDetectionV2JobRequest {
309
355
  /**
310
- * The identifier that Amazon Comprehend Medical generated for the job. The StartEntitiesDetectionV2Job operation returns this identifier in its response.
356
+ * The identifier that Comprehend Medical; generated for the job. The StartEntitiesDetectionV2Job operation returns this identifier in its response.
311
357
  */
312
358
  JobId: JobId;
313
359
  }
@@ -331,7 +377,7 @@ declare namespace ComprehendMedical {
331
377
  }
332
378
  export interface DescribePHIDetectionJobRequest {
333
379
  /**
334
- * The identifier that Amazon Comprehend Medical generated for the job. The StartPHIDetectionJob operation returns this identifier in its response.
380
+ * The identifier that Comprehend Medical; generated for the job. The StartPHIDetectionJob operation returns this identifier in its response.
335
381
  */
336
382
  JobId: JobId;
337
383
  }
@@ -353,6 +399,15 @@ declare namespace ComprehendMedical {
353
399
  */
354
400
  ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
355
401
  }
402
+ export interface DescribeSNOMEDCTInferenceJobRequest {
403
+ /**
404
+ * The identifier that Amazon Comprehend Medical generated for the job. The StartSNOMEDCTInferenceJob operation returns this identifier in its response.
405
+ */
406
+ JobId: JobId;
407
+ }
408
+ export interface DescribeSNOMEDCTInferenceJobResponse {
409
+ ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
410
+ }
356
411
  export interface DetectEntitiesRequest {
357
412
  /**
358
413
  * A UTF-8 text string containing the clinical content being examined for entities. Each string must contain fewer than 20,000 bytes of characters.
@@ -361,7 +416,7 @@ declare namespace ComprehendMedical {
361
416
  }
362
417
  export interface DetectEntitiesResponse {
363
418
  /**
364
- * The collection of medical entities extracted from the input text and their associated information. For each entity, the response provides the entity text, the entity category, where the entity text begins and ends, and the level of confidence that Amazon Comprehend Medical has in the detection and analysis. Attributes and traits of the entity are also returned.
419
+ * The collection of medical entities extracted from the input text and their associated information. For each entity, the response provides the entity text, the entity category, where the entity text begins and ends, and the level of confidence that Comprehend Medical; has in the detection and analysis. Attributes and traits of the entity are also returned.
365
420
  */
366
421
  Entities: EntityList;
367
422
  /**
@@ -409,7 +464,7 @@ declare namespace ComprehendMedical {
409
464
  }
410
465
  export interface DetectPHIResponse {
411
466
  /**
412
- * The collection of PHI entities extracted from the input text and their associated information. For each entity, the response provides the entity text, the entity category, where the entity text begins and ends, and the level of confidence that Amazon Comprehend Medical has in its detection.
467
+ * The collection of PHI entities extracted from the input text and their associated information. For each entity, the response provides the entity text, the entity category, where the entity text begins and ends, and the level of confidence that Comprehend Medical; has in its detection.
413
468
  */
414
469
  Entities: EntityList;
415
470
  /**
@@ -435,7 +490,7 @@ declare namespace ComprehendMedical {
435
490
  */
436
491
  EndOffset?: Integer;
437
492
  /**
438
- * The level of confidence that Amazon Comprehend Medical has in the accuracy of the detection.
493
+ * The level of confidence that Comprehend Medical; has in the accuracy of the detection.
439
494
  */
440
495
  Score?: Float;
441
496
  /**
@@ -460,7 +515,7 @@ declare namespace ComprehendMedical {
460
515
  Attributes?: AttributeList;
461
516
  }
462
517
  export type EntityList = Entity[];
463
- export type EntitySubType = "NAME"|"DOSAGE"|"ROUTE_OR_MODE"|"FORM"|"FREQUENCY"|"DURATION"|"GENERIC_NAME"|"BRAND_NAME"|"STRENGTH"|"RATE"|"ACUITY"|"TEST_NAME"|"TEST_VALUE"|"TEST_UNITS"|"PROCEDURE_NAME"|"TREATMENT_NAME"|"DATE"|"AGE"|"CONTACT_POINT"|"EMAIL"|"IDENTIFIER"|"URL"|"ADDRESS"|"PROFESSION"|"SYSTEM_ORGAN_SITE"|"DIRECTION"|"QUALITY"|"QUANTITY"|"TIME_EXPRESSION"|"TIME_TO_MEDICATION_NAME"|"TIME_TO_DX_NAME"|"TIME_TO_TEST_NAME"|"TIME_TO_PROCEDURE_NAME"|"TIME_TO_TREATMENT_NAME"|string;
518
+ export type EntitySubType = "NAME"|"DX_NAME"|"DOSAGE"|"ROUTE_OR_MODE"|"FORM"|"FREQUENCY"|"DURATION"|"GENERIC_NAME"|"BRAND_NAME"|"STRENGTH"|"RATE"|"ACUITY"|"TEST_NAME"|"TEST_VALUE"|"TEST_UNITS"|"TEST_UNIT"|"PROCEDURE_NAME"|"TREATMENT_NAME"|"DATE"|"AGE"|"CONTACT_POINT"|"PHONE_OR_FAX"|"EMAIL"|"IDENTIFIER"|"ID"|"URL"|"ADDRESS"|"PROFESSION"|"SYSTEM_ORGAN_SITE"|"DIRECTION"|"QUALITY"|"QUANTITY"|"TIME_EXPRESSION"|"TIME_TO_MEDICATION_NAME"|"TIME_TO_DX_NAME"|"TIME_TO_TEST_NAME"|"TIME_TO_PROCEDURE_NAME"|"TIME_TO_TREATMENT_NAME"|string;
464
519
  export type EntityType = "MEDICATION"|"MEDICAL_CONDITION"|"PROTECTED_HEALTH_INFORMATION"|"TEST_TREATMENT_PROCEDURE"|"ANATOMY"|"TIME_EXPRESSION"|string;
465
520
  export type Float = number;
466
521
  export interface ICD10CMAttribute {
@@ -574,7 +629,7 @@ declare namespace ComprehendMedical {
574
629
  */
575
630
  Name?: ICD10CMTraitName;
576
631
  /**
577
- * The level of confidence that Amazon Comprehend Medical has that the segment of text is correctly recognized as a trait.
632
+ * The level of confidence that Comprehend Medical; has that the segment of text is correctly recognized as a trait.
578
633
  */
579
634
  Score?: Float;
580
635
  }
@@ -621,6 +676,34 @@ declare namespace ComprehendMedical {
621
676
  */
622
677
  ModelVersion?: String;
623
678
  }
679
+ export interface InferSNOMEDCTRequest {
680
+ /**
681
+ * The input text to be analyzed using InferSNOMEDCT. The text should be a string with 1 to 10000 characters.
682
+ */
683
+ Text: OntologyLinkingBoundedLengthString;
684
+ }
685
+ export interface InferSNOMEDCTResponse {
686
+ /**
687
+ * The collection of medical concept entities extracted from the input text and their associated information. For each entity, the response provides the entity text, the entity category, where the entity text begins and ends, and the level of confidence that Comprehend Medical has in the detection and analysis. Attributes and traits of the entity are also returned.
688
+ */
689
+ Entities: SNOMEDCTEntityList;
690
+ /**
691
+ * If the result of the request is truncated, the pagination token can be used to fetch the next page of entities.
692
+ */
693
+ PaginationToken?: String;
694
+ /**
695
+ * The version of the model used to analyze the documents, in the format n.n.n You can use this information to track the model used for a particular batch of documents.
696
+ */
697
+ ModelVersion?: String;
698
+ /**
699
+ * The details of the SNOMED-CT revision, including the edition, language, and version date.
700
+ */
701
+ SNOMEDCTDetails?: SNOMEDCTDetails;
702
+ /**
703
+ * The number of characters in the input request documentation.
704
+ */
705
+ Characters?: Characters;
706
+ }
624
707
  export interface InputDataConfig {
625
708
  /**
626
709
  * The URI of the S3 bucket that contains the input data. The bucket must be in the same region as the API endpoint that you are calling. Each file in the document collection must be less than 40 KB. You can store a maximum of 30 GB in the bucket.
@@ -733,6 +816,27 @@ declare namespace ComprehendMedical {
733
816
  */
734
817
  NextToken?: String;
735
818
  }
819
+ export interface ListSNOMEDCTInferenceJobsRequest {
820
+ Filter?: ComprehendMedicalAsyncJobFilter;
821
+ /**
822
+ * Identifies the next page of InferSNOMEDCT results to return.
823
+ */
824
+ NextToken?: String;
825
+ /**
826
+ * The maximum number of results to return in each page. The default is 100.
827
+ */
828
+ MaxResults?: MaxResultsInteger;
829
+ }
830
+ export interface ListSNOMEDCTInferenceJobsResponse {
831
+ /**
832
+ * A list containing the properties of each job that is returned.
833
+ */
834
+ ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobPropertiesList;
835
+ /**
836
+ * Identifies the next page of results to return.
837
+ */
838
+ NextToken?: String;
839
+ }
736
840
  export type ManifestFilePath = string;
737
841
  export type MaxResultsInteger = number;
738
842
  export type ModelVersion = string;
@@ -743,11 +847,11 @@ declare namespace ComprehendMedical {
743
847
  */
744
848
  S3Bucket: S3Bucket;
745
849
  /**
746
- * The path to the output data files in the S3 bucket. Amazon Comprehend Medical creates an output directory using the job ID so that the output from one job does not overwrite the output of another.
850
+ * The path to the output data files in the S3 bucket. Comprehend Medical; creates an output directory using the job ID so that the output from one job does not overwrite the output of another.
747
851
  */
748
852
  S3Key?: S3Key;
749
853
  }
750
- export type RelationshipType = "EVERY"|"WITH_DOSAGE"|"ADMINISTERED_VIA"|"FOR"|"NEGATIVE"|"OVERLAP"|"DOSAGE"|"ROUTE_OR_MODE"|"FORM"|"FREQUENCY"|"DURATION"|"STRENGTH"|"RATE"|"ACUITY"|"TEST_VALUE"|"TEST_UNITS"|"DIRECTION"|"SYSTEM_ORGAN_SITE"|string;
854
+ export type RelationshipType = "EVERY"|"WITH_DOSAGE"|"ADMINISTERED_VIA"|"FOR"|"NEGATIVE"|"OVERLAP"|"DOSAGE"|"ROUTE_OR_MODE"|"FORM"|"FREQUENCY"|"DURATION"|"STRENGTH"|"RATE"|"ACUITY"|"TEST_VALUE"|"TEST_UNITS"|"TEST_UNIT"|"DIRECTION"|"SYSTEM_ORGAN_SITE"|string;
751
855
  export interface RxNormAttribute {
752
856
  /**
753
857
  * The type of attribute. The types of attributes recognized by InferRxNorm are BRAND_NAME and GENERIC_NAME.
@@ -858,17 +962,152 @@ declare namespace ComprehendMedical {
858
962
  export type RxNormTraitName = "NEGATION"|string;
859
963
  export type S3Bucket = string;
860
964
  export type S3Key = string;
965
+ export interface SNOMEDCTAttribute {
966
+ /**
967
+ * The category of the detected attribute. Possible categories include MEDICAL_CONDITION, ANATOMY, and TEST_TREATMENT_PROCEDURE.
968
+ */
969
+ Category?: SNOMEDCTEntityCategory;
970
+ /**
971
+ * The type of attribute. Possible types include DX_NAME, ACUITY, DIRECTION, SYSTEM_ORGAN_SITE,TEST_NAME, TEST_VALUE, TEST_UNIT, PROCEDURE_NAME, and TREATMENT_NAME.
972
+ */
973
+ Type?: SNOMEDCTAttributeType;
974
+ /**
975
+ * The level of confidence that Comprehend Medical has that the segment of text is correctly recognized as an attribute.
976
+ */
977
+ Score?: Float;
978
+ /**
979
+ * The level of confidence that Comprehend Medical has that this attribute is correctly related to this entity.
980
+ */
981
+ RelationshipScore?: Float;
982
+ /**
983
+ * The type of relationship that exists between the entity and the related attribute.
984
+ */
985
+ RelationshipType?: SNOMEDCTRelationshipType;
986
+ /**
987
+ * The numeric identifier for this attribute. This is a monotonically increasing id unique within this response rather than a global unique identifier.
988
+ */
989
+ Id?: Integer;
990
+ /**
991
+ * The 0-based character offset in the input text that shows where the attribute begins. The offset returns the UTF-8 code point in the string.
992
+ */
993
+ BeginOffset?: Integer;
994
+ /**
995
+ * The 0-based character offset in the input text that shows where the attribute ends. The offset returns the UTF-8 code point in the string.
996
+ */
997
+ EndOffset?: Integer;
998
+ /**
999
+ * The segment of input text extracted as this attribute.
1000
+ */
1001
+ Text?: String;
1002
+ /**
1003
+ * Contextual information for an attribute. Examples include signs, symptoms, diagnosis, and negation.
1004
+ */
1005
+ Traits?: SNOMEDCTTraitList;
1006
+ /**
1007
+ * The SNOMED-CT concepts specific to an attribute, along with a score indicating the likelihood of the match.
1008
+ */
1009
+ SNOMEDCTConcepts?: SNOMEDCTConceptList;
1010
+ }
1011
+ export type SNOMEDCTAttributeList = SNOMEDCTAttribute[];
1012
+ export type SNOMEDCTAttributeType = "ACUITY"|"QUALITY"|"DIRECTION"|"SYSTEM_ORGAN_SITE"|"TEST_VALUE"|"TEST_UNIT"|string;
1013
+ export interface SNOMEDCTConcept {
1014
+ /**
1015
+ * The description of the SNOMED-CT concept.
1016
+ */
1017
+ Description?: String;
1018
+ /**
1019
+ * The numeric ID for the SNOMED-CT concept.
1020
+ */
1021
+ Code?: String;
1022
+ /**
1023
+ * The level of confidence Comprehend Medical has that the entity should be linked to the identified SNOMED-CT concept.
1024
+ */
1025
+ Score?: Float;
1026
+ }
1027
+ export type SNOMEDCTConceptList = SNOMEDCTConcept[];
1028
+ export interface SNOMEDCTDetails {
1029
+ /**
1030
+ * The edition of SNOMED-CT used. The edition used for the InferSNOMEDCT editions is the US edition.
1031
+ */
1032
+ Edition?: String;
1033
+ /**
1034
+ * The language used in the SNOMED-CT ontology. All Amazon Comprehend Medical operations are US English (en).
1035
+ */
1036
+ Language?: String;
1037
+ /**
1038
+ * The version date of the SNOMED-CT ontology used.
1039
+ */
1040
+ VersionDate?: String;
1041
+ }
1042
+ export interface SNOMEDCTEntity {
1043
+ /**
1044
+ * The numeric identifier for the entity. This is a monotonically increasing id unique within this response rather than a global unique identifier.
1045
+ */
1046
+ Id?: Integer;
1047
+ /**
1048
+ * The segment of input text extracted as this entity.
1049
+ */
1050
+ Text?: OntologyLinkingBoundedLengthString;
1051
+ /**
1052
+ * The category of the detected entity. Possible categories are MEDICAL_CONDITION, ANATOMY, or TEST_TREATMENT_PROCEDURE.
1053
+ */
1054
+ Category?: SNOMEDCTEntityCategory;
1055
+ /**
1056
+ * Describes the specific type of entity with category of entities. Possible types include DX_NAME, ACUITY, DIRECTION, SYSTEM_ORGAN_SITE, TEST_NAME, TEST_VALUE, TEST_UNIT, PROCEDURE_NAME, or TREATMENT_NAME.
1057
+ */
1058
+ Type?: SNOMEDCTEntityType;
1059
+ /**
1060
+ * The level of confidence that Comprehend Medical has in the accuracy of the detected entity.
1061
+ */
1062
+ Score?: Float;
1063
+ /**
1064
+ * The 0-based character offset in the input text that shows where the entity begins. The offset returns the UTF-8 code point in the string.
1065
+ */
1066
+ BeginOffset?: Integer;
1067
+ /**
1068
+ * The 0-based character offset in the input text that shows where the entity ends. The offset returns the UTF-8 code point in the string.
1069
+ */
1070
+ EndOffset?: Integer;
1071
+ /**
1072
+ * An extracted segment of the text that is an attribute of an entity, or otherwise related to an entity, such as the dosage of a medication taken.
1073
+ */
1074
+ Attributes?: SNOMEDCTAttributeList;
1075
+ /**
1076
+ * Contextual information for the entity.
1077
+ */
1078
+ Traits?: SNOMEDCTTraitList;
1079
+ /**
1080
+ * The SNOMED concepts that the entity could refer to, along with a score indicating the likelihood of the match.
1081
+ */
1082
+ SNOMEDCTConcepts?: SNOMEDCTConceptList;
1083
+ }
1084
+ export type SNOMEDCTEntityCategory = "MEDICAL_CONDITION"|"ANATOMY"|"TEST_TREATMENT_PROCEDURE"|string;
1085
+ export type SNOMEDCTEntityList = SNOMEDCTEntity[];
1086
+ export type SNOMEDCTEntityType = "DX_NAME"|"TEST_NAME"|"PROCEDURE_NAME"|"TREATMENT_NAME"|string;
1087
+ export type SNOMEDCTRelationshipType = "ACUITY"|"QUALITY"|"TEST_VALUE"|"TEST_UNITS"|"DIRECTION"|"SYSTEM_ORGAN_SITE"|string;
1088
+ export interface SNOMEDCTTrait {
1089
+ /**
1090
+ * The name or contextual description of a detected trait.
1091
+ */
1092
+ Name?: SNOMEDCTTraitName;
1093
+ /**
1094
+ * The level of confidence that Comprehend Medical has in the accuracy of a detected trait.
1095
+ */
1096
+ Score?: Float;
1097
+ }
1098
+ export type SNOMEDCTTraitList = SNOMEDCTTrait[];
1099
+ export type SNOMEDCTTraitName = "NEGATION"|"DIAGNOSIS"|"SIGN"|"SYMPTOM"|string;
861
1100
  export interface StartEntitiesDetectionV2JobRequest {
862
1101
  /**
863
- * Specifies the format and location of the input data for the job.
1102
+ * The input configuration that specifies the format and location of the input data for the job.
864
1103
  */
865
1104
  InputDataConfig: InputDataConfig;
866
1105
  /**
867
- * Specifies where to send the output files.
1106
+ * The output configuration that specifies where to send the output files.
868
1107
  */
869
1108
  OutputDataConfig: OutputDataConfig;
870
1109
  /**
871
- * The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Amazon Comprehend Medical read access to your input data. For more information, see Role-Based Permissions Required for Asynchronous Operations.
1110
+ * The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Comprehend Medical; read access to your input data. For more information, see Role-Based Permissions Required for Asynchronous Operations.
872
1111
  */
873
1112
  DataAccessRoleArn: IamRoleArn;
874
1113
  /**
@@ -876,7 +1115,7 @@ declare namespace ComprehendMedical {
876
1115
  */
877
1116
  JobName?: JobName;
878
1117
  /**
879
- * A unique identifier for the request. If you don't set the client request token, Amazon Comprehend Medical generates one.
1118
+ * A unique identifier for the request. If you don't set the client request token, Comprehend Medical; generates one for you.
880
1119
  */
881
1120
  ClientRequestToken?: ClientRequestTokenString;
882
1121
  /**
@@ -884,7 +1123,7 @@ declare namespace ComprehendMedical {
884
1123
  */
885
1124
  KMSKey?: KMSKey;
886
1125
  /**
887
- * The language of the input documents. All documents must be in the same language.
1126
+ * The language of the input documents. All documents must be in the same language. Comprehend Medical; processes files in US English (en).
888
1127
  */
889
1128
  LanguageCode: LanguageCode;
890
1129
  }
@@ -904,7 +1143,7 @@ declare namespace ComprehendMedical {
904
1143
  */
905
1144
  OutputDataConfig: OutputDataConfig;
906
1145
  /**
907
- * The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Amazon Comprehend Medical read access to your input data. For more information, see Role-Based Permissions Required for Asynchronous Operations.
1146
+ * The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Comprehend Medical; read access to your input data. For more information, see Role-Based Permissions Required for Asynchronous Operations.
908
1147
  */
909
1148
  DataAccessRoleArn: IamRoleArn;
910
1149
  /**
@@ -912,7 +1151,7 @@ declare namespace ComprehendMedical {
912
1151
  */
913
1152
  JobName?: JobName;
914
1153
  /**
915
- * A unique identifier for the request. If you don't set the client request token, Amazon Comprehend Medical generates one.
1154
+ * A unique identifier for the request. If you don't set the client request token, Comprehend Medical; generates one.
916
1155
  */
917
1156
  ClientRequestToken?: ClientRequestTokenString;
918
1157
  /**
@@ -940,7 +1179,7 @@ declare namespace ComprehendMedical {
940
1179
  */
941
1180
  OutputDataConfig: OutputDataConfig;
942
1181
  /**
943
- * The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Amazon Comprehend Medical read access to your input data. For more information, see Role-Based Permissions Required for Asynchronous Operations.
1182
+ * The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Comprehend Medical; read access to your input data. For more information, see Role-Based Permissions Required for Asynchronous Operations.
944
1183
  */
945
1184
  DataAccessRoleArn: IamRoleArn;
946
1185
  /**
@@ -948,7 +1187,7 @@ declare namespace ComprehendMedical {
948
1187
  */
949
1188
  JobName?: JobName;
950
1189
  /**
951
- * A unique identifier for the request. If you don't set the client request token, Amazon Comprehend Medical generates one.
1190
+ * A unique identifier for the request. If you don't set the client request token, Comprehend Medical; generates one.
952
1191
  */
953
1192
  ClientRequestToken?: ClientRequestTokenString;
954
1193
  /**
@@ -976,7 +1215,7 @@ declare namespace ComprehendMedical {
976
1215
  */
977
1216
  OutputDataConfig: OutputDataConfig;
978
1217
  /**
979
- * The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Amazon Comprehend Medical read access to your input data. For more information, see Role-Based Permissions Required for Asynchronous Operations.
1218
+ * The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Comprehend Medical; read access to your input data. For more information, see Role-Based Permissions Required for Asynchronous Operations.
980
1219
  */
981
1220
  DataAccessRoleArn: IamRoleArn;
982
1221
  /**
@@ -984,7 +1223,7 @@ declare namespace ComprehendMedical {
984
1223
  */
985
1224
  JobName?: JobName;
986
1225
  /**
987
- * A unique identifier for the request. If you don't set the client request token, Amazon Comprehend Medical generates one.
1226
+ * A unique identifier for the request. If you don't set the client request token, Comprehend Medical; generates one.
988
1227
  */
989
1228
  ClientRequestToken?: ClientRequestTokenString;
990
1229
  /**
@@ -1002,6 +1241,36 @@ declare namespace ComprehendMedical {
1002
1241
  */
1003
1242
  JobId?: JobId;
1004
1243
  }
1244
+ export interface StartSNOMEDCTInferenceJobRequest {
1245
+ InputDataConfig: InputDataConfig;
1246
+ OutputDataConfig: OutputDataConfig;
1247
+ /**
1248
+ * The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Amazon Comprehend Medical read access to your input data.
1249
+ */
1250
+ DataAccessRoleArn: IamRoleArn;
1251
+ /**
1252
+ * The user generated name the asynchronous InferSNOMEDCT job.
1253
+ */
1254
+ JobName?: JobName;
1255
+ /**
1256
+ * A unique identifier for the request. If you don't set the client request token, Amazon Comprehend Medical generates one.
1257
+ */
1258
+ ClientRequestToken?: ClientRequestTokenString;
1259
+ /**
1260
+ * An AWS Key Management Service key used to encrypt your output files. If you do not specify a key, the files are written in plain text.
1261
+ */
1262
+ KMSKey?: KMSKey;
1263
+ /**
1264
+ * The language of the input documents. All documents must be in the same language.
1265
+ */
1266
+ LanguageCode: LanguageCode;
1267
+ }
1268
+ export interface StartSNOMEDCTInferenceJobResponse {
1269
+ /**
1270
+ * The identifier generated for the job. To get the status of a job, use this identifier with the StartSNOMEDCTInferenceJob operation.
1271
+ */
1272
+ JobId?: JobId;
1273
+ }
1005
1274
  export interface StopEntitiesDetectionV2JobRequest {
1006
1275
  /**
1007
1276
  * The identifier of the medical entities job to stop.
@@ -1050,6 +1319,18 @@ declare namespace ComprehendMedical {
1050
1319
  */
1051
1320
  JobId?: JobId;
1052
1321
  }
1322
+ export interface StopSNOMEDCTInferenceJobRequest {
1323
+ /**
1324
+ * The job id of the asynchronous InferSNOMEDCT job to be stopped.
1325
+ */
1326
+ JobId: JobId;
1327
+ }
1328
+ export interface StopSNOMEDCTInferenceJobResponse {
1329
+ /**
1330
+ * The identifier generated for the job. To get the status of job, use this identifier with the DescribeSNOMEDCTInferenceJob operation.
1331
+ */
1332
+ JobId?: JobId;
1333
+ }
1053
1334
  export type String = string;
1054
1335
  export type Timestamp = Date;
1055
1336
  export interface Trait {
@@ -1058,14 +1339,14 @@ declare namespace ComprehendMedical {
1058
1339
  */
1059
1340
  Name?: AttributeName;
1060
1341
  /**
1061
- * The level of confidence that Amazon Comprehend Medical has in the accuracy of this trait.
1342
+ * The level of confidence that Comprehend Medical; has in the accuracy of this trait.
1062
1343
  */
1063
1344
  Score?: Float;
1064
1345
  }
1065
1346
  export type TraitList = Trait[];
1066
1347
  export interface UnmappedAttribute {
1067
1348
  /**
1068
- * The type of the attribute, could be one of the following values: "MEDICATION", "MEDICAL_CONDITION", "ANATOMY", "TEST_AND_TREATMENT_PROCEDURE" or "PROTECTED_HEALTH_INFORMATION".
1349
+ * The type of the unmapped attribute, could be one of the following values: "MEDICATION", "MEDICAL_CONDITION", "ANATOMY", "TEST_AND_TREATMENT_PROCEDURE" or "PROTECTED_HEALTH_INFORMATION".
1069
1350
  */
1070
1351
  Type?: EntityType;
1071
1352
  /**
@@ -100,7 +100,7 @@ declare class Health extends Service {
100
100
  */
101
101
  disableHealthServiceAccessForOrganization(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
102
102
  /**
103
- * Enables Health to work with Organizations. You can use the organizational view feature to aggregate events from all Amazon Web Services accounts in your organization in a centralized location. This operation also creates a service-linked role for the management account in the organization. To call this operation, you must meet the following requirements: You must have a Business or Enterprise Support plan from Amazon Web Services Support to use the Health API. If you call the Health API from an Amazon Web Services account that doesn't have a Business or Enterprise Support plan, you receive a SubscriptionRequiredException error. You must have permission to call this operation from the organization's management account. For example IAM policies, see Health identity-based policy examples. If you don't have the required support plan, you can instead use the Health console to enable the organizational view feature. For more information, see Aggregating Health events in the Health User Guide.
103
+ * Enables Health to work with Organizations. You can use the organizational view feature to aggregate events from all Amazon Web Services accounts in your organization in a centralized location. This operation also creates a service-linked role for the management account in the organization. To call this operation, you must meet the following requirements: You must have a Business, Enterprise On-Ramp, or Enterprise Support plan from Amazon Web Services Support to use the Health API. If you call the Health API from an Amazon Web Services account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, you receive a SubscriptionRequiredException error. You must have permission to call this operation from the organization's management account. For example IAM policies, see Health identity-based policy examples. If you don't have the required support plan, you can instead use the Health console to enable the organizational view feature. For more information, see Aggregating Health events in the Health User Guide.
104
104
  */
105
105
  enableHealthServiceAccessForOrganization(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
106
106
  }
@@ -726,7 +726,7 @@ declare namespace Health {
726
726
  */
727
727
  errorName?: string;
728
728
  /**
729
- * A message that describes the error. If you call the DescribeEventDetailsForOrganization operation and receive one of the following errors, follow the recommendations in the message: We couldn't find a public event that matches your request. To find an event that is account specific, you must enter an Amazon Web Services account ID in the request. We couldn't find an account specific event for the specified Amazon Web Services account. To find an event that is public, you must enter a null value for the Amazon Web Services account ID in the request. Your Amazon Web Services account doesn't include the Amazon Web Services Support plan required to use the Health API. You must have either a Business or Enterprise Support plan.
729
+ * A message that describes the error. If you call the DescribeEventDetailsForOrganization operation and receive one of the following errors, follow the recommendations in the message: We couldn't find a public event that matches your request. To find an event that is account specific, you must enter an Amazon Web Services account ID in the request. We couldn't find an account specific event for the specified Amazon Web Services account. To find an event that is public, you must enter a null value for the Amazon Web Services account ID in the request. Your Amazon Web Services account doesn't include the Amazon Web Services Support plan required to use the Health API. You must have either a Business, Enterprise On-Ramp, or Enterprise Support plan.
730
730
  */
731
731
  errorMessage?: string;
732
732
  }
package/clients/iot.d.ts CHANGED
@@ -2611,6 +2611,10 @@ declare namespace Iot {
2611
2611
  * Specifies whether IoT validates the token signature in an authorization request.
2612
2612
  */
2613
2613
  signingDisabled?: BooleanKey;
2614
+ /**
2615
+ * When true, the result from the authorizer’s Lambda function is cached for the time specified in refreshAfterInSeconds. The cached result is used while the device reuses the same HTTP connection.
2616
+ */
2617
+ enableCachingForHttp?: EnableCachingForHttp;
2614
2618
  }
2615
2619
  export type AuthorizerFunctionArn = string;
2616
2620
  export type AuthorizerName = string;
@@ -3259,6 +3263,10 @@ declare namespace Iot {
3259
3263
  * Specifies whether IoT validates the token signature in an authorization request.
3260
3264
  */
3261
3265
  signingDisabled?: BooleanKey;
3266
+ /**
3267
+ * When true, the result from the authorizer’s Lambda function is cached for clients that use persistent HTTP connections. The results are cached for the time specified by the Lambda function in refreshAfterInSeconds. This value does not affect authorization of clients that use MQTT connections. The default value is false.
3268
+ */
3269
+ enableCachingForHttp?: EnableCachingForHttp;
3262
3270
  }
3263
3271
  export interface CreateAuthorizerResponse {
3264
3272
  /**
@@ -5797,6 +5805,7 @@ declare namespace Iot {
5797
5805
  export type ElasticsearchId = string;
5798
5806
  export type ElasticsearchIndex = string;
5799
5807
  export type ElasticsearchType = string;
5808
+ export type EnableCachingForHttp = boolean;
5800
5809
  export interface EnableIoTLoggingParams {
5801
5810
  /**
5802
5811
  * The Amazon Resource Name (ARN) of the IAM role used for logging.
@@ -10477,6 +10486,10 @@ declare namespace Iot {
10477
10486
  * The status of the update authorizer request.
10478
10487
  */
10479
10488
  status?: AuthorizerStatus;
10489
+ /**
10490
+ * When true, the result from the authorizer’s Lambda function is cached for the time specified in refreshAfterInSeconds. The cached result is used while the device reuses the same HTTP connection.
10491
+ */
10492
+ enableCachingForHttp?: EnableCachingForHttp;
10480
10493
  }
10481
10494
  export interface UpdateAuthorizerResponse {
10482
10495
  /**