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
|
@@ -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
|
|
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
|
*/
|
|
@@ -19,6 +19,14 @@ declare class ComprehendMedical extends Service {
|
|
|
19
19
|
* Gets the properties associated with a medical entities detection job. Use this operation to get the status of a detection job.
|
|
20
20
|
*/
|
|
21
21
|
describeEntitiesDetectionV2Job(callback?: (err: AWSError, data: ComprehendMedical.Types.DescribeEntitiesDetectionV2JobResponse) => void): Request<ComprehendMedical.Types.DescribeEntitiesDetectionV2JobResponse, AWSError>;
|
|
22
|
+
/**
|
|
23
|
+
* Gets the properties associated with an InferICD10CM job. Use this operation to get the status of an inference job.
|
|
24
|
+
*/
|
|
25
|
+
describeICD10CMInferenceJob(params: ComprehendMedical.Types.DescribeICD10CMInferenceJobRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.DescribeICD10CMInferenceJobResponse) => void): Request<ComprehendMedical.Types.DescribeICD10CMInferenceJobResponse, AWSError>;
|
|
26
|
+
/**
|
|
27
|
+
* Gets the properties associated with an InferICD10CM job. Use this operation to get the status of an inference job.
|
|
28
|
+
*/
|
|
29
|
+
describeICD10CMInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.DescribeICD10CMInferenceJobResponse) => void): Request<ComprehendMedical.Types.DescribeICD10CMInferenceJobResponse, AWSError>;
|
|
22
30
|
/**
|
|
23
31
|
* Gets the properties associated with a protected health information (PHI) detection job. Use this operation to get the status of a detection job.
|
|
24
32
|
*/
|
|
@@ -27,6 +35,14 @@ declare class ComprehendMedical extends Service {
|
|
|
27
35
|
* Gets the properties associated with a protected health information (PHI) detection job. Use this operation to get the status of a detection job.
|
|
28
36
|
*/
|
|
29
37
|
describePHIDetectionJob(callback?: (err: AWSError, data: ComprehendMedical.Types.DescribePHIDetectionJobResponse) => void): Request<ComprehendMedical.Types.DescribePHIDetectionJobResponse, AWSError>;
|
|
38
|
+
/**
|
|
39
|
+
* Gets the properties associated with an InferRxNorm job. Use this operation to get the status of an inference job.
|
|
40
|
+
*/
|
|
41
|
+
describeRxNormInferenceJob(params: ComprehendMedical.Types.DescribeRxNormInferenceJobRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.DescribeRxNormInferenceJobResponse) => void): Request<ComprehendMedical.Types.DescribeRxNormInferenceJobResponse, AWSError>;
|
|
42
|
+
/**
|
|
43
|
+
* Gets the properties associated with an InferRxNorm job. Use this operation to get the status of an inference job.
|
|
44
|
+
*/
|
|
45
|
+
describeRxNormInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.DescribeRxNormInferenceJobResponse) => void): Request<ComprehendMedical.Types.DescribeRxNormInferenceJobResponse, AWSError>;
|
|
30
46
|
/**
|
|
31
47
|
* 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 .
|
|
32
48
|
*/
|
|
@@ -75,6 +91,14 @@ declare class ComprehendMedical extends Service {
|
|
|
75
91
|
* Gets a list of medical entity detection jobs that you have submitted.
|
|
76
92
|
*/
|
|
77
93
|
listEntitiesDetectionV2Jobs(callback?: (err: AWSError, data: ComprehendMedical.Types.ListEntitiesDetectionV2JobsResponse) => void): Request<ComprehendMedical.Types.ListEntitiesDetectionV2JobsResponse, AWSError>;
|
|
94
|
+
/**
|
|
95
|
+
* Gets a list of InferICD10CM jobs that you have submitted.
|
|
96
|
+
*/
|
|
97
|
+
listICD10CMInferenceJobs(params: ComprehendMedical.Types.ListICD10CMInferenceJobsRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.ListICD10CMInferenceJobsResponse) => void): Request<ComprehendMedical.Types.ListICD10CMInferenceJobsResponse, AWSError>;
|
|
98
|
+
/**
|
|
99
|
+
* Gets a list of InferICD10CM jobs that you have submitted.
|
|
100
|
+
*/
|
|
101
|
+
listICD10CMInferenceJobs(callback?: (err: AWSError, data: ComprehendMedical.Types.ListICD10CMInferenceJobsResponse) => void): Request<ComprehendMedical.Types.ListICD10CMInferenceJobsResponse, AWSError>;
|
|
78
102
|
/**
|
|
79
103
|
* Gets a list of protected health information (PHI) detection jobs that you have submitted.
|
|
80
104
|
*/
|
|
@@ -83,6 +107,14 @@ declare class ComprehendMedical extends Service {
|
|
|
83
107
|
* Gets a list of protected health information (PHI) detection jobs that you have submitted.
|
|
84
108
|
*/
|
|
85
109
|
listPHIDetectionJobs(callback?: (err: AWSError, data: ComprehendMedical.Types.ListPHIDetectionJobsResponse) => void): Request<ComprehendMedical.Types.ListPHIDetectionJobsResponse, AWSError>;
|
|
110
|
+
/**
|
|
111
|
+
* Gets a list of InferRxNorm jobs that you have submitted.
|
|
112
|
+
*/
|
|
113
|
+
listRxNormInferenceJobs(params: ComprehendMedical.Types.ListRxNormInferenceJobsRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.ListRxNormInferenceJobsResponse) => void): Request<ComprehendMedical.Types.ListRxNormInferenceJobsResponse, AWSError>;
|
|
114
|
+
/**
|
|
115
|
+
* Gets a list of InferRxNorm jobs that you have submitted.
|
|
116
|
+
*/
|
|
117
|
+
listRxNormInferenceJobs(callback?: (err: AWSError, data: ComprehendMedical.Types.ListRxNormInferenceJobsResponse) => void): Request<ComprehendMedical.Types.ListRxNormInferenceJobsResponse, AWSError>;
|
|
86
118
|
/**
|
|
87
119
|
* Starts an asynchronous medical entity detection job for a collection of documents. Use the DescribeEntitiesDetectionV2Job operation to track the status of a job.
|
|
88
120
|
*/
|
|
@@ -91,6 +123,14 @@ declare class ComprehendMedical extends Service {
|
|
|
91
123
|
* Starts an asynchronous medical entity detection job for a collection of documents. Use the DescribeEntitiesDetectionV2Job operation to track the status of a job.
|
|
92
124
|
*/
|
|
93
125
|
startEntitiesDetectionV2Job(callback?: (err: AWSError, data: ComprehendMedical.Types.StartEntitiesDetectionV2JobResponse) => void): Request<ComprehendMedical.Types.StartEntitiesDetectionV2JobResponse, AWSError>;
|
|
126
|
+
/**
|
|
127
|
+
* Starts an asynchronous job to detect medical conditions and link them to the ICD-10-CM ontology. Use the DescribeICD10CMInferenceJob operation to track the status of a job.
|
|
128
|
+
*/
|
|
129
|
+
startICD10CMInferenceJob(params: ComprehendMedical.Types.StartICD10CMInferenceJobRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.StartICD10CMInferenceJobResponse) => void): Request<ComprehendMedical.Types.StartICD10CMInferenceJobResponse, AWSError>;
|
|
130
|
+
/**
|
|
131
|
+
* Starts an asynchronous job to detect medical conditions and link them to the ICD-10-CM ontology. Use the DescribeICD10CMInferenceJob operation to track the status of a job.
|
|
132
|
+
*/
|
|
133
|
+
startICD10CMInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.StartICD10CMInferenceJobResponse) => void): Request<ComprehendMedical.Types.StartICD10CMInferenceJobResponse, AWSError>;
|
|
94
134
|
/**
|
|
95
135
|
* Starts an asynchronous job to detect protected health information (PHI). Use the DescribePHIDetectionJob operation to track the status of a job.
|
|
96
136
|
*/
|
|
@@ -99,6 +139,14 @@ declare class ComprehendMedical extends Service {
|
|
|
99
139
|
* Starts an asynchronous job to detect protected health information (PHI). Use the DescribePHIDetectionJob operation to track the status of a job.
|
|
100
140
|
*/
|
|
101
141
|
startPHIDetectionJob(callback?: (err: AWSError, data: ComprehendMedical.Types.StartPHIDetectionJobResponse) => void): Request<ComprehendMedical.Types.StartPHIDetectionJobResponse, AWSError>;
|
|
142
|
+
/**
|
|
143
|
+
* 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.
|
|
144
|
+
*/
|
|
145
|
+
startRxNormInferenceJob(params: ComprehendMedical.Types.StartRxNormInferenceJobRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.StartRxNormInferenceJobResponse) => void): Request<ComprehendMedical.Types.StartRxNormInferenceJobResponse, AWSError>;
|
|
146
|
+
/**
|
|
147
|
+
* 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
|
+
*/
|
|
149
|
+
startRxNormInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.StartRxNormInferenceJobResponse) => void): Request<ComprehendMedical.Types.StartRxNormInferenceJobResponse, AWSError>;
|
|
102
150
|
/**
|
|
103
151
|
* Stops a medical entities detection job in progress.
|
|
104
152
|
*/
|
|
@@ -107,6 +155,14 @@ declare class ComprehendMedical extends Service {
|
|
|
107
155
|
* Stops a medical entities detection job in progress.
|
|
108
156
|
*/
|
|
109
157
|
stopEntitiesDetectionV2Job(callback?: (err: AWSError, data: ComprehendMedical.Types.StopEntitiesDetectionV2JobResponse) => void): Request<ComprehendMedical.Types.StopEntitiesDetectionV2JobResponse, AWSError>;
|
|
158
|
+
/**
|
|
159
|
+
* Stops an InferICD10CM inference job in progress.
|
|
160
|
+
*/
|
|
161
|
+
stopICD10CMInferenceJob(params: ComprehendMedical.Types.StopICD10CMInferenceJobRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.StopICD10CMInferenceJobResponse) => void): Request<ComprehendMedical.Types.StopICD10CMInferenceJobResponse, AWSError>;
|
|
162
|
+
/**
|
|
163
|
+
* Stops an InferICD10CM inference job in progress.
|
|
164
|
+
*/
|
|
165
|
+
stopICD10CMInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.StopICD10CMInferenceJobResponse) => void): Request<ComprehendMedical.Types.StopICD10CMInferenceJobResponse, AWSError>;
|
|
110
166
|
/**
|
|
111
167
|
* Stops a protected health information (PHI) detection job in progress.
|
|
112
168
|
*/
|
|
@@ -115,6 +171,14 @@ declare class ComprehendMedical extends Service {
|
|
|
115
171
|
* Stops a protected health information (PHI) detection job in progress.
|
|
116
172
|
*/
|
|
117
173
|
stopPHIDetectionJob(callback?: (err: AWSError, data: ComprehendMedical.Types.StopPHIDetectionJobResponse) => void): Request<ComprehendMedical.Types.StopPHIDetectionJobResponse, AWSError>;
|
|
174
|
+
/**
|
|
175
|
+
* Stops an InferRxNorm inference job in progress.
|
|
176
|
+
*/
|
|
177
|
+
stopRxNormInferenceJob(params: ComprehendMedical.Types.StopRxNormInferenceJobRequest, callback?: (err: AWSError, data: ComprehendMedical.Types.StopRxNormInferenceJobResponse) => void): Request<ComprehendMedical.Types.StopRxNormInferenceJobResponse, AWSError>;
|
|
178
|
+
/**
|
|
179
|
+
* Stops an InferRxNorm inference job in progress.
|
|
180
|
+
*/
|
|
181
|
+
stopRxNormInferenceJob(callback?: (err: AWSError, data: ComprehendMedical.Types.StopRxNormInferenceJobResponse) => void): Request<ComprehendMedical.Types.StopRxNormInferenceJobResponse, AWSError>;
|
|
118
182
|
}
|
|
119
183
|
declare namespace ComprehendMedical {
|
|
120
184
|
export type AnyLengthString = string;
|
|
@@ -253,6 +317,18 @@ declare namespace ComprehendMedical {
|
|
|
253
317
|
*/
|
|
254
318
|
ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
|
|
255
319
|
}
|
|
320
|
+
export interface DescribeICD10CMInferenceJobRequest {
|
|
321
|
+
/**
|
|
322
|
+
* The identifier that Amazon Comprehend Medical generated for the job. The StartICD10CMInferenceJob operation returns this identifier in its response.
|
|
323
|
+
*/
|
|
324
|
+
JobId: JobId;
|
|
325
|
+
}
|
|
326
|
+
export interface DescribeICD10CMInferenceJobResponse {
|
|
327
|
+
/**
|
|
328
|
+
* An object that contains the properties associated with a detection job.
|
|
329
|
+
*/
|
|
330
|
+
ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
|
|
331
|
+
}
|
|
256
332
|
export interface DescribePHIDetectionJobRequest {
|
|
257
333
|
/**
|
|
258
334
|
* The identifier that Amazon Comprehend Medical generated for the job. The StartPHIDetectionJob operation returns this identifier in its response.
|
|
@@ -265,6 +341,18 @@ declare namespace ComprehendMedical {
|
|
|
265
341
|
*/
|
|
266
342
|
ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
|
|
267
343
|
}
|
|
344
|
+
export interface DescribeRxNormInferenceJobRequest {
|
|
345
|
+
/**
|
|
346
|
+
* The identifier that Amazon Comprehend Medical generated for the job. The StartRxNormInferenceJob operation returns this identifier in its response.
|
|
347
|
+
*/
|
|
348
|
+
JobId: JobId;
|
|
349
|
+
}
|
|
350
|
+
export interface DescribeRxNormInferenceJobResponse {
|
|
351
|
+
/**
|
|
352
|
+
* An object that contains the properties associated with a detection job.
|
|
353
|
+
*/
|
|
354
|
+
ComprehendMedicalAsyncJobProperties?: ComprehendMedicalAsyncJobProperties;
|
|
355
|
+
}
|
|
268
356
|
export interface DetectEntitiesRequest {
|
|
269
357
|
/**
|
|
270
358
|
* A UTF-8 text string containing the clinical content being examined for entities. Each string must contain fewer than 20,000 bytes of characters.
|
|
@@ -564,6 +652,30 @@ declare namespace ComprehendMedical {
|
|
|
564
652
|
*/
|
|
565
653
|
NextToken?: String;
|
|
566
654
|
}
|
|
655
|
+
export interface ListICD10CMInferenceJobsRequest {
|
|
656
|
+
/**
|
|
657
|
+
* Filters the jobs that are returned. You can filter jobs based on their names, status, or the date and time that they were submitted. You can only set one filter at a time.
|
|
658
|
+
*/
|
|
659
|
+
Filter?: ComprehendMedicalAsyncJobFilter;
|
|
660
|
+
/**
|
|
661
|
+
* Identifies the next page of results to return.
|
|
662
|
+
*/
|
|
663
|
+
NextToken?: String;
|
|
664
|
+
/**
|
|
665
|
+
* The maximum number of results to return in each page. The default is 100.
|
|
666
|
+
*/
|
|
667
|
+
MaxResults?: MaxResultsInteger;
|
|
668
|
+
}
|
|
669
|
+
export interface ListICD10CMInferenceJobsResponse {
|
|
670
|
+
/**
|
|
671
|
+
* A list containing the properties of each job that is returned.
|
|
672
|
+
*/
|
|
673
|
+
ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobPropertiesList;
|
|
674
|
+
/**
|
|
675
|
+
* Identifies the next page of results to return.
|
|
676
|
+
*/
|
|
677
|
+
NextToken?: String;
|
|
678
|
+
}
|
|
567
679
|
export interface ListPHIDetectionJobsRequest {
|
|
568
680
|
/**
|
|
569
681
|
* Filters the jobs that are returned. You can filter jobs based on their names, status, or the date and time that they were submitted. You can only set one filter at a time.
|
|
@@ -588,6 +700,30 @@ declare namespace ComprehendMedical {
|
|
|
588
700
|
*/
|
|
589
701
|
NextToken?: String;
|
|
590
702
|
}
|
|
703
|
+
export interface ListRxNormInferenceJobsRequest {
|
|
704
|
+
/**
|
|
705
|
+
* Filters the jobs that are returned. You can filter jobs based on their names, status, or the date and time that they were submitted. You can only set one filter at a time.
|
|
706
|
+
*/
|
|
707
|
+
Filter?: ComprehendMedicalAsyncJobFilter;
|
|
708
|
+
/**
|
|
709
|
+
* Identifies the next page of results to return.
|
|
710
|
+
*/
|
|
711
|
+
NextToken?: String;
|
|
712
|
+
/**
|
|
713
|
+
* Identifies the next page of results to return.
|
|
714
|
+
*/
|
|
715
|
+
MaxResults?: MaxResultsInteger;
|
|
716
|
+
}
|
|
717
|
+
export interface ListRxNormInferenceJobsResponse {
|
|
718
|
+
/**
|
|
719
|
+
* The maximum number of results to return in each page. The default is 100.
|
|
720
|
+
*/
|
|
721
|
+
ComprehendMedicalAsyncJobPropertiesList?: ComprehendMedicalAsyncJobPropertiesList;
|
|
722
|
+
/**
|
|
723
|
+
* Identifies the next page of results to return.
|
|
724
|
+
*/
|
|
725
|
+
NextToken?: String;
|
|
726
|
+
}
|
|
591
727
|
export type ManifestFilePath = string;
|
|
592
728
|
export type MaxResultsInteger = number;
|
|
593
729
|
export type ModelVersion = string;
|
|
@@ -749,6 +885,42 @@ declare namespace ComprehendMedical {
|
|
|
749
885
|
*/
|
|
750
886
|
JobId?: JobId;
|
|
751
887
|
}
|
|
888
|
+
export interface StartICD10CMInferenceJobRequest {
|
|
889
|
+
/**
|
|
890
|
+
* Specifies the format and location of the input data for the job.
|
|
891
|
+
*/
|
|
892
|
+
InputDataConfig: InputDataConfig;
|
|
893
|
+
/**
|
|
894
|
+
* Specifies where to send the output files.
|
|
895
|
+
*/
|
|
896
|
+
OutputDataConfig: OutputDataConfig;
|
|
897
|
+
/**
|
|
898
|
+
* 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.
|
|
899
|
+
*/
|
|
900
|
+
DataAccessRoleArn: IamRoleArn;
|
|
901
|
+
/**
|
|
902
|
+
* The identifier of the job.
|
|
903
|
+
*/
|
|
904
|
+
JobName?: JobName;
|
|
905
|
+
/**
|
|
906
|
+
* A unique identifier for the request. If you don't set the client request token, Amazon Comprehend Medical generates one.
|
|
907
|
+
*/
|
|
908
|
+
ClientRequestToken?: ClientRequestTokenString;
|
|
909
|
+
/**
|
|
910
|
+
* An AWS Key Management Service key to encrypt your output files. If you do not specify a key, the files are written in plain text.
|
|
911
|
+
*/
|
|
912
|
+
KMSKey?: KMSKey;
|
|
913
|
+
/**
|
|
914
|
+
* The language of the input documents. All documents must be in the same language.
|
|
915
|
+
*/
|
|
916
|
+
LanguageCode: LanguageCode;
|
|
917
|
+
}
|
|
918
|
+
export interface StartICD10CMInferenceJobResponse {
|
|
919
|
+
/**
|
|
920
|
+
* The identifier generated for the job. To get the status of a job, use this identifier with the StartICD10CMInferenceJob operation.
|
|
921
|
+
*/
|
|
922
|
+
JobId?: JobId;
|
|
923
|
+
}
|
|
752
924
|
export interface StartPHIDetectionJobRequest {
|
|
753
925
|
/**
|
|
754
926
|
* Specifies the format and location of the input data for the job.
|
|
@@ -785,6 +957,42 @@ declare namespace ComprehendMedical {
|
|
|
785
957
|
*/
|
|
786
958
|
JobId?: JobId;
|
|
787
959
|
}
|
|
960
|
+
export interface StartRxNormInferenceJobRequest {
|
|
961
|
+
/**
|
|
962
|
+
* Specifies the format and location of the input data for the job.
|
|
963
|
+
*/
|
|
964
|
+
InputDataConfig: InputDataConfig;
|
|
965
|
+
/**
|
|
966
|
+
* Specifies where to send the output files.
|
|
967
|
+
*/
|
|
968
|
+
OutputDataConfig: OutputDataConfig;
|
|
969
|
+
/**
|
|
970
|
+
* 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.
|
|
971
|
+
*/
|
|
972
|
+
DataAccessRoleArn: IamRoleArn;
|
|
973
|
+
/**
|
|
974
|
+
* The identifier of the job.
|
|
975
|
+
*/
|
|
976
|
+
JobName?: JobName;
|
|
977
|
+
/**
|
|
978
|
+
* A unique identifier for the request. If you don't set the client request token, Amazon Comprehend Medical generates one.
|
|
979
|
+
*/
|
|
980
|
+
ClientRequestToken?: ClientRequestTokenString;
|
|
981
|
+
/**
|
|
982
|
+
* An AWS Key Management Service key to encrypt your output files. If you do not specify a key, the files are written in plain text.
|
|
983
|
+
*/
|
|
984
|
+
KMSKey?: KMSKey;
|
|
985
|
+
/**
|
|
986
|
+
* The language of the input documents. All documents must be in the same language.
|
|
987
|
+
*/
|
|
988
|
+
LanguageCode: LanguageCode;
|
|
989
|
+
}
|
|
990
|
+
export interface StartRxNormInferenceJobResponse {
|
|
991
|
+
/**
|
|
992
|
+
* The identifier of the job.
|
|
993
|
+
*/
|
|
994
|
+
JobId?: JobId;
|
|
995
|
+
}
|
|
788
996
|
export interface StopEntitiesDetectionV2JobRequest {
|
|
789
997
|
/**
|
|
790
998
|
* The identifier of the medical entities job to stop.
|
|
@@ -797,6 +1005,18 @@ declare namespace ComprehendMedical {
|
|
|
797
1005
|
*/
|
|
798
1006
|
JobId?: JobId;
|
|
799
1007
|
}
|
|
1008
|
+
export interface StopICD10CMInferenceJobRequest {
|
|
1009
|
+
/**
|
|
1010
|
+
* The identifier of the job.
|
|
1011
|
+
*/
|
|
1012
|
+
JobId: JobId;
|
|
1013
|
+
}
|
|
1014
|
+
export interface StopICD10CMInferenceJobResponse {
|
|
1015
|
+
/**
|
|
1016
|
+
* The identifier generated for the job. To get the status of job, use this identifier with the DescribeICD10CMInferenceJob operation.
|
|
1017
|
+
*/
|
|
1018
|
+
JobId?: JobId;
|
|
1019
|
+
}
|
|
800
1020
|
export interface StopPHIDetectionJobRequest {
|
|
801
1021
|
/**
|
|
802
1022
|
* The identifier of the PHI detection job to stop.
|
|
@@ -809,6 +1029,18 @@ declare namespace ComprehendMedical {
|
|
|
809
1029
|
*/
|
|
810
1030
|
JobId?: JobId;
|
|
811
1031
|
}
|
|
1032
|
+
export interface StopRxNormInferenceJobRequest {
|
|
1033
|
+
/**
|
|
1034
|
+
* The identifier of the job.
|
|
1035
|
+
*/
|
|
1036
|
+
JobId: JobId;
|
|
1037
|
+
}
|
|
1038
|
+
export interface StopRxNormInferenceJobResponse {
|
|
1039
|
+
/**
|
|
1040
|
+
* The identifier generated for the job. To get the status of job, use this identifier with the DescribeRxNormInferenceJob operation.
|
|
1041
|
+
*/
|
|
1042
|
+
JobId?: JobId;
|
|
1043
|
+
}
|
|
812
1044
|
export type String = string;
|
|
813
1045
|
export type Timestamp = Date;
|
|
814
1046
|
export interface Trait {
|
package/clients/ec2.d.ts
CHANGED
|
@@ -2165,11 +2165,11 @@ declare class EC2 extends Service {
|
|
|
2165
2165
|
*/
|
|
2166
2166
|
disableVpcClassicLink(callback?: (err: AWSError, data: EC2.Types.DisableVpcClassicLinkResult) => void): Request<EC2.Types.DisableVpcClassicLinkResult, AWSError>;
|
|
2167
2167
|
/**
|
|
2168
|
-
* Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it's linked. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide.
|
|
2168
|
+
* Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it's linked. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide. You must specify a VPC ID in the request.
|
|
2169
2169
|
*/
|
|
2170
2170
|
disableVpcClassicLinkDnsSupport(params: EC2.Types.DisableVpcClassicLinkDnsSupportRequest, callback?: (err: AWSError, data: EC2.Types.DisableVpcClassicLinkDnsSupportResult) => void): Request<EC2.Types.DisableVpcClassicLinkDnsSupportResult, AWSError>;
|
|
2171
2171
|
/**
|
|
2172
|
-
* Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it's linked. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide.
|
|
2172
|
+
* Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it's linked. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide. You must specify a VPC ID in the request.
|
|
2173
2173
|
*/
|
|
2174
2174
|
disableVpcClassicLinkDnsSupport(callback?: (err: AWSError, data: EC2.Types.DisableVpcClassicLinkDnsSupportResult) => void): Request<EC2.Types.DisableVpcClassicLinkDnsSupportResult, AWSError>;
|
|
2175
2175
|
/**
|
|
@@ -2197,11 +2197,11 @@ declare class EC2 extends Service {
|
|
|
2197
2197
|
*/
|
|
2198
2198
|
disassociateIamInstanceProfile(callback?: (err: AWSError, data: EC2.Types.DisassociateIamInstanceProfileResult) => void): Request<EC2.Types.DisassociateIamInstanceProfileResult, AWSError>;
|
|
2199
2199
|
/**
|
|
2200
|
-
* Disassociates a subnet from a route table. After you perform this action, the subnet no longer uses the routes in the route table. Instead, it uses the routes in the VPC's main route table. For more information about route tables, see Route Tables in the Amazon Virtual Private Cloud User Guide.
|
|
2200
|
+
* Disassociates a subnet or gateway from a route table. After you perform this action, the subnet no longer uses the routes in the route table. Instead, it uses the routes in the VPC's main route table. For more information about route tables, see Route Tables in the Amazon Virtual Private Cloud User Guide.
|
|
2201
2201
|
*/
|
|
2202
2202
|
disassociateRouteTable(params: EC2.Types.DisassociateRouteTableRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
2203
2203
|
/**
|
|
2204
|
-
* Disassociates a subnet from a route table. After you perform this action, the subnet no longer uses the routes in the route table. Instead, it uses the routes in the VPC's main route table. For more information about route tables, see Route Tables in the Amazon Virtual Private Cloud User Guide.
|
|
2204
|
+
* Disassociates a subnet or gateway from a route table. After you perform this action, the subnet no longer uses the routes in the route table. Instead, it uses the routes in the VPC's main route table. For more information about route tables, see Route Tables in the Amazon Virtual Private Cloud User Guide.
|
|
2205
2205
|
*/
|
|
2206
2206
|
disassociateRouteTable(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
2207
2207
|
/**
|
|
@@ -2285,11 +2285,11 @@ declare class EC2 extends Service {
|
|
|
2285
2285
|
*/
|
|
2286
2286
|
enableVpcClassicLink(callback?: (err: AWSError, data: EC2.Types.EnableVpcClassicLinkResult) => void): Request<EC2.Types.EnableVpcClassicLinkResult, AWSError>;
|
|
2287
2287
|
/**
|
|
2288
|
-
* Enables a VPC to support DNS hostname resolution for ClassicLink. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide.
|
|
2288
|
+
* Enables a VPC to support DNS hostname resolution for ClassicLink. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide. You must specify a VPC ID in the request.
|
|
2289
2289
|
*/
|
|
2290
2290
|
enableVpcClassicLinkDnsSupport(params: EC2.Types.EnableVpcClassicLinkDnsSupportRequest, callback?: (err: AWSError, data: EC2.Types.EnableVpcClassicLinkDnsSupportResult) => void): Request<EC2.Types.EnableVpcClassicLinkDnsSupportResult, AWSError>;
|
|
2291
2291
|
/**
|
|
2292
|
-
* Enables a VPC to support DNS hostname resolution for ClassicLink. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide.
|
|
2292
|
+
* Enables a VPC to support DNS hostname resolution for ClassicLink. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide. You must specify a VPC ID in the request.
|
|
2293
2293
|
*/
|
|
2294
2294
|
enableVpcClassicLinkDnsSupport(callback?: (err: AWSError, data: EC2.Types.EnableVpcClassicLinkDnsSupportResult) => void): Request<EC2.Types.EnableVpcClassicLinkDnsSupportResult, AWSError>;
|
|
2295
2295
|
/**
|
|
@@ -5944,7 +5944,7 @@ declare namespace EC2 {
|
|
|
5944
5944
|
*/
|
|
5945
5945
|
LogDestination?: String;
|
|
5946
5946
|
/**
|
|
5947
|
-
* The fields to include in the flow log record, in the order in which they should appear. For a list of available fields, see Flow Log Records. If you omit this parameter, the flow log is created using the default format. If you specify this parameter, you must specify at least one field. Specify the fields using the ${field-id} format, separated by spaces. For the AWS CLI, use single quotation marks (' ') to surround the parameter value.
|
|
5947
|
+
* The fields to include in the flow log record, in the order in which they should appear. For a list of available fields, see Flow Log Records. If you omit this parameter, the flow log is created using the default format. If you specify this parameter, you must specify at least one field. Specify the fields using the ${field-id} format, separated by spaces. For the AWS CLI, use single quotation marks (' ') to surround the parameter value.
|
|
5948
5948
|
*/
|
|
5949
5949
|
LogFormat?: String;
|
|
5950
5950
|
/**
|
|
@@ -6583,7 +6583,7 @@ declare namespace EC2 {
|
|
|
6583
6583
|
}
|
|
6584
6584
|
export interface CreateSubnetRequest {
|
|
6585
6585
|
/**
|
|
6586
|
-
* The Availability Zone or Local Zone for the subnet. Default: AWS selects one for you. If you create more than one subnet in your VPC, we do not necessarily select a different zone for each subnet. To create a subnet in a Local Zone, set this value to the Local Zone ID, for example us-west-2-lax-1a. For information about the Regions that support Local Zones, see Available Regions in the Amazon Elastic Compute Cloud User Guide.
|
|
6586
|
+
* The Availability Zone or Local Zone for the subnet. Default: AWS selects one for you. If you create more than one subnet in your VPC, we do not necessarily select a different zone for each subnet. To create a subnet in a Local Zone, set this value to the Local Zone ID, for example us-west-2-lax-1a. For information about the Regions that support Local Zones, see Available Regions in the Amazon Elastic Compute Cloud User Guide. To create a subnet in an Outpost, set this value to the Availability Zone for the Outpost and specify the Outpost ARN.
|
|
6587
6587
|
*/
|
|
6588
6588
|
AvailabilityZone?: String;
|
|
6589
6589
|
/**
|
|
@@ -12116,7 +12116,7 @@ declare namespace EC2 {
|
|
|
12116
12116
|
}
|
|
12117
12117
|
export interface DisassociateRouteTableRequest {
|
|
12118
12118
|
/**
|
|
12119
|
-
* The association ID representing the current association between the route table and subnet.
|
|
12119
|
+
* The association ID representing the current association between the route table and subnet or gateway.
|
|
12120
12120
|
*/
|
|
12121
12121
|
AssociationId: RouteTableAssociationId;
|
|
12122
12122
|
/**
|
|
@@ -17610,13 +17610,21 @@ declare namespace EC2 {
|
|
|
17610
17610
|
*/
|
|
17611
17611
|
AssignIpv6AddressOnCreation?: AttributeBooleanValue;
|
|
17612
17612
|
/**
|
|
17613
|
-
* Specify true to indicate that
|
|
17613
|
+
* Specify true to indicate that network interfaces attached to instances created in the specified subnet should be assigned a public IPv4 address.
|
|
17614
17614
|
*/
|
|
17615
17615
|
MapPublicIpOnLaunch?: AttributeBooleanValue;
|
|
17616
17616
|
/**
|
|
17617
17617
|
* The ID of the subnet.
|
|
17618
17618
|
*/
|
|
17619
17619
|
SubnetId: SubnetId;
|
|
17620
|
+
/**
|
|
17621
|
+
* Specify true to indicate that network interfaces attached to instances created in the specified subnet should be assigned a customer-owned IPv4 address. When this value is true, you must specify the customer-owned IP pool using CustomerOwnedIpv4Pool.
|
|
17622
|
+
*/
|
|
17623
|
+
MapCustomerOwnedIpOnLaunch?: AttributeBooleanValue;
|
|
17624
|
+
/**
|
|
17625
|
+
* The customer-owned IPv4 address pool associated with the subnet. You must set this value when you specify true for MapCustomerOwnedIpOnLaunch.
|
|
17626
|
+
*/
|
|
17627
|
+
CustomerOwnedIpv4Pool?: CoipPoolId;
|
|
17620
17628
|
}
|
|
17621
17629
|
export interface ModifyTrafficMirrorFilterNetworkServicesRequest {
|
|
17622
17630
|
/**
|
|
@@ -22569,6 +22577,14 @@ declare namespace EC2 {
|
|
|
22569
22577
|
* Indicates whether instances launched in this subnet receive a public IPv4 address.
|
|
22570
22578
|
*/
|
|
22571
22579
|
MapPublicIpOnLaunch?: Boolean;
|
|
22580
|
+
/**
|
|
22581
|
+
* Indicates whether a network interface created in this subnet (including a network interface created by RunInstances) receives a customer-owned IPv4 address.
|
|
22582
|
+
*/
|
|
22583
|
+
MapCustomerOwnedIpOnLaunch?: Boolean;
|
|
22584
|
+
/**
|
|
22585
|
+
* The customer-owned IPv4 address pool associated with the subnet.
|
|
22586
|
+
*/
|
|
22587
|
+
CustomerOwnedIpv4Pool?: CoipPoolId;
|
|
22572
22588
|
/**
|
|
22573
22589
|
* The current state of the subnet.
|
|
22574
22590
|
*/
|
package/clients/efs.d.ts
CHANGED