aws-sdk 2.1422.0 → 2.1424.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 +15 -1
- package/README.md +1 -1
- package/apis/autoscaling-2011-01-01.examples.json +54 -16
- package/apis/autoscaling-2011-01-01.min.json +3 -0
- package/apis/autoscaling-2011-01-01.paginators.json +6 -0
- package/apis/ebs-2019-11-02.min.json +2 -1
- package/apis/ec2-2016-11-15.min.json +795 -780
- package/apis/ec2-2016-11-15.waiters2.json +25 -0
- package/apis/entityresolution-2018-05-10.examples.json +5 -0
- package/apis/entityresolution-2018-05-10.min.json +823 -0
- package/apis/entityresolution-2018-05-10.paginators.json +22 -0
- package/apis/glue-2017-03-31.min.json +390 -318
- package/apis/managedblockchain-query-2023-05-04.examples.json +5 -0
- package/apis/managedblockchain-query-2023-05-04.min.json +438 -0
- package/apis/managedblockchain-query-2023-05-04.paginators.json +22 -0
- package/apis/managedblockchain-query-2023-05-04.waiters2.json +5 -0
- package/apis/metadata.json +7 -0
- package/apis/sagemaker-2017-07-24.min.json +3 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/autoscaling.d.ts +7 -7
- package/clients/cloudcontrol.d.ts +1 -1
- package/clients/ebs.d.ts +17 -12
- package/clients/ec2.d.ts +29 -0
- package/clients/eks.d.ts +1 -1
- package/clients/entityresolution.d.ts +815 -0
- package/clients/entityresolution.js +18 -0
- package/clients/glue.d.ts +123 -1
- package/clients/healthlake.d.ts +70 -70
- package/clients/managedblockchainquery.d.ts +494 -0
- package/clients/managedblockchainquery.js +19 -0
- package/clients/mediaconvert.d.ts +421 -414
- package/clients/opensearchserverless.d.ts +1 -1
- package/clients/polly.d.ts +2 -2
- package/clients/route53.d.ts +13 -13
- package/clients/sagemaker.d.ts +1 -0
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +92 -11
- package/dist/aws-sdk.js +839 -783
- package/dist/aws-sdk.min.js +98 -98
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -0,0 +1,18 @@
|
|
1
|
+
require('../lib/node_loader');
|
2
|
+
var AWS = require('../lib/core');
|
3
|
+
var Service = AWS.Service;
|
4
|
+
var apiLoader = AWS.apiLoader;
|
5
|
+
|
6
|
+
apiLoader.services['entityresolution'] = {};
|
7
|
+
AWS.EntityResolution = Service.defineService('entityresolution', ['2018-05-10']);
|
8
|
+
Object.defineProperty(apiLoader.services['entityresolution'], '2018-05-10', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/entityresolution-2018-05-10.min.json');
|
11
|
+
model.paginators = require('../apis/entityresolution-2018-05-10.paginators.json').pagination;
|
12
|
+
return model;
|
13
|
+
},
|
14
|
+
enumerable: true,
|
15
|
+
configurable: true
|
16
|
+
});
|
17
|
+
|
18
|
+
module.exports = AWS.EntityResolution;
|
package/clients/glue.d.ts
CHANGED
@@ -1823,7 +1823,7 @@ declare namespace Glue {
|
|
1823
1823
|
*/
|
1824
1824
|
Name?: NodeName;
|
1825
1825
|
/**
|
1826
|
-
* Specifies the data of the Amazon
|
1826
|
+
* Specifies the data of the Amazon Redshift target node.
|
1827
1827
|
*/
|
1828
1828
|
Data?: AmazonRedshiftNodeData;
|
1829
1829
|
/**
|
@@ -3004,6 +3004,14 @@ declare namespace Glue {
|
|
3004
3004
|
* Specifies a Glue DataBrew recipe node.
|
3005
3005
|
*/
|
3006
3006
|
Recipe?: Recipe;
|
3007
|
+
/**
|
3008
|
+
* Specifies a Snowflake data source.
|
3009
|
+
*/
|
3010
|
+
SnowflakeSource?: SnowflakeSource;
|
3011
|
+
/**
|
3012
|
+
* Specifies a target that writes to a Snowflake data source.
|
3013
|
+
*/
|
3014
|
+
SnowflakeTarget?: SnowflakeTarget;
|
3007
3015
|
}
|
3008
3016
|
export type CodeGenConfigurationNodes = {[key: string]: CodeGenConfigurationNode};
|
3009
3017
|
export interface CodeGenEdge {
|
@@ -11474,6 +11482,120 @@ declare namespace Glue {
|
|
11474
11482
|
*/
|
11475
11483
|
SkewedColumnValueLocationMaps?: LocationMap;
|
11476
11484
|
}
|
11485
|
+
export interface SnowflakeNodeData {
|
11486
|
+
/**
|
11487
|
+
* Specifies how retrieved data is specified. Valid values: "table", "query".
|
11488
|
+
*/
|
11489
|
+
SourceType?: GenericLimitedString;
|
11490
|
+
/**
|
11491
|
+
* Specifies a Glue Data Catalog Connection to a Snowflake endpoint.
|
11492
|
+
*/
|
11493
|
+
Connection?: Option;
|
11494
|
+
/**
|
11495
|
+
* Specifies a Snowflake database schema for your node to use.
|
11496
|
+
*/
|
11497
|
+
Schema?: GenericString;
|
11498
|
+
/**
|
11499
|
+
* Specifies a Snowflake table for your node to use.
|
11500
|
+
*/
|
11501
|
+
Table?: GenericString;
|
11502
|
+
/**
|
11503
|
+
* Specifies a Snowflake database for your node to use.
|
11504
|
+
*/
|
11505
|
+
Database?: GenericString;
|
11506
|
+
/**
|
11507
|
+
* Not currently used.
|
11508
|
+
*/
|
11509
|
+
TempDir?: EnclosedInStringProperty;
|
11510
|
+
/**
|
11511
|
+
* Not currently used.
|
11512
|
+
*/
|
11513
|
+
IamRole?: Option;
|
11514
|
+
/**
|
11515
|
+
* Specifies additional options passed to the Snowflake connector. If options are specified elsewhere in this node, this will take precedence.
|
11516
|
+
*/
|
11517
|
+
AdditionalOptions?: AdditionalOptions;
|
11518
|
+
/**
|
11519
|
+
* A SQL string used to retrieve data with the query sourcetype.
|
11520
|
+
*/
|
11521
|
+
SampleQuery?: GenericString;
|
11522
|
+
/**
|
11523
|
+
* A SQL string run before the Snowflake connector performs its standard actions.
|
11524
|
+
*/
|
11525
|
+
PreAction?: GenericString;
|
11526
|
+
/**
|
11527
|
+
* A SQL string run after the Snowflake connector performs its standard actions.
|
11528
|
+
*/
|
11529
|
+
PostAction?: GenericString;
|
11530
|
+
/**
|
11531
|
+
* Specifies what action to take when writing to a table with preexisting data. Valid values: append, merge, truncate, drop.
|
11532
|
+
*/
|
11533
|
+
Action?: GenericString;
|
11534
|
+
/**
|
11535
|
+
* Used when Action is append. Specifies the resolution behavior when a row already exists. If true, preexisting rows will be updated. If false, those rows will be inserted.
|
11536
|
+
*/
|
11537
|
+
Upsert?: BooleanValue;
|
11538
|
+
/**
|
11539
|
+
* Specifies a merge action. Valid values: simple, custom. If simple, merge behavior is defined by MergeWhenMatched and MergeWhenNotMatched. If custom, defined by MergeClause.
|
11540
|
+
*/
|
11541
|
+
MergeAction?: GenericLimitedString;
|
11542
|
+
/**
|
11543
|
+
* Specifies how to resolve records that match preexisting data when merging. Valid values: update, delete.
|
11544
|
+
*/
|
11545
|
+
MergeWhenMatched?: GenericLimitedString;
|
11546
|
+
/**
|
11547
|
+
* Specifies how to process records that do not match preexisting data when merging. Valid values: insert, none.
|
11548
|
+
*/
|
11549
|
+
MergeWhenNotMatched?: GenericLimitedString;
|
11550
|
+
/**
|
11551
|
+
* A SQL statement that specifies a custom merge behavior.
|
11552
|
+
*/
|
11553
|
+
MergeClause?: GenericString;
|
11554
|
+
/**
|
11555
|
+
* The name of a staging table used when performing merge or upsert append actions. Data is written to this table, then moved to table by a generated postaction.
|
11556
|
+
*/
|
11557
|
+
StagingTable?: GenericString;
|
11558
|
+
/**
|
11559
|
+
* Specifies the columns combined to identify a record when detecting matches for merges and upserts. A list of structures with value, label and description keys. Each structure describes a column.
|
11560
|
+
*/
|
11561
|
+
SelectedColumns?: OptionList;
|
11562
|
+
/**
|
11563
|
+
* Specifies whether automatic query pushdown is enabled. If pushdown is enabled, then when a query is run on Spark, if part of the query can be "pushed down" to the Snowflake server, it is pushed down. This improves performance of some queries.
|
11564
|
+
*/
|
11565
|
+
AutoPushdown?: BooleanValue;
|
11566
|
+
/**
|
11567
|
+
* Manually defines the target schema for the node. A list of structures with value , label and description keys. Each structure defines a column.
|
11568
|
+
*/
|
11569
|
+
TableSchema?: OptionList;
|
11570
|
+
}
|
11571
|
+
export interface SnowflakeSource {
|
11572
|
+
/**
|
11573
|
+
* The name of the Snowflake data source.
|
11574
|
+
*/
|
11575
|
+
Name: NodeName;
|
11576
|
+
/**
|
11577
|
+
* Configuration for the Snowflake data source.
|
11578
|
+
*/
|
11579
|
+
Data: SnowflakeNodeData;
|
11580
|
+
/**
|
11581
|
+
* Specifies user-defined schemas for your output data.
|
11582
|
+
*/
|
11583
|
+
OutputSchemas?: GlueSchemas;
|
11584
|
+
}
|
11585
|
+
export interface SnowflakeTarget {
|
11586
|
+
/**
|
11587
|
+
* The name of the Snowflake target.
|
11588
|
+
*/
|
11589
|
+
Name: NodeName;
|
11590
|
+
/**
|
11591
|
+
* Specifies the data of the Snowflake target node.
|
11592
|
+
*/
|
11593
|
+
Data: SnowflakeNodeData;
|
11594
|
+
/**
|
11595
|
+
* The nodes that are inputs to the data target.
|
11596
|
+
*/
|
11597
|
+
Inputs?: OneInput;
|
11598
|
+
}
|
11477
11599
|
export type Sort = "ASC"|"DESC"|string;
|
11478
11600
|
export type SortCriteria = SortCriterion[];
|
11479
11601
|
export interface SortCriterion {
|
package/clients/healthlake.d.ts
CHANGED
@@ -12,27 +12,27 @@ declare class HealthLake extends Service {
|
|
12
12
|
constructor(options?: HealthLake.Types.ClientConfiguration)
|
13
13
|
config: Config & HealthLake.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Creates a
|
15
|
+
* Creates a data store that can ingest and export FHIR formatted data.
|
16
16
|
*/
|
17
17
|
createFHIRDatastore(params: HealthLake.Types.CreateFHIRDatastoreRequest, callback?: (err: AWSError, data: HealthLake.Types.CreateFHIRDatastoreResponse) => void): Request<HealthLake.Types.CreateFHIRDatastoreResponse, AWSError>;
|
18
18
|
/**
|
19
|
-
* Creates a
|
19
|
+
* Creates a data store that can ingest and export FHIR formatted data.
|
20
20
|
*/
|
21
21
|
createFHIRDatastore(callback?: (err: AWSError, data: HealthLake.Types.CreateFHIRDatastoreResponse) => void): Request<HealthLake.Types.CreateFHIRDatastoreResponse, AWSError>;
|
22
22
|
/**
|
23
|
-
* Deletes a
|
23
|
+
* Deletes a data store.
|
24
24
|
*/
|
25
25
|
deleteFHIRDatastore(params: HealthLake.Types.DeleteFHIRDatastoreRequest, callback?: (err: AWSError, data: HealthLake.Types.DeleteFHIRDatastoreResponse) => void): Request<HealthLake.Types.DeleteFHIRDatastoreResponse, AWSError>;
|
26
26
|
/**
|
27
|
-
* Deletes a
|
27
|
+
* Deletes a data store.
|
28
28
|
*/
|
29
29
|
deleteFHIRDatastore(callback?: (err: AWSError, data: HealthLake.Types.DeleteFHIRDatastoreResponse) => void): Request<HealthLake.Types.DeleteFHIRDatastoreResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
* Gets the properties associated with the FHIR
|
31
|
+
* Gets the properties associated with the FHIR data store, including the data store ID, data store ARN, data store name, data store status, when the data store was created, data store type version, and the data store's endpoint.
|
32
32
|
*/
|
33
33
|
describeFHIRDatastore(params: HealthLake.Types.DescribeFHIRDatastoreRequest, callback?: (err: AWSError, data: HealthLake.Types.DescribeFHIRDatastoreResponse) => void): Request<HealthLake.Types.DescribeFHIRDatastoreResponse, AWSError>;
|
34
34
|
/**
|
35
|
-
* Gets the properties associated with the FHIR
|
35
|
+
* Gets the properties associated with the FHIR data store, including the data store ID, data store ARN, data store name, data store status, when the data store was created, data store type version, and the data store's endpoint.
|
36
36
|
*/
|
37
37
|
describeFHIRDatastore(callback?: (err: AWSError, data: HealthLake.Types.DescribeFHIRDatastoreResponse) => void): Request<HealthLake.Types.DescribeFHIRDatastoreResponse, AWSError>;
|
38
38
|
/**
|
@@ -52,11 +52,11 @@ declare class HealthLake extends Service {
|
|
52
52
|
*/
|
53
53
|
describeFHIRImportJob(callback?: (err: AWSError, data: HealthLake.Types.DescribeFHIRImportJobResponse) => void): Request<HealthLake.Types.DescribeFHIRImportJobResponse, AWSError>;
|
54
54
|
/**
|
55
|
-
* Lists all FHIR
|
55
|
+
* Lists all FHIR data stores that are in the user’s account, regardless of data store status.
|
56
56
|
*/
|
57
57
|
listFHIRDatastores(params: HealthLake.Types.ListFHIRDatastoresRequest, callback?: (err: AWSError, data: HealthLake.Types.ListFHIRDatastoresResponse) => void): Request<HealthLake.Types.ListFHIRDatastoresResponse, AWSError>;
|
58
58
|
/**
|
59
|
-
* Lists all FHIR
|
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
62
|
/**
|
@@ -76,11 +76,11 @@ declare class HealthLake extends Service {
|
|
76
76
|
*/
|
77
77
|
listFHIRImportJobs(callback?: (err: AWSError, data: HealthLake.Types.ListFHIRImportJobsResponse) => void): Request<HealthLake.Types.ListFHIRImportJobsResponse, AWSError>;
|
78
78
|
/**
|
79
|
-
* Returns a list of all existing tags associated with a
|
79
|
+
* Returns a list of all existing tags associated with a data store.
|
80
80
|
*/
|
81
81
|
listTagsForResource(params: HealthLake.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: HealthLake.Types.ListTagsForResourceResponse) => void): Request<HealthLake.Types.ListTagsForResourceResponse, AWSError>;
|
82
82
|
/**
|
83
|
-
* Returns a list of all existing tags associated with a
|
83
|
+
* Returns a list of all existing tags associated with a data store.
|
84
84
|
*/
|
85
85
|
listTagsForResource(callback?: (err: AWSError, data: HealthLake.Types.ListTagsForResourceResponse) => void): Request<HealthLake.Types.ListTagsForResourceResponse, AWSError>;
|
86
86
|
/**
|
@@ -100,19 +100,19 @@ declare class HealthLake extends Service {
|
|
100
100
|
*/
|
101
101
|
startFHIRImportJob(callback?: (err: AWSError, data: HealthLake.Types.StartFHIRImportJobResponse) => void): Request<HealthLake.Types.StartFHIRImportJobResponse, AWSError>;
|
102
102
|
/**
|
103
|
-
* Adds a user specified key and value tag to a
|
103
|
+
* Adds a user specified key and value tag to a data store.
|
104
104
|
*/
|
105
105
|
tagResource(params: HealthLake.Types.TagResourceRequest, callback?: (err: AWSError, data: HealthLake.Types.TagResourceResponse) => void): Request<HealthLake.Types.TagResourceResponse, AWSError>;
|
106
106
|
/**
|
107
|
-
* Adds a user specified key and value tag to a
|
107
|
+
* Adds a user specified key and value tag to a data store.
|
108
108
|
*/
|
109
109
|
tagResource(callback?: (err: AWSError, data: HealthLake.Types.TagResourceResponse) => void): Request<HealthLake.Types.TagResourceResponse, AWSError>;
|
110
110
|
/**
|
111
|
-
* Removes tags from a
|
111
|
+
* Removes tags from a data store.
|
112
112
|
*/
|
113
113
|
untagResource(params: HealthLake.Types.UntagResourceRequest, callback?: (err: AWSError, data: HealthLake.Types.UntagResourceResponse) => void): Request<HealthLake.Types.UntagResourceResponse, AWSError>;
|
114
114
|
/**
|
115
|
-
* Removes tags from a
|
115
|
+
* Removes tags from a data store.
|
116
116
|
*/
|
117
117
|
untagResource(callback?: (err: AWSError, data: HealthLake.Types.UntagResourceResponse) => void): Request<HealthLake.Types.UntagResourceResponse, AWSError>;
|
118
118
|
}
|
@@ -126,19 +126,19 @@ declare namespace HealthLake {
|
|
126
126
|
export type ConfigurationMetadata = string;
|
127
127
|
export interface CreateFHIRDatastoreRequest {
|
128
128
|
/**
|
129
|
-
* The user generated name for the
|
129
|
+
* The user generated name for the data store.
|
130
130
|
*/
|
131
131
|
DatastoreName?: DatastoreName;
|
132
132
|
/**
|
133
|
-
* The FHIR version of the
|
133
|
+
* The FHIR version of the data store. The only supported version is R4.
|
134
134
|
*/
|
135
135
|
DatastoreTypeVersion: FHIRVersion;
|
136
136
|
/**
|
137
|
-
* The server-side encryption key configuration for a customer provided encryption key specified for creating a
|
137
|
+
* The server-side encryption key configuration for a customer provided encryption key specified for creating a data store.
|
138
138
|
*/
|
139
139
|
SseConfiguration?: SseConfiguration;
|
140
140
|
/**
|
141
|
-
* Optional parameter to preload data upon creation of the
|
141
|
+
* Optional parameter to preload data upon creation of the data store. Currently, the only supported preloaded data is synthetic data generated from Synthea.
|
142
142
|
*/
|
143
143
|
PreloadDataConfig?: PreloadDataConfig;
|
144
144
|
/**
|
@@ -146,48 +146,48 @@ declare namespace HealthLake {
|
|
146
146
|
*/
|
147
147
|
ClientToken?: ClientTokenString;
|
148
148
|
/**
|
149
|
-
* Resource tags that are applied to a
|
149
|
+
* Resource tags that are applied to a data store when it is created.
|
150
150
|
*/
|
151
151
|
Tags?: TagList;
|
152
152
|
/**
|
153
|
-
* The configuration of the identity provider that you want to use for your
|
153
|
+
* The configuration of the identity provider that you want to use for your data store.
|
154
154
|
*/
|
155
155
|
IdentityProviderConfiguration?: IdentityProviderConfiguration;
|
156
156
|
}
|
157
157
|
export interface CreateFHIRDatastoreResponse {
|
158
158
|
/**
|
159
|
-
* The AWS-generated
|
159
|
+
* The AWS-generated data store id. This id is in the output from the initial data store creation call.
|
160
160
|
*/
|
161
161
|
DatastoreId: DatastoreId;
|
162
162
|
/**
|
163
|
-
* The
|
163
|
+
* The data store ARN is generated during the creation of the data store and can be found in the output from the initial data store creation call.
|
164
164
|
*/
|
165
165
|
DatastoreArn: DatastoreArn;
|
166
166
|
/**
|
167
|
-
* The status of the FHIR
|
167
|
+
* The status of the FHIR data store.
|
168
168
|
*/
|
169
169
|
DatastoreStatus: DatastoreStatus;
|
170
170
|
/**
|
171
|
-
* The AWS endpoint for the created
|
171
|
+
* The AWS endpoint for the created data store.
|
172
172
|
*/
|
173
173
|
DatastoreEndpoint: BoundedLengthString;
|
174
174
|
}
|
175
175
|
export type DatastoreArn = string;
|
176
176
|
export interface DatastoreFilter {
|
177
177
|
/**
|
178
|
-
* Allows the user to filter
|
178
|
+
* Allows the user to filter data store results by name.
|
179
179
|
*/
|
180
180
|
DatastoreName?: DatastoreName;
|
181
181
|
/**
|
182
|
-
* Allows the user to filter
|
182
|
+
* Allows the user to filter data store results by status.
|
183
183
|
*/
|
184
184
|
DatastoreStatus?: DatastoreStatus;
|
185
185
|
/**
|
186
|
-
* A filter that allows the user to set cutoff dates for records. All
|
186
|
+
* A filter that allows the user to set cutoff dates for records. All data stores created before the specified date will be included in the results.
|
187
187
|
*/
|
188
188
|
CreatedBefore?: Timestamp;
|
189
189
|
/**
|
190
|
-
* A filter that allows the user to set cutoff dates for records. All
|
190
|
+
* A filter that allows the user to set cutoff dates for records. All data stores created after the specified date will be included in the results.
|
191
191
|
*/
|
192
192
|
CreatedAfter?: Timestamp;
|
193
193
|
}
|
@@ -195,23 +195,23 @@ declare namespace HealthLake {
|
|
195
195
|
export type DatastoreName = string;
|
196
196
|
export interface DatastoreProperties {
|
197
197
|
/**
|
198
|
-
* The AWS-generated ID number for the
|
198
|
+
* The AWS-generated ID number for the data store.
|
199
199
|
*/
|
200
200
|
DatastoreId: DatastoreId;
|
201
201
|
/**
|
202
|
-
* The Amazon Resource Name used in the creation of the
|
202
|
+
* The Amazon Resource Name used in the creation of the data store.
|
203
203
|
*/
|
204
204
|
DatastoreArn: DatastoreArn;
|
205
205
|
/**
|
206
|
-
* The user-generated name for the
|
206
|
+
* The user-generated name for the data store.
|
207
207
|
*/
|
208
208
|
DatastoreName?: DatastoreName;
|
209
209
|
/**
|
210
|
-
* The status of the
|
210
|
+
* The status of the data store.
|
211
211
|
*/
|
212
212
|
DatastoreStatus: DatastoreStatus;
|
213
213
|
/**
|
214
|
-
* The time that a
|
214
|
+
* The time that a data store was created.
|
215
215
|
*/
|
216
216
|
CreatedAt?: Timestamp;
|
217
217
|
/**
|
@@ -219,7 +219,7 @@ declare namespace HealthLake {
|
|
219
219
|
*/
|
220
220
|
DatastoreTypeVersion: FHIRVersion;
|
221
221
|
/**
|
222
|
-
* The AWS endpoint for the
|
222
|
+
* The AWS endpoint for the data store. Each data store will have it's own endpoint with data store ID in the endpoint URL.
|
223
223
|
*/
|
224
224
|
DatastoreEndpoint: String;
|
225
225
|
/**
|
@@ -227,11 +227,11 @@ declare namespace HealthLake {
|
|
227
227
|
*/
|
228
228
|
SseConfiguration?: SseConfiguration;
|
229
229
|
/**
|
230
|
-
* The preloaded data configuration for the
|
230
|
+
* The preloaded data configuration for the data store. Only data preloaded from Synthea is supported.
|
231
231
|
*/
|
232
232
|
PreloadDataConfig?: PreloadDataConfig;
|
233
233
|
/**
|
234
|
-
* The identity provider that you selected when you created the
|
234
|
+
* The identity provider that you selected when you created the data store.
|
235
235
|
*/
|
236
236
|
IdentityProviderConfiguration?: IdentityProviderConfiguration;
|
237
237
|
}
|
@@ -239,43 +239,43 @@ declare namespace HealthLake {
|
|
239
239
|
export type DatastoreStatus = "CREATING"|"ACTIVE"|"DELETING"|"DELETED"|string;
|
240
240
|
export interface DeleteFHIRDatastoreRequest {
|
241
241
|
/**
|
242
|
-
* The AWS-generated ID for the
|
242
|
+
* The AWS-generated ID for the data store to be deleted.
|
243
243
|
*/
|
244
244
|
DatastoreId: DatastoreId;
|
245
245
|
}
|
246
246
|
export interface DeleteFHIRDatastoreResponse {
|
247
247
|
/**
|
248
|
-
* The AWS-generated ID for the
|
248
|
+
* The AWS-generated ID for the data store to be deleted.
|
249
249
|
*/
|
250
250
|
DatastoreId: DatastoreId;
|
251
251
|
/**
|
252
|
-
* The Amazon Resource Name (ARN) that gives
|
252
|
+
* The Amazon Resource Name (ARN) that gives AWS HealthLake access permission.
|
253
253
|
*/
|
254
254
|
DatastoreArn: DatastoreArn;
|
255
255
|
/**
|
256
|
-
* The status of the
|
256
|
+
* The status of the data store that the user has requested to be deleted.
|
257
257
|
*/
|
258
258
|
DatastoreStatus: DatastoreStatus;
|
259
259
|
/**
|
260
|
-
* The AWS endpoint for the
|
260
|
+
* The AWS endpoint for the data store the user has requested to be deleted.
|
261
261
|
*/
|
262
262
|
DatastoreEndpoint: BoundedLengthString;
|
263
263
|
}
|
264
264
|
export interface DescribeFHIRDatastoreRequest {
|
265
265
|
/**
|
266
|
-
* The AWS-generated
|
266
|
+
* The AWS-generated data store ID.
|
267
267
|
*/
|
268
268
|
DatastoreId: DatastoreId;
|
269
269
|
}
|
270
270
|
export interface DescribeFHIRDatastoreResponse {
|
271
271
|
/**
|
272
|
-
* All properties associated with a
|
272
|
+
* All properties associated with a data store, including the data store ID, data store ARN, data store name, data store status, when the data store was created, data store type version, and the data store's endpoint.
|
273
273
|
*/
|
274
274
|
DatastoreProperties: DatastoreProperties;
|
275
275
|
}
|
276
276
|
export interface DescribeFHIRExportJobRequest {
|
277
277
|
/**
|
278
|
-
* The AWS generated ID for the
|
278
|
+
* The AWS generated ID for the data store from which files are being exported from for an export job.
|
279
279
|
*/
|
280
280
|
DatastoreId: DatastoreId;
|
281
281
|
/**
|
@@ -291,7 +291,7 @@ declare namespace HealthLake {
|
|
291
291
|
}
|
292
292
|
export interface DescribeFHIRImportJobRequest {
|
293
293
|
/**
|
294
|
-
* The AWS-generated ID of the
|
294
|
+
* The AWS-generated ID of the data store.
|
295
295
|
*/
|
296
296
|
DatastoreId: DatastoreId;
|
297
297
|
/**
|
@@ -328,7 +328,7 @@ declare namespace HealthLake {
|
|
328
328
|
*/
|
329
329
|
EndTime?: Timestamp;
|
330
330
|
/**
|
331
|
-
* The AWS generated ID for the
|
331
|
+
* The AWS generated ID for the data store from which files are being exported for an export job.
|
332
332
|
*/
|
333
333
|
DatastoreId: DatastoreId;
|
334
334
|
/**
|
@@ -349,11 +349,11 @@ declare namespace HealthLake {
|
|
349
349
|
export type IamRoleArn = string;
|
350
350
|
export interface IdentityProviderConfiguration {
|
351
351
|
/**
|
352
|
-
* The authorization strategy that you selected when you created the
|
352
|
+
* The authorization strategy that you selected when you created the data store.
|
353
353
|
*/
|
354
354
|
AuthorizationStrategy: AuthorizationStrategy;
|
355
355
|
/**
|
356
|
-
* If you enabled fine-grained authorization when you created the
|
356
|
+
* If you enabled fine-grained authorization when you created the data store.
|
357
357
|
*/
|
358
358
|
FineGrainedAuthorizationEnabled?: Boolean;
|
359
359
|
/**
|
@@ -396,7 +396,7 @@ declare namespace HealthLake {
|
|
396
396
|
InputDataConfig: InputDataConfig;
|
397
397
|
JobOutputDataConfig?: OutputDataConfig;
|
398
398
|
/**
|
399
|
-
* The Amazon Resource Name (ARN) that gives
|
399
|
+
* The Amazon Resource Name (ARN) that gives AWS HealthLake access to your input data.
|
400
400
|
*/
|
401
401
|
DataAccessRoleArn?: IamRoleArn;
|
402
402
|
/**
|
@@ -407,7 +407,7 @@ declare namespace HealthLake {
|
|
407
407
|
export type ImportJobPropertiesList = ImportJobProperties[];
|
408
408
|
export interface InputDataConfig {
|
409
409
|
/**
|
410
|
-
* The S3Uri is the user specified S3 location of the FHIR data to be imported into
|
410
|
+
* The S3Uri is the user specified S3 location of the FHIR data to be imported into AWS HealthLake.
|
411
411
|
*/
|
412
412
|
S3Uri?: S3Uri;
|
413
413
|
}
|
@@ -416,32 +416,32 @@ declare namespace HealthLake {
|
|
416
416
|
export type JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED_WITH_ERRORS"|"COMPLETED"|"FAILED"|"CANCEL_SUBMITTED"|"CANCEL_IN_PROGRESS"|"CANCEL_COMPLETED"|"CANCEL_FAILED"|string;
|
417
417
|
export interface KmsEncryptionConfig {
|
418
418
|
/**
|
419
|
-
* The type of customer-managed-key(CMK) used for
|
419
|
+
* The type of customer-managed-key(CMK) used for encryption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
|
420
420
|
*/
|
421
421
|
CmkType: CmkType;
|
422
422
|
/**
|
423
|
-
* The KMS encryption key id/alias used to encrypt the
|
423
|
+
* The KMS encryption key id/alias used to encrypt the data store contents at rest.
|
424
424
|
*/
|
425
425
|
KmsKeyId?: EncryptionKeyID;
|
426
426
|
}
|
427
427
|
export type LambdaArn = string;
|
428
428
|
export interface ListFHIRDatastoresRequest {
|
429
429
|
/**
|
430
|
-
* Lists all filters associated with a FHIR
|
430
|
+
* Lists all filters associated with a FHIR data store request.
|
431
431
|
*/
|
432
432
|
Filter?: DatastoreFilter;
|
433
433
|
/**
|
434
|
-
* Fetches the next page of
|
434
|
+
* Fetches the next page of data stores when results are paginated.
|
435
435
|
*/
|
436
436
|
NextToken?: NextToken;
|
437
437
|
/**
|
438
|
-
* The maximum number of
|
438
|
+
* The maximum number of data stores returned in a single page of a ListFHIRDatastoresRequest call.
|
439
439
|
*/
|
440
440
|
MaxResults?: MaxResultsInteger;
|
441
441
|
}
|
442
442
|
export interface ListFHIRDatastoresResponse {
|
443
443
|
/**
|
444
|
-
* All properties associated with the listed
|
444
|
+
* All properties associated with the listed data stores.
|
445
445
|
*/
|
446
446
|
DatastorePropertiesList: DatastorePropertiesList;
|
447
447
|
/**
|
@@ -451,7 +451,7 @@ declare namespace HealthLake {
|
|
451
451
|
}
|
452
452
|
export interface ListFHIRExportJobsRequest {
|
453
453
|
/**
|
454
|
-
* This parameter limits the response to the export job with the specified
|
454
|
+
* This parameter limits the response to the export job with the specified data store ID.
|
455
455
|
*/
|
456
456
|
DatastoreId: DatastoreId;
|
457
457
|
/**
|
@@ -491,7 +491,7 @@ declare namespace HealthLake {
|
|
491
491
|
}
|
492
492
|
export interface ListFHIRImportJobsRequest {
|
493
493
|
/**
|
494
|
-
* This parameter limits the response to the import job with the specified
|
494
|
+
* This parameter limits the response to the import job with the specified data store ID.
|
495
495
|
*/
|
496
496
|
DatastoreId: DatastoreId;
|
497
497
|
/**
|
@@ -531,13 +531,13 @@ declare namespace HealthLake {
|
|
531
531
|
}
|
532
532
|
export interface ListTagsForResourceRequest {
|
533
533
|
/**
|
534
|
-
* The Amazon Resource Name(ARN) of the
|
534
|
+
* The Amazon Resource Name(ARN) of the data store for which tags are being added.
|
535
535
|
*/
|
536
536
|
ResourceARN: AmazonResourceName;
|
537
537
|
}
|
538
538
|
export interface ListTagsForResourceResponse {
|
539
539
|
/**
|
540
|
-
* Returns a list of tags associated with a
|
540
|
+
* Returns a list of tags associated with a data store.
|
541
541
|
*/
|
542
542
|
Tags?: TagList;
|
543
543
|
}
|
@@ -559,7 +559,7 @@ declare namespace HealthLake {
|
|
559
559
|
export type PreloadDataType = "SYNTHEA"|string;
|
560
560
|
export interface S3Configuration {
|
561
561
|
/**
|
562
|
-
* The S3Uri is the user specified S3 location of the FHIR data to be imported into
|
562
|
+
* The S3Uri is the user specified S3 location of the FHIR data to be imported into AWS HealthLake.
|
563
563
|
*/
|
564
564
|
S3Uri: S3Uri;
|
565
565
|
/**
|
@@ -584,7 +584,7 @@ declare namespace HealthLake {
|
|
584
584
|
*/
|
585
585
|
OutputDataConfig: OutputDataConfig;
|
586
586
|
/**
|
587
|
-
* The AWS generated ID for the
|
587
|
+
* The AWS generated ID for the data store from which files are being exported for an export job.
|
588
588
|
*/
|
589
589
|
DatastoreId: DatastoreId;
|
590
590
|
/**
|
@@ -606,7 +606,7 @@ declare namespace HealthLake {
|
|
606
606
|
*/
|
607
607
|
JobStatus: JobStatus;
|
608
608
|
/**
|
609
|
-
* The AWS generated ID for the
|
609
|
+
* The AWS generated ID for the data store from which files are being exported for an export job.
|
610
610
|
*/
|
611
611
|
DatastoreId?: DatastoreId;
|
612
612
|
}
|
@@ -621,11 +621,11 @@ declare namespace HealthLake {
|
|
621
621
|
InputDataConfig: InputDataConfig;
|
622
622
|
JobOutputDataConfig: OutputDataConfig;
|
623
623
|
/**
|
624
|
-
* The AWS-generated
|
624
|
+
* The AWS-generated data store ID.
|
625
625
|
*/
|
626
626
|
DatastoreId: DatastoreId;
|
627
627
|
/**
|
628
|
-
* The Amazon Resource Name (ARN) that gives
|
628
|
+
* The Amazon Resource Name (ARN) that gives AWS HealthLake access permission.
|
629
629
|
*/
|
630
630
|
DataAccessRoleArn: IamRoleArn;
|
631
631
|
/**
|
@@ -643,7 +643,7 @@ declare namespace HealthLake {
|
|
643
643
|
*/
|
644
644
|
JobStatus: JobStatus;
|
645
645
|
/**
|
646
|
-
* The AWS-generated
|
646
|
+
* The AWS-generated data store ID.
|
647
647
|
*/
|
648
648
|
DatastoreId?: DatastoreId;
|
649
649
|
}
|
@@ -663,11 +663,11 @@ declare namespace HealthLake {
|
|
663
663
|
export type TagList = Tag[];
|
664
664
|
export interface TagResourceRequest {
|
665
665
|
/**
|
666
|
-
* The Amazon Resource Name(ARN)that gives
|
666
|
+
* The Amazon Resource Name(ARN)that gives AWS HealthLake access to the data store which tags are being added to.
|
667
667
|
*/
|
668
668
|
ResourceARN: AmazonResourceName;
|
669
669
|
/**
|
670
|
-
* The user specified key and value pair tags being added to a
|
670
|
+
* The user specified key and value pair tags being added to a data store.
|
671
671
|
*/
|
672
672
|
Tags: TagList;
|
673
673
|
}
|
@@ -677,11 +677,11 @@ declare namespace HealthLake {
|
|
677
677
|
export type Timestamp = Date;
|
678
678
|
export interface UntagResourceRequest {
|
679
679
|
/**
|
680
|
-
*
|
680
|
+
* The Amazon Resource Name(ARN) of the data store for which tags are being removed.
|
681
681
|
*/
|
682
682
|
ResourceARN: AmazonResourceName;
|
683
683
|
/**
|
684
|
-
* The keys for the tags to be removed from the
|
684
|
+
* The keys for the tags to be removed from the HealthLake data store.
|
685
685
|
*/
|
686
686
|
TagKeys: TagKeyList;
|
687
687
|
}
|