aws-sdk 2.945.0 → 2.949.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 +25 -1
- package/README.md +1 -1
- package/apis/chime-2018-05-01.min.json +259 -258
- package/apis/dms-2016-01-01.min.json +127 -97
- package/apis/ec2-2016-11-15.min.json +1236 -930
- package/apis/ec2-2016-11-15.paginators.json +6 -0
- package/apis/emr-containers-2020-10-01.min.json +25 -23
- package/apis/glue-2017-03-31.min.json +254 -220
- package/apis/health-2016-08-04.min.json +29 -29
- package/apis/healthlake-2017-07-01.min.json +258 -60
- package/apis/healthlake-2017-07-01.paginators.json +10 -0
- package/apis/iotsitewise-2019-12-02.min.json +46 -25
- package/apis/lightsail-2016-11-28.min.json +557 -192
- package/apis/location-2020-11-19.min.json +205 -0
- package/apis/robomaker-2018-06-29.min.json +6 -3
- package/apis/wellarchitected-2020-03-31.min.json +60 -19
- package/clients/acm.d.ts +16 -16
- package/clients/appintegrations.d.ts +22 -22
- package/clients/auditmanager.d.ts +138 -138
- package/clients/chime.d.ts +5 -0
- package/clients/cognitoidentityserviceprovider.d.ts +72 -72
- package/clients/directconnect.d.ts +11 -8
- package/clients/dms.d.ts +253 -204
- package/clients/ec2.d.ts +332 -6
- package/clients/ecs.d.ts +83 -83
- package/clients/emrcontainers.d.ts +12 -2
- package/clients/glue.d.ts +38 -3
- package/clients/health.d.ts +3 -2
- package/clients/healthlake.d.ts +220 -5
- package/clients/imagebuilder.d.ts +27 -27
- package/clients/lexmodelbuildingservice.d.ts +1 -1
- package/clients/lightsail.d.ts +610 -150
- package/clients/location.d.ts +227 -35
- package/clients/robomaker.d.ts +12 -0
- package/clients/wellarchitected.d.ts +76 -5
- package/dist/aws-sdk-core-react-native.js +6 -1
- package/dist/aws-sdk-react-native.js +20 -15
- package/dist/aws-sdk.js +1455 -933
- package/dist/aws-sdk.min.js +65 -65
- package/lib/core.d.ts +1 -0
- package/lib/core.js +1 -1
- package/lib/json/builder.js +3 -0
- package/lib/json/parser.js +1 -0
- package/lib/model/index.d.ts +4 -0
- package/lib/model/shape.js +1 -0
- package/package.json +1 -1
- package/scripts/lib/ts-generator.js +16 -0
|
@@ -165,6 +165,7 @@ declare namespace EMRcontainers {
|
|
|
165
165
|
*/
|
|
166
166
|
logStreamNamePrefix?: String256;
|
|
167
167
|
}
|
|
168
|
+
export type ClusterId = string;
|
|
168
169
|
export interface Configuration {
|
|
169
170
|
/**
|
|
170
171
|
* The classification within a configuration.
|
|
@@ -204,7 +205,7 @@ declare namespace EMRcontainers {
|
|
|
204
205
|
/**
|
|
205
206
|
* The ID of the container cluster.
|
|
206
207
|
*/
|
|
207
|
-
id:
|
|
208
|
+
id: ClusterId;
|
|
208
209
|
/**
|
|
209
210
|
* The information about the container cluster.
|
|
210
211
|
*/
|
|
@@ -380,7 +381,7 @@ declare namespace EMRcontainers {
|
|
|
380
381
|
/**
|
|
381
382
|
* The namespaces of the EKS cluster.
|
|
382
383
|
*/
|
|
383
|
-
namespace?:
|
|
384
|
+
namespace?: KubernetesNamespace;
|
|
384
385
|
}
|
|
385
386
|
export interface Endpoint {
|
|
386
387
|
/**
|
|
@@ -439,6 +440,14 @@ declare namespace EMRcontainers {
|
|
|
439
440
|
* The subnet IDs of the endpoint.
|
|
440
441
|
*/
|
|
441
442
|
subnetIds?: SubnetIds;
|
|
443
|
+
/**
|
|
444
|
+
* Additional details of the endpoint state.
|
|
445
|
+
*/
|
|
446
|
+
stateDetails?: String256;
|
|
447
|
+
/**
|
|
448
|
+
* The reasons why the endpoint has failed.
|
|
449
|
+
*/
|
|
450
|
+
failureReason?: FailureReason;
|
|
442
451
|
/**
|
|
443
452
|
* The tags of the endpoint.
|
|
444
453
|
*/
|
|
@@ -532,6 +541,7 @@ declare namespace EMRcontainers {
|
|
|
532
541
|
export type JobRunState = "PENDING"|"SUBMITTED"|"RUNNING"|"FAILED"|"CANCELLED"|"CANCEL_PENDING"|"COMPLETED"|string;
|
|
533
542
|
export type JobRunStates = JobRunState[];
|
|
534
543
|
export type JobRuns = JobRun[];
|
|
544
|
+
export type KubernetesNamespace = string;
|
|
535
545
|
export interface ListJobRunsRequest {
|
|
536
546
|
/**
|
|
537
547
|
* The ID of the virtual cluster for which to list the job run.
|
package/clients/glue.d.ts
CHANGED
|
@@ -1539,6 +1539,7 @@ declare namespace Glue {
|
|
|
1539
1539
|
*/
|
|
1540
1540
|
MissingWorkflows?: WorkflowNames;
|
|
1541
1541
|
}
|
|
1542
|
+
export type BatchSize = number;
|
|
1542
1543
|
export interface BatchStopJobRunError {
|
|
1543
1544
|
/**
|
|
1544
1545
|
* The name of the job definition that is used in the job run in question.
|
|
@@ -1632,6 +1633,7 @@ declare namespace Glue {
|
|
|
1632
1633
|
*/
|
|
1633
1634
|
Errors?: BatchUpdatePartitionFailureList;
|
|
1634
1635
|
}
|
|
1636
|
+
export type BatchWindow = number;
|
|
1635
1637
|
export interface BinaryColumnStatisticsData {
|
|
1636
1638
|
/**
|
|
1637
1639
|
* The size of the longest bit sequence in the column.
|
|
@@ -2953,6 +2955,7 @@ declare namespace Glue {
|
|
|
2953
2955
|
* The tags to use with this trigger. You may use tags to limit access to the trigger. For more information about tags in Glue, see Amazon Web Services Tags in Glue in the developer guide.
|
|
2954
2956
|
*/
|
|
2955
2957
|
Tags?: TagsMap;
|
|
2958
|
+
EventBatchingCondition?: EventBatchingCondition;
|
|
2956
2959
|
}
|
|
2957
2960
|
export interface CreateTriggerResponse {
|
|
2958
2961
|
/**
|
|
@@ -3736,6 +3739,16 @@ declare namespace Glue {
|
|
|
3736
3739
|
*/
|
|
3737
3740
|
FindMatchesMetrics?: FindMatchesMetrics;
|
|
3738
3741
|
}
|
|
3742
|
+
export interface EventBatchingCondition {
|
|
3743
|
+
/**
|
|
3744
|
+
* Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
|
|
3745
|
+
*/
|
|
3746
|
+
BatchSize: BatchSize;
|
|
3747
|
+
/**
|
|
3748
|
+
* Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
|
|
3749
|
+
*/
|
|
3750
|
+
BatchWindow?: BatchWindow;
|
|
3751
|
+
}
|
|
3739
3752
|
export interface ExecutionProperty {
|
|
3740
3753
|
/**
|
|
3741
3754
|
* The maximum number of concurrent runs allowed for the job. The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.
|
|
@@ -7077,6 +7090,16 @@ declare namespace Glue {
|
|
|
7077
7090
|
*/
|
|
7078
7091
|
RunId?: IdString;
|
|
7079
7092
|
}
|
|
7093
|
+
export interface StartingEventBatchCondition {
|
|
7094
|
+
/**
|
|
7095
|
+
* Number of events in the batch.
|
|
7096
|
+
*/
|
|
7097
|
+
BatchSize?: NullableInteger;
|
|
7098
|
+
/**
|
|
7099
|
+
* Duration of the batch window in seconds.
|
|
7100
|
+
*/
|
|
7101
|
+
BatchWindow?: NullableInteger;
|
|
7102
|
+
}
|
|
7080
7103
|
export interface StopCrawlerRequest {
|
|
7081
7104
|
/**
|
|
7082
7105
|
* Name of the crawler to stop.
|
|
@@ -7604,6 +7627,10 @@ declare namespace Glue {
|
|
|
7604
7627
|
* The predicate of this trigger, which defines when it will fire.
|
|
7605
7628
|
*/
|
|
7606
7629
|
Predicate?: Predicate;
|
|
7630
|
+
/**
|
|
7631
|
+
* Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
|
|
7632
|
+
*/
|
|
7633
|
+
EventBatchingCondition?: EventBatchingCondition;
|
|
7607
7634
|
}
|
|
7608
7635
|
export type TriggerList = Trigger[];
|
|
7609
7636
|
export type TriggerNameList = NameString[];
|
|
@@ -7614,7 +7641,7 @@ declare namespace Glue {
|
|
|
7614
7641
|
Trigger?: Trigger;
|
|
7615
7642
|
}
|
|
7616
7643
|
export type TriggerState = "CREATING"|"CREATED"|"ACTIVATING"|"ACTIVATED"|"DEACTIVATING"|"DEACTIVATED"|"DELETING"|"UPDATING"|string;
|
|
7617
|
-
export type TriggerType = "SCHEDULED"|"CONDITIONAL"|"ON_DEMAND"|string;
|
|
7644
|
+
export type TriggerType = "SCHEDULED"|"CONDITIONAL"|"ON_DEMAND"|"EVENT"|string;
|
|
7618
7645
|
export interface TriggerUpdate {
|
|
7619
7646
|
/**
|
|
7620
7647
|
* Reserved for future use.
|
|
@@ -7636,6 +7663,10 @@ declare namespace Glue {
|
|
|
7636
7663
|
* The predicate of this trigger, which defines when it will fire.
|
|
7637
7664
|
*/
|
|
7638
7665
|
Predicate?: Predicate;
|
|
7666
|
+
/**
|
|
7667
|
+
* Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
|
|
7668
|
+
*/
|
|
7669
|
+
EventBatchingCondition?: EventBatchingCondition;
|
|
7639
7670
|
}
|
|
7640
7671
|
export type TypeString = string;
|
|
7641
7672
|
export type URI = string;
|
|
@@ -8226,7 +8257,7 @@ declare namespace Glue {
|
|
|
8226
8257
|
export type WorkerType = "Standard"|"G.1X"|"G.2X"|string;
|
|
8227
8258
|
export interface Workflow {
|
|
8228
8259
|
/**
|
|
8229
|
-
* The name of the workflow
|
|
8260
|
+
* The name of the workflow.
|
|
8230
8261
|
*/
|
|
8231
8262
|
Name?: NameString;
|
|
8232
8263
|
/**
|
|
@@ -8234,7 +8265,7 @@ declare namespace Glue {
|
|
|
8234
8265
|
*/
|
|
8235
8266
|
Description?: GenericString;
|
|
8236
8267
|
/**
|
|
8237
|
-
* A collection of properties to be used as part of each execution of the workflow.
|
|
8268
|
+
* A collection of properties to be used as part of each execution of the workflow. The run properties are made available to each job in the workflow. A job can modify the properties for the next jobs in the flow.
|
|
8238
8269
|
*/
|
|
8239
8270
|
DefaultRunProperties?: WorkflowRunProperties;
|
|
8240
8271
|
/**
|
|
@@ -8310,6 +8341,10 @@ declare namespace Glue {
|
|
|
8310
8341
|
* The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.
|
|
8311
8342
|
*/
|
|
8312
8343
|
Graph?: WorkflowGraph;
|
|
8344
|
+
/**
|
|
8345
|
+
* The batch condition that started the workflow run.
|
|
8346
|
+
*/
|
|
8347
|
+
StartingEventBatchCondition?: StartingEventBatchCondition;
|
|
8313
8348
|
}
|
|
8314
8349
|
export type WorkflowRunProperties = {[key: string]: GenericString};
|
|
8315
8350
|
export interface WorkflowRunStatistics {
|
package/clients/health.d.ts
CHANGED
|
@@ -194,7 +194,7 @@ declare namespace Health {
|
|
|
194
194
|
/**
|
|
195
195
|
* The maximum number of items to return in one batch, between 10 and 100, inclusive.
|
|
196
196
|
*/
|
|
197
|
-
maxResults?:
|
|
197
|
+
maxResults?: maxResultsLowerRange;
|
|
198
198
|
}
|
|
199
199
|
export interface DescribeAffectedEntitiesForOrganizationResponse {
|
|
200
200
|
/**
|
|
@@ -362,7 +362,7 @@ declare namespace Health {
|
|
|
362
362
|
/**
|
|
363
363
|
* The maximum number of items to return in one batch, between 10 and 100, inclusive.
|
|
364
364
|
*/
|
|
365
|
-
maxResults?:
|
|
365
|
+
maxResults?: maxResultsLowerRange;
|
|
366
366
|
/**
|
|
367
367
|
* The locale (language) to return information in. English (en) is the default and the only supported value at this time.
|
|
368
368
|
*/
|
|
@@ -799,6 +799,7 @@ declare namespace Health {
|
|
|
799
799
|
export type healthServiceAccessStatusForOrganization = string;
|
|
800
800
|
export type locale = string;
|
|
801
801
|
export type maxResults = number;
|
|
802
|
+
export type maxResultsLowerRange = number;
|
|
802
803
|
export type metadataKey = string;
|
|
803
804
|
export type metadataValue = string;
|
|
804
805
|
export type nextToken = string;
|
package/clients/healthlake.d.ts
CHANGED
|
@@ -44,11 +44,11 @@ declare class HealthLake extends Service {
|
|
|
44
44
|
*/
|
|
45
45
|
describeFHIRExportJob(callback?: (err: AWSError, data: HealthLake.Types.DescribeFHIRExportJobResponse) => void): Request<HealthLake.Types.DescribeFHIRExportJobResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Displays the properties of a FHIR import job, including the ID, ARN, name, and the status of the job.
|
|
47
|
+
* Displays the properties of a FHIR import job, including the ID, ARN, name, and the status of the job.
|
|
48
48
|
*/
|
|
49
49
|
describeFHIRImportJob(params: HealthLake.Types.DescribeFHIRImportJobRequest, callback?: (err: AWSError, data: HealthLake.Types.DescribeFHIRImportJobResponse) => void): Request<HealthLake.Types.DescribeFHIRImportJobResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Displays the properties of a FHIR import job, including the ID, ARN, name, and the status of the job.
|
|
51
|
+
* Displays the properties of a FHIR import job, including the ID, ARN, name, and the status of the job.
|
|
52
52
|
*/
|
|
53
53
|
describeFHIRImportJob(callback?: (err: AWSError, data: HealthLake.Types.DescribeFHIRImportJobResponse) => void): Request<HealthLake.Types.DescribeFHIRImportJobResponse, AWSError>;
|
|
54
54
|
/**
|
|
@@ -59,6 +59,30 @@ declare class HealthLake extends Service {
|
|
|
59
59
|
* Lists all FHIR Data Stores that are in the user’s account, regardless of Data Store status.
|
|
60
60
|
*/
|
|
61
61
|
listFHIRDatastores(callback?: (err: AWSError, data: HealthLake.Types.ListFHIRDatastoresResponse) => void): Request<HealthLake.Types.ListFHIRDatastoresResponse, AWSError>;
|
|
62
|
+
/**
|
|
63
|
+
* Lists all FHIR export jobs associated with an account and their statuses.
|
|
64
|
+
*/
|
|
65
|
+
listFHIRExportJobs(params: HealthLake.Types.ListFHIRExportJobsRequest, callback?: (err: AWSError, data: HealthLake.Types.ListFHIRExportJobsResponse) => void): Request<HealthLake.Types.ListFHIRExportJobsResponse, AWSError>;
|
|
66
|
+
/**
|
|
67
|
+
* Lists all FHIR export jobs associated with an account and their statuses.
|
|
68
|
+
*/
|
|
69
|
+
listFHIRExportJobs(callback?: (err: AWSError, data: HealthLake.Types.ListFHIRExportJobsResponse) => void): Request<HealthLake.Types.ListFHIRExportJobsResponse, AWSError>;
|
|
70
|
+
/**
|
|
71
|
+
* Lists all FHIR import jobs associated with an account and their statuses.
|
|
72
|
+
*/
|
|
73
|
+
listFHIRImportJobs(params: HealthLake.Types.ListFHIRImportJobsRequest, callback?: (err: AWSError, data: HealthLake.Types.ListFHIRImportJobsResponse) => void): Request<HealthLake.Types.ListFHIRImportJobsResponse, AWSError>;
|
|
74
|
+
/**
|
|
75
|
+
* Lists all FHIR import jobs associated with an account and their statuses.
|
|
76
|
+
*/
|
|
77
|
+
listFHIRImportJobs(callback?: (err: AWSError, data: HealthLake.Types.ListFHIRImportJobsResponse) => void): Request<HealthLake.Types.ListFHIRImportJobsResponse, AWSError>;
|
|
78
|
+
/**
|
|
79
|
+
* Returns a list of all existing tags associated with a Data Store.
|
|
80
|
+
*/
|
|
81
|
+
listTagsForResource(params: HealthLake.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: HealthLake.Types.ListTagsForResourceResponse) => void): Request<HealthLake.Types.ListTagsForResourceResponse, AWSError>;
|
|
82
|
+
/**
|
|
83
|
+
* Returns a list of all existing tags associated with a Data Store.
|
|
84
|
+
*/
|
|
85
|
+
listTagsForResource(callback?: (err: AWSError, data: HealthLake.Types.ListTagsForResourceResponse) => void): Request<HealthLake.Types.ListTagsForResourceResponse, AWSError>;
|
|
62
86
|
/**
|
|
63
87
|
* Begins a FHIR export job.
|
|
64
88
|
*/
|
|
@@ -75,10 +99,28 @@ declare class HealthLake extends Service {
|
|
|
75
99
|
* Begins a FHIR Import job.
|
|
76
100
|
*/
|
|
77
101
|
startFHIRImportJob(callback?: (err: AWSError, data: HealthLake.Types.StartFHIRImportJobResponse) => void): Request<HealthLake.Types.StartFHIRImportJobResponse, AWSError>;
|
|
102
|
+
/**
|
|
103
|
+
* Adds a user specifed key and value tag to a Data Store.
|
|
104
|
+
*/
|
|
105
|
+
tagResource(params: HealthLake.Types.TagResourceRequest, callback?: (err: AWSError, data: HealthLake.Types.TagResourceResponse) => void): Request<HealthLake.Types.TagResourceResponse, AWSError>;
|
|
106
|
+
/**
|
|
107
|
+
* Adds a user specifed key and value tag to a Data Store.
|
|
108
|
+
*/
|
|
109
|
+
tagResource(callback?: (err: AWSError, data: HealthLake.Types.TagResourceResponse) => void): Request<HealthLake.Types.TagResourceResponse, AWSError>;
|
|
110
|
+
/**
|
|
111
|
+
* Removes tags from a Data Store.
|
|
112
|
+
*/
|
|
113
|
+
untagResource(params: HealthLake.Types.UntagResourceRequest, callback?: (err: AWSError, data: HealthLake.Types.UntagResourceResponse) => void): Request<HealthLake.Types.UntagResourceResponse, AWSError>;
|
|
114
|
+
/**
|
|
115
|
+
* Removes tags from a Data Store.
|
|
116
|
+
*/
|
|
117
|
+
untagResource(callback?: (err: AWSError, data: HealthLake.Types.UntagResourceResponse) => void): Request<HealthLake.Types.UntagResourceResponse, AWSError>;
|
|
78
118
|
}
|
|
79
119
|
declare namespace HealthLake {
|
|
120
|
+
export type AmazonResourceName = string;
|
|
80
121
|
export type BoundedLengthString = string;
|
|
81
122
|
export type ClientTokenString = string;
|
|
123
|
+
export type CmkType = "CUSTOMER_MANAGED_KMS_KEY"|"AWS_OWNED_KMS_KEY"|string;
|
|
82
124
|
export interface CreateFHIRDatastoreRequest {
|
|
83
125
|
/**
|
|
84
126
|
* The user generated name for the Data Store.
|
|
@@ -88,6 +130,10 @@ declare namespace HealthLake {
|
|
|
88
130
|
* The FHIR version of the Data Store. The only supported version is R4.
|
|
89
131
|
*/
|
|
90
132
|
DatastoreTypeVersion: FHIRVersion;
|
|
133
|
+
/**
|
|
134
|
+
* The server-side encryption key configuration for a customer provided encryption key specified for creating a Data Store.
|
|
135
|
+
*/
|
|
136
|
+
SseConfiguration?: SseConfiguration;
|
|
91
137
|
/**
|
|
92
138
|
* Optional parameter to preload data upon creation of the Data Store. Currently, the only supported preloaded data is synthetic data generated from Synthea.
|
|
93
139
|
*/
|
|
@@ -96,6 +142,10 @@ declare namespace HealthLake {
|
|
|
96
142
|
* Optional user provided token used for ensuring idempotency.
|
|
97
143
|
*/
|
|
98
144
|
ClientToken?: ClientTokenString;
|
|
145
|
+
/**
|
|
146
|
+
* Resource tags that are applied to a Data Store when it is created.
|
|
147
|
+
*/
|
|
148
|
+
Tags?: TagList;
|
|
99
149
|
}
|
|
100
150
|
export interface CreateFHIRDatastoreResponse {
|
|
101
151
|
/**
|
|
@@ -165,6 +215,10 @@ declare namespace HealthLake {
|
|
|
165
215
|
* The AWS endpoint for the Data Store. Each Data Store will have it's own endpoint with Data Store ID in the endpoint URL.
|
|
166
216
|
*/
|
|
167
217
|
DatastoreEndpoint: String;
|
|
218
|
+
/**
|
|
219
|
+
* The server-side encryption key configuration for a customer provided encryption key (CMK).
|
|
220
|
+
*/
|
|
221
|
+
SseConfiguration?: SseConfiguration;
|
|
168
222
|
/**
|
|
169
223
|
* The preloaded data configuration for the Data Store. Only data preloaded from Synthea is supported.
|
|
170
224
|
*/
|
|
@@ -240,6 +294,7 @@ declare namespace HealthLake {
|
|
|
240
294
|
*/
|
|
241
295
|
ImportJobProperties: ImportJobProperties;
|
|
242
296
|
}
|
|
297
|
+
export type EncryptionKeyID = string;
|
|
243
298
|
export interface ExportJobProperties {
|
|
244
299
|
/**
|
|
245
300
|
* The AWS generated ID for an export job.
|
|
@@ -278,6 +333,7 @@ declare namespace HealthLake {
|
|
|
278
333
|
*/
|
|
279
334
|
Message?: Message;
|
|
280
335
|
}
|
|
336
|
+
export type ExportJobPropertiesList = ExportJobProperties[];
|
|
281
337
|
export type FHIRVersion = "R4"|string;
|
|
282
338
|
export type IamRoleArn = string;
|
|
283
339
|
export interface ImportJobProperties {
|
|
@@ -309,6 +365,7 @@ declare namespace HealthLake {
|
|
|
309
365
|
* The input data configuration that was supplied when the Import job was created.
|
|
310
366
|
*/
|
|
311
367
|
InputDataConfig: InputDataConfig;
|
|
368
|
+
JobOutputDataConfig?: OutputDataConfig;
|
|
312
369
|
/**
|
|
313
370
|
* The Amazon Resource Name (ARN) that gives Amazon HealthLake access to your input data.
|
|
314
371
|
*/
|
|
@@ -318,6 +375,7 @@ declare namespace HealthLake {
|
|
|
318
375
|
*/
|
|
319
376
|
Message?: Message;
|
|
320
377
|
}
|
|
378
|
+
export type ImportJobPropertiesList = ImportJobProperties[];
|
|
321
379
|
export interface InputDataConfig {
|
|
322
380
|
/**
|
|
323
381
|
* The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
|
|
@@ -326,7 +384,17 @@ declare namespace HealthLake {
|
|
|
326
384
|
}
|
|
327
385
|
export type JobId = string;
|
|
328
386
|
export type JobName = string;
|
|
329
|
-
export type JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|string;
|
|
387
|
+
export type JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED_WITH_ERRORS"|"COMPLETED"|"FAILED"|string;
|
|
388
|
+
export interface KmsEncryptionConfig {
|
|
389
|
+
/**
|
|
390
|
+
* The type of customer-managed-key(CMK) used for encyrption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
|
|
391
|
+
*/
|
|
392
|
+
CmkType: CmkType;
|
|
393
|
+
/**
|
|
394
|
+
* The KMS encryption key id/alias used to encrypt the Data Store contents at rest.
|
|
395
|
+
*/
|
|
396
|
+
KmsKeyId?: EncryptionKeyID;
|
|
397
|
+
}
|
|
330
398
|
export interface ListFHIRDatastoresRequest {
|
|
331
399
|
/**
|
|
332
400
|
* Lists all filters associated with a FHIR Data Store request.
|
|
@@ -351,14 +419,106 @@ declare namespace HealthLake {
|
|
|
351
419
|
*/
|
|
352
420
|
NextToken?: NextToken;
|
|
353
421
|
}
|
|
422
|
+
export interface ListFHIRExportJobsRequest {
|
|
423
|
+
/**
|
|
424
|
+
* This parameter limits the response to the export job with the specified Data Store ID.
|
|
425
|
+
*/
|
|
426
|
+
DatastoreId: DatastoreId;
|
|
427
|
+
/**
|
|
428
|
+
* A pagination token used to identify the next page of results to return for a ListFHIRExportJobs query.
|
|
429
|
+
*/
|
|
430
|
+
NextToken?: NextToken;
|
|
431
|
+
/**
|
|
432
|
+
* This parameter limits the number of results returned for a ListFHIRExportJobs to a maximum quantity specified by the user.
|
|
433
|
+
*/
|
|
434
|
+
MaxResults?: MaxResultsInteger;
|
|
435
|
+
/**
|
|
436
|
+
* This parameter limits the response to the export job with the specified job name.
|
|
437
|
+
*/
|
|
438
|
+
JobName?: JobName;
|
|
439
|
+
/**
|
|
440
|
+
* This parameter limits the response to the export jobs with the specified job status.
|
|
441
|
+
*/
|
|
442
|
+
JobStatus?: JobStatus;
|
|
443
|
+
/**
|
|
444
|
+
* This parameter limits the response to FHIR export jobs submitted before a user specified date.
|
|
445
|
+
*/
|
|
446
|
+
SubmittedBefore?: Timestamp;
|
|
447
|
+
/**
|
|
448
|
+
* This parameter limits the response to FHIR export jobs submitted after a user specified date.
|
|
449
|
+
*/
|
|
450
|
+
SubmittedAfter?: Timestamp;
|
|
451
|
+
}
|
|
452
|
+
export interface ListFHIRExportJobsResponse {
|
|
453
|
+
/**
|
|
454
|
+
* The properties of listed FHIR export jobs, including the ID, ARN, name, and the status of the job.
|
|
455
|
+
*/
|
|
456
|
+
ExportJobPropertiesList: ExportJobPropertiesList;
|
|
457
|
+
/**
|
|
458
|
+
* A pagination token used to identify the next page of results to return for a ListFHIRExportJobs query.
|
|
459
|
+
*/
|
|
460
|
+
NextToken?: NextToken;
|
|
461
|
+
}
|
|
462
|
+
export interface ListFHIRImportJobsRequest {
|
|
463
|
+
/**
|
|
464
|
+
* This parameter limits the response to the import job with the specified Data Store ID.
|
|
465
|
+
*/
|
|
466
|
+
DatastoreId: DatastoreId;
|
|
467
|
+
/**
|
|
468
|
+
* A pagination token used to identify the next page of results to return for a ListFHIRImportJobs query.
|
|
469
|
+
*/
|
|
470
|
+
NextToken?: NextToken;
|
|
471
|
+
/**
|
|
472
|
+
* This parameter limits the number of results returned for a ListFHIRImportJobs to a maximum quantity specified by the user.
|
|
473
|
+
*/
|
|
474
|
+
MaxResults?: MaxResultsInteger;
|
|
475
|
+
/**
|
|
476
|
+
* This parameter limits the response to the import job with the specified job name.
|
|
477
|
+
*/
|
|
478
|
+
JobName?: JobName;
|
|
479
|
+
/**
|
|
480
|
+
* This parameter limits the response to the import job with the specified job status.
|
|
481
|
+
*/
|
|
482
|
+
JobStatus?: JobStatus;
|
|
483
|
+
/**
|
|
484
|
+
* This parameter limits the response to FHIR import jobs submitted before a user specified date.
|
|
485
|
+
*/
|
|
486
|
+
SubmittedBefore?: Timestamp;
|
|
487
|
+
/**
|
|
488
|
+
* This parameter limits the response to FHIR import jobs submitted after a user specified date.
|
|
489
|
+
*/
|
|
490
|
+
SubmittedAfter?: Timestamp;
|
|
491
|
+
}
|
|
492
|
+
export interface ListFHIRImportJobsResponse {
|
|
493
|
+
/**
|
|
494
|
+
* The properties of a listed FHIR import jobs, including the ID, ARN, name, and the status of the job.
|
|
495
|
+
*/
|
|
496
|
+
ImportJobPropertiesList: ImportJobPropertiesList;
|
|
497
|
+
/**
|
|
498
|
+
* A pagination token used to identify the next page of results to return for a ListFHIRImportJobs query.
|
|
499
|
+
*/
|
|
500
|
+
NextToken?: NextToken;
|
|
501
|
+
}
|
|
502
|
+
export interface ListTagsForResourceRequest {
|
|
503
|
+
/**
|
|
504
|
+
* The Amazon Resource Name(ARN) of the Data Store for which tags are being added.
|
|
505
|
+
*/
|
|
506
|
+
ResourceARN: AmazonResourceName;
|
|
507
|
+
}
|
|
508
|
+
export interface ListTagsForResourceResponse {
|
|
509
|
+
/**
|
|
510
|
+
* Returns a list of tags associated with a Data Store.
|
|
511
|
+
*/
|
|
512
|
+
Tags?: TagList;
|
|
513
|
+
}
|
|
354
514
|
export type MaxResultsInteger = number;
|
|
355
515
|
export type Message = string;
|
|
356
516
|
export type NextToken = string;
|
|
357
517
|
export interface OutputDataConfig {
|
|
358
518
|
/**
|
|
359
|
-
*
|
|
519
|
+
* The output data configuration that was supplied when the export job was created.
|
|
360
520
|
*/
|
|
361
|
-
|
|
521
|
+
S3Configuration?: S3Configuration;
|
|
362
522
|
}
|
|
363
523
|
export interface PreloadDataConfig {
|
|
364
524
|
/**
|
|
@@ -367,7 +527,23 @@ declare namespace HealthLake {
|
|
|
367
527
|
PreloadDataType: PreloadDataType;
|
|
368
528
|
}
|
|
369
529
|
export type PreloadDataType = "SYNTHEA"|string;
|
|
530
|
+
export interface S3Configuration {
|
|
531
|
+
/**
|
|
532
|
+
* The S3Uri is the user specified S3 location of the FHIR data to be imported into Amazon HealthLake.
|
|
533
|
+
*/
|
|
534
|
+
S3Uri: S3Uri;
|
|
535
|
+
/**
|
|
536
|
+
* The KMS key ID used to access the S3 bucket.
|
|
537
|
+
*/
|
|
538
|
+
KmsKeyId: EncryptionKeyID;
|
|
539
|
+
}
|
|
370
540
|
export type S3Uri = string;
|
|
541
|
+
export interface SseConfiguration {
|
|
542
|
+
/**
|
|
543
|
+
* The KMS encryption configuration used to provide details for data encryption.
|
|
544
|
+
*/
|
|
545
|
+
KmsEncryptionConfig: KmsEncryptionConfig;
|
|
546
|
+
}
|
|
371
547
|
export interface StartFHIRExportJobRequest {
|
|
372
548
|
/**
|
|
373
549
|
* The user generated name for an export job.
|
|
@@ -413,6 +589,7 @@ declare namespace HealthLake {
|
|
|
413
589
|
* The input properties of the FHIR Import job in the StartFHIRImport job request.
|
|
414
590
|
*/
|
|
415
591
|
InputDataConfig: InputDataConfig;
|
|
592
|
+
JobOutputDataConfig: OutputDataConfig;
|
|
416
593
|
/**
|
|
417
594
|
* The AWS-generated Data Store ID.
|
|
418
595
|
*/
|
|
@@ -441,7 +618,45 @@ declare namespace HealthLake {
|
|
|
441
618
|
DatastoreId?: DatastoreId;
|
|
442
619
|
}
|
|
443
620
|
export type String = string;
|
|
621
|
+
export interface Tag {
|
|
622
|
+
/**
|
|
623
|
+
* The key portion of a tag. Tag keys are case sensitive.
|
|
624
|
+
*/
|
|
625
|
+
Key: TagKey;
|
|
626
|
+
/**
|
|
627
|
+
* The value portion of tag. Tag values are case sensitive.
|
|
628
|
+
*/
|
|
629
|
+
Value: TagValue;
|
|
630
|
+
}
|
|
631
|
+
export type TagKey = string;
|
|
632
|
+
export type TagKeyList = TagKey[];
|
|
633
|
+
export type TagList = Tag[];
|
|
634
|
+
export interface TagResourceRequest {
|
|
635
|
+
/**
|
|
636
|
+
* The Amazon Resource Name(ARN)that gives Amazon HealthLake access to the Data Store which tags are being added to.
|
|
637
|
+
*/
|
|
638
|
+
ResourceARN: AmazonResourceName;
|
|
639
|
+
/**
|
|
640
|
+
* The user specified key and value pair tags being added to a Data Store.
|
|
641
|
+
*/
|
|
642
|
+
Tags: TagList;
|
|
643
|
+
}
|
|
644
|
+
export interface TagResourceResponse {
|
|
645
|
+
}
|
|
646
|
+
export type TagValue = string;
|
|
444
647
|
export type Timestamp = Date;
|
|
648
|
+
export interface UntagResourceRequest {
|
|
649
|
+
/**
|
|
650
|
+
* "The Amazon Resource Name(ARN) of the Data Store for which tags are being removed
|
|
651
|
+
*/
|
|
652
|
+
ResourceARN: AmazonResourceName;
|
|
653
|
+
/**
|
|
654
|
+
* The keys for the tags to be removed from the Healthlake Data Store.
|
|
655
|
+
*/
|
|
656
|
+
TagKeys: TagKeyList;
|
|
657
|
+
}
|
|
658
|
+
export interface UntagResourceResponse {
|
|
659
|
+
}
|
|
445
660
|
/**
|
|
446
661
|
* 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.
|
|
447
662
|
*/
|