aws-sdk 2.950.0 → 2.954.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/codebuild-2016-10-06.min.json +134 -131
- package/apis/databrew-2017-07-25.min.json +177 -61
- package/apis/ec2-2016-11-15.min.json +1298 -982
- package/apis/elasticmapreduce-2009-03-31.min.json +84 -28
- package/apis/elasticmapreduce-2009-03-31.paginators.json +5 -0
- package/apis/kendra-2019-02-03.min.json +59 -35
- package/apis/medialive-2017-10-14.min.json +221 -201
- package/apis/monitoring-2010-08-01.min.json +23 -22
- package/apis/personalize-2018-05-22.min.json +1 -2
- package/apis/qldb-2019-01-02.min.json +51 -28
- package/apis/rds-2014-10-31.min.json +3 -0
- package/apis/s3control-2018-08-20.min.json +64 -55
- package/apis/s3outposts-2017-07-25.min.json +9 -2
- package/apis/securityhub-2018-10-26.min.json +409 -207
- package/apis/synthetics-2017-10-11.min.json +40 -3
- package/apis/textract-2018-06-27.min.json +144 -46
- package/clients/cloudwatch.d.ts +19 -14
- package/clients/codebuild.d.ts +130 -126
- package/clients/databrew.d.ts +123 -8
- package/clients/ec2.d.ts +424 -109
- package/clients/elbv2.d.ts +1 -1
- package/clients/emr.d.ts +146 -56
- package/clients/iam.d.ts +4 -4
- package/clients/identitystore.d.ts +15 -15
- package/clients/imagebuilder.d.ts +1 -1
- package/clients/kendra.d.ts +39 -8
- package/clients/lambda.d.ts +14 -14
- package/clients/medialive.d.ts +16 -0
- package/clients/personalize.d.ts +15 -15
- package/clients/proton.d.ts +54 -54
- package/clients/qldb.d.ts +51 -15
- package/clients/rds.d.ts +8 -4
- package/clients/s3control.d.ts +100 -78
- package/clients/s3outposts.d.ts +44 -13
- package/clients/securityhub.d.ts +473 -143
- package/clients/synthetics.d.ts +27 -10
- package/clients/textract.d.ts +92 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +17 -17
- package/dist/aws-sdk.js +1551 -1168
- package/dist/aws-sdk.min.js +76 -76
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/databrew.d.ts
CHANGED
|
@@ -356,6 +356,28 @@ declare namespace DataBrew {
|
|
|
356
356
|
export type ColumnName = string;
|
|
357
357
|
export type ColumnNameList = ColumnName[];
|
|
358
358
|
export type ColumnRange = number;
|
|
359
|
+
export interface ColumnSelector {
|
|
360
|
+
/**
|
|
361
|
+
* A regular expression for selecting a column from a dataset.
|
|
362
|
+
*/
|
|
363
|
+
Regex?: ColumnName;
|
|
364
|
+
/**
|
|
365
|
+
* The name of a column from a dataset.
|
|
366
|
+
*/
|
|
367
|
+
Name?: ColumnName;
|
|
368
|
+
}
|
|
369
|
+
export type ColumnSelectorList = ColumnSelector[];
|
|
370
|
+
export interface ColumnStatisticsConfiguration {
|
|
371
|
+
/**
|
|
372
|
+
* List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.
|
|
373
|
+
*/
|
|
374
|
+
Selectors?: ColumnSelectorList;
|
|
375
|
+
/**
|
|
376
|
+
* Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.
|
|
377
|
+
*/
|
|
378
|
+
Statistics: StatisticsConfiguration;
|
|
379
|
+
}
|
|
380
|
+
export type ColumnStatisticsConfigurationList = ColumnStatisticsConfiguration[];
|
|
359
381
|
export type CompressionFormat = "GZIP"|"LZ4"|"SNAPPY"|"BZIP2"|"DEFLATE"|"LZO"|"BROTLI"|"ZSTD"|"ZLIB"|string;
|
|
360
382
|
export type Condition = string;
|
|
361
383
|
export interface ConditionExpression {
|
|
@@ -431,6 +453,10 @@ declare namespace DataBrew {
|
|
|
431
453
|
*/
|
|
432
454
|
MaxRetries?: MaxRetries;
|
|
433
455
|
OutputLocation: S3Location;
|
|
456
|
+
/**
|
|
457
|
+
* Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of evaluations. When configuration is null, the profile job will run with default settings.
|
|
458
|
+
*/
|
|
459
|
+
Configuration?: ProfileConfiguration;
|
|
434
460
|
/**
|
|
435
461
|
* The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
|
|
436
462
|
*/
|
|
@@ -517,9 +543,13 @@ declare namespace DataBrew {
|
|
|
517
543
|
*/
|
|
518
544
|
Outputs?: OutputList;
|
|
519
545
|
/**
|
|
520
|
-
* One or more artifacts that represent the
|
|
546
|
+
* One or more artifacts that represent the Glue Data Catalog output from running the job.
|
|
521
547
|
*/
|
|
522
548
|
DataCatalogOutputs?: DataCatalogOutputList;
|
|
549
|
+
/**
|
|
550
|
+
* Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write to.
|
|
551
|
+
*/
|
|
552
|
+
DatabaseOutputs?: DatabaseOutputList;
|
|
523
553
|
/**
|
|
524
554
|
* Either the name of an existing project, or a combination of a recipe and a dataset to associate with the recipe.
|
|
525
555
|
*/
|
|
@@ -630,7 +660,7 @@ declare namespace DataBrew {
|
|
|
630
660
|
}
|
|
631
661
|
export interface DataCatalogOutput {
|
|
632
662
|
/**
|
|
633
|
-
* The unique identifier of the
|
|
663
|
+
* The unique identifier of the Amazon Web Services account that holds the Data Catalog that stores the data.
|
|
634
664
|
*/
|
|
635
665
|
CatalogId?: CatalogId;
|
|
636
666
|
/**
|
|
@@ -642,7 +672,7 @@ declare namespace DataBrew {
|
|
|
642
672
|
*/
|
|
643
673
|
TableName: TableName;
|
|
644
674
|
/**
|
|
645
|
-
* Represents options that specify how and where DataBrew writes the S3 output generated by recipe jobs.
|
|
675
|
+
* Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.
|
|
646
676
|
*/
|
|
647
677
|
S3Options?: S3TableOutputOptions;
|
|
648
678
|
/**
|
|
@@ -667,6 +697,22 @@ declare namespace DataBrew {
|
|
|
667
697
|
TempDirectory?: S3Location;
|
|
668
698
|
}
|
|
669
699
|
export type DatabaseName = string;
|
|
700
|
+
export interface DatabaseOutput {
|
|
701
|
+
/**
|
|
702
|
+
* The Glue connection that stores the connection information for the target database.
|
|
703
|
+
*/
|
|
704
|
+
GlueConnectionName: GlueConnectionName;
|
|
705
|
+
/**
|
|
706
|
+
* Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
|
|
707
|
+
*/
|
|
708
|
+
DatabaseOptions: DatabaseTableOutputOptions;
|
|
709
|
+
/**
|
|
710
|
+
* The output mode to write into the database. Currently supported option: NEW_TABLE.
|
|
711
|
+
*/
|
|
712
|
+
DatabaseOutputMode?: DatabaseOutputMode;
|
|
713
|
+
}
|
|
714
|
+
export type DatabaseOutputList = DatabaseOutput[];
|
|
715
|
+
export type DatabaseOutputMode = "NEW_TABLE"|string;
|
|
670
716
|
export type DatabaseTableName = string;
|
|
671
717
|
export interface DatabaseTableOutputOptions {
|
|
672
718
|
/**
|
|
@@ -951,13 +997,21 @@ declare namespace DataBrew {
|
|
|
951
997
|
*/
|
|
952
998
|
Outputs?: OutputList;
|
|
953
999
|
/**
|
|
954
|
-
* One or more artifacts that represent the
|
|
1000
|
+
* One or more artifacts that represent the Glue Data Catalog output from running the job.
|
|
955
1001
|
*/
|
|
956
1002
|
DataCatalogOutputs?: DataCatalogOutputList;
|
|
1003
|
+
/**
|
|
1004
|
+
* Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.
|
|
1005
|
+
*/
|
|
1006
|
+
DatabaseOutputs?: DatabaseOutputList;
|
|
957
1007
|
/**
|
|
958
1008
|
* The DataBrew project associated with this job.
|
|
959
1009
|
*/
|
|
960
1010
|
ProjectName?: ProjectName;
|
|
1011
|
+
/**
|
|
1012
|
+
* Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of evaluations. When configuration is null, the profile job will run with default settings.
|
|
1013
|
+
*/
|
|
1014
|
+
ProfileConfiguration?: ProfileConfiguration;
|
|
961
1015
|
RecipeReference?: RecipeReference;
|
|
962
1016
|
/**
|
|
963
1017
|
* The Amazon Resource Name (ARN) of the job.
|
|
@@ -1015,6 +1069,10 @@ declare namespace DataBrew {
|
|
|
1015
1069
|
* The name of the job being processed during this run.
|
|
1016
1070
|
*/
|
|
1017
1071
|
JobName: JobName;
|
|
1072
|
+
/**
|
|
1073
|
+
* Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of evaluations. When configuration is null, the profile job will run with default settings.
|
|
1074
|
+
*/
|
|
1075
|
+
ProfileConfiguration?: ProfileConfiguration;
|
|
1018
1076
|
/**
|
|
1019
1077
|
* The unique identifier of the job run.
|
|
1020
1078
|
*/
|
|
@@ -1036,9 +1094,13 @@ declare namespace DataBrew {
|
|
|
1036
1094
|
*/
|
|
1037
1095
|
Outputs?: OutputList;
|
|
1038
1096
|
/**
|
|
1039
|
-
* One or more artifacts that represent the
|
|
1097
|
+
* One or more artifacts that represent the Glue Data Catalog output from running the job.
|
|
1040
1098
|
*/
|
|
1041
1099
|
DataCatalogOutputs?: DataCatalogOutputList;
|
|
1100
|
+
/**
|
|
1101
|
+
* Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.
|
|
1102
|
+
*/
|
|
1103
|
+
DatabaseOutputs?: DatabaseOutputList;
|
|
1042
1104
|
RecipeReference?: RecipeReference;
|
|
1043
1105
|
/**
|
|
1044
1106
|
* The Amazon Resource Name (ARN) of the user who started the job run.
|
|
@@ -1355,9 +1417,13 @@ declare namespace DataBrew {
|
|
|
1355
1417
|
*/
|
|
1356
1418
|
Outputs?: OutputList;
|
|
1357
1419
|
/**
|
|
1358
|
-
* One or more artifacts that represent the
|
|
1420
|
+
* One or more artifacts that represent the Glue Data Catalog output from running the job.
|
|
1359
1421
|
*/
|
|
1360
1422
|
DataCatalogOutputs?: DataCatalogOutputList;
|
|
1423
|
+
/**
|
|
1424
|
+
* Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.
|
|
1425
|
+
*/
|
|
1426
|
+
DatabaseOutputs?: DatabaseOutputList;
|
|
1361
1427
|
/**
|
|
1362
1428
|
* The name of the project that the job is associated with.
|
|
1363
1429
|
*/
|
|
@@ -1436,9 +1502,13 @@ declare namespace DataBrew {
|
|
|
1436
1502
|
*/
|
|
1437
1503
|
Outputs?: OutputList;
|
|
1438
1504
|
/**
|
|
1439
|
-
* One or more artifacts that represent the
|
|
1505
|
+
* One or more artifacts that represent the Glue Data Catalog output from running the job.
|
|
1440
1506
|
*/
|
|
1441
1507
|
DataCatalogOutputs?: DataCatalogOutputList;
|
|
1508
|
+
/**
|
|
1509
|
+
* Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.
|
|
1510
|
+
*/
|
|
1511
|
+
DatabaseOutputs?: DatabaseOutputList;
|
|
1442
1512
|
/**
|
|
1443
1513
|
* The set of steps processed by the job.
|
|
1444
1514
|
*/
|
|
@@ -1725,6 +1795,20 @@ declare namespace DataBrew {
|
|
|
1725
1795
|
export type PathParameterName = string;
|
|
1726
1796
|
export type PathParametersMap = {[key: string]: DatasetParameter};
|
|
1727
1797
|
export type Preview = boolean;
|
|
1798
|
+
export interface ProfileConfiguration {
|
|
1799
|
+
/**
|
|
1800
|
+
* Configuration for inter-column evaluations. Configuration can be used to select evaluations and override parameters of evaluations. When configuration is undefined, the profile job will run all supported inter-column evaluations.
|
|
1801
|
+
*/
|
|
1802
|
+
DatasetStatisticsConfiguration?: StatisticsConfiguration;
|
|
1803
|
+
/**
|
|
1804
|
+
* List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.
|
|
1805
|
+
*/
|
|
1806
|
+
ProfileColumns?: ColumnSelectorList;
|
|
1807
|
+
/**
|
|
1808
|
+
* List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.
|
|
1809
|
+
*/
|
|
1810
|
+
ColumnStatisticsConfigurations?: ColumnStatisticsConfigurationList;
|
|
1811
|
+
}
|
|
1728
1812
|
export interface Project {
|
|
1729
1813
|
/**
|
|
1730
1814
|
* The ID of the Amazon Web Services account that owns the project.
|
|
@@ -2056,6 +2140,29 @@ declare namespace DataBrew {
|
|
|
2056
2140
|
ClientSessionId?: ClientSessionId;
|
|
2057
2141
|
}
|
|
2058
2142
|
export type StartedBy = string;
|
|
2143
|
+
export type Statistic = string;
|
|
2144
|
+
export type StatisticList = Statistic[];
|
|
2145
|
+
export interface StatisticOverride {
|
|
2146
|
+
/**
|
|
2147
|
+
* The name of an evaluation
|
|
2148
|
+
*/
|
|
2149
|
+
Statistic: Statistic;
|
|
2150
|
+
/**
|
|
2151
|
+
* A map that includes overrides of an evaluation’s parameters.
|
|
2152
|
+
*/
|
|
2153
|
+
Parameters: ParameterMap;
|
|
2154
|
+
}
|
|
2155
|
+
export type StatisticOverrideList = StatisticOverride[];
|
|
2156
|
+
export interface StatisticsConfiguration {
|
|
2157
|
+
/**
|
|
2158
|
+
* List of included evaluations. When the list is undefined, all supported evaluations will be included.
|
|
2159
|
+
*/
|
|
2160
|
+
IncludedStatistics?: StatisticList;
|
|
2161
|
+
/**
|
|
2162
|
+
* List of overrides for evaluations.
|
|
2163
|
+
*/
|
|
2164
|
+
Overrides?: StatisticOverrideList;
|
|
2165
|
+
}
|
|
2059
2166
|
export type StepIndex = number;
|
|
2060
2167
|
export interface StopJobRunRequest {
|
|
2061
2168
|
/**
|
|
@@ -2128,6 +2235,10 @@ declare namespace DataBrew {
|
|
|
2128
2235
|
Name: DatasetName;
|
|
2129
2236
|
}
|
|
2130
2237
|
export interface UpdateProfileJobRequest {
|
|
2238
|
+
/**
|
|
2239
|
+
* Configuration for profile jobs. Used to select columns, do evaluations, and override default parameters of evaluations. When configuration is null, the profile job will run with default settings.
|
|
2240
|
+
*/
|
|
2241
|
+
Configuration?: ProfileConfiguration;
|
|
2131
2242
|
/**
|
|
2132
2243
|
* The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.
|
|
2133
2244
|
*/
|
|
@@ -2223,9 +2334,13 @@ declare namespace DataBrew {
|
|
|
2223
2334
|
*/
|
|
2224
2335
|
Outputs?: OutputList;
|
|
2225
2336
|
/**
|
|
2226
|
-
* One or more artifacts that represent the
|
|
2337
|
+
* One or more artifacts that represent the Glue Data Catalog output from running the job.
|
|
2227
2338
|
*/
|
|
2228
2339
|
DataCatalogOutputs?: DataCatalogOutputList;
|
|
2340
|
+
/**
|
|
2341
|
+
* Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.
|
|
2342
|
+
*/
|
|
2343
|
+
DatabaseOutputs?: DatabaseOutputList;
|
|
2229
2344
|
/**
|
|
2230
2345
|
* The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
|
|
2231
2346
|
*/
|