cdk-lambda-subminute 2.0.313 → 2.0.315
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/.jsii +27 -14
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/arc-zonal-shift-2022-10-30.min.json +319 -17
- package/node_modules/aws-sdk/apis/arc-zonal-shift-2022-10-30.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +654 -589
- package/node_modules/aws-sdk/apis/marketplace-agreement-2020-03-01.examples.json +5 -0
- package/node_modules/aws-sdk/apis/marketplace-agreement-2020-03-01.min.json +397 -0
- package/node_modules/aws-sdk/apis/marketplace-agreement-2020-03-01.paginators.json +14 -0
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +542 -7
- package/node_modules/aws-sdk/apis/marketplace-deployment-2023-01-25.examples.json +5 -0
- package/node_modules/aws-sdk/apis/marketplace-deployment-2023-01-25.min.json +178 -0
- package/node_modules/aws-sdk/apis/marketplace-deployment-2023-01-25.paginators.json +4 -0
- package/node_modules/aws-sdk/apis/metadata.json +8 -0
- package/node_modules/aws-sdk/apis/qconnect-2020-10-19.min.json +68 -6
- package/node_modules/aws-sdk/apis/rbin-2021-06-15.min.json +12 -6
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.min.json +436 -74
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1227 -992
- package/node_modules/aws-sdk/apis/verifiedpermissions-2021-12-01.min.json +44 -19
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +3 -1
- package/node_modules/aws-sdk/clients/arczonalshift.d.ts +330 -30
- package/node_modules/aws-sdk/clients/glue.d.ts +83 -2
- package/node_modules/aws-sdk/clients/marketplaceagreement.d.ts +602 -0
- package/node_modules/aws-sdk/clients/marketplaceagreement.js +18 -0
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +883 -2
- package/node_modules/aws-sdk/clients/marketplacedeployment.d.ts +172 -0
- package/node_modules/aws-sdk/clients/marketplacedeployment.js +18 -0
- package/node_modules/aws-sdk/clients/qconnect.d.ts +66 -4
- package/node_modules/aws-sdk/clients/rbin.d.ts +24 -0
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +463 -6
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +264 -2
- package/node_modules/aws-sdk/clients/verifiedpermissions.d.ts +27 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +88 -14
- package/node_modules/aws-sdk/dist/aws-sdk.js +553 -10
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +40 -40
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -4998,6 +4998,25 @@ declare namespace Glue {
|
|
4998
4998
|
DataLakePrincipalIdentifier?: DataLakePrincipalString;
|
4999
4999
|
}
|
5000
5000
|
export type DataLakePrincipalString = string;
|
5001
|
+
export interface DataQualityAnalyzerResult {
|
5002
|
+
/**
|
5003
|
+
* The name of the data quality analyzer.
|
5004
|
+
*/
|
5005
|
+
Name?: NameString;
|
5006
|
+
/**
|
5007
|
+
* A description of the data quality analyzer.
|
5008
|
+
*/
|
5009
|
+
Description?: DataQualityRuleResultDescription;
|
5010
|
+
/**
|
5011
|
+
* An evaluation message.
|
5012
|
+
*/
|
5013
|
+
EvaluationMessage?: DataQualityRuleResultDescription;
|
5014
|
+
/**
|
5015
|
+
* A map of metrics associated with the evaluation of the analyzer.
|
5016
|
+
*/
|
5017
|
+
EvaluatedMetrics?: EvaluatedMetricsMap;
|
5018
|
+
}
|
5019
|
+
export type DataQualityAnalyzerResults = DataQualityAnalyzerResult[];
|
5001
5020
|
export interface DataQualityEvaluationRunAdditionalRunOptions {
|
5002
5021
|
/**
|
5003
5022
|
* Whether or not to enable CloudWatch metrics.
|
@@ -5008,6 +5027,36 @@ declare namespace Glue {
|
|
5008
5027
|
*/
|
5009
5028
|
ResultsS3Prefix?: UriString;
|
5010
5029
|
}
|
5030
|
+
export interface DataQualityMetricValues {
|
5031
|
+
/**
|
5032
|
+
* The actual value of the data quality metric.
|
5033
|
+
*/
|
5034
|
+
ActualValue?: NullableDouble;
|
5035
|
+
/**
|
5036
|
+
* The expected value of the data quality metric according to the analysis of historical data.
|
5037
|
+
*/
|
5038
|
+
ExpectedValue?: NullableDouble;
|
5039
|
+
/**
|
5040
|
+
* The lower limit of the data quality metric value according to the analysis of historical data.
|
5041
|
+
*/
|
5042
|
+
LowerLimit?: NullableDouble;
|
5043
|
+
/**
|
5044
|
+
* The upper limit of the data quality metric value according to the analysis of historical data.
|
5045
|
+
*/
|
5046
|
+
UpperLimit?: NullableDouble;
|
5047
|
+
}
|
5048
|
+
export interface DataQualityObservation {
|
5049
|
+
/**
|
5050
|
+
* A description of the data quality observation.
|
5051
|
+
*/
|
5052
|
+
Description?: DataQualityObservationDescription;
|
5053
|
+
/**
|
5054
|
+
* An object of type MetricBasedObservation representing the observation that is based on evaluated data quality metrics.
|
5055
|
+
*/
|
5056
|
+
MetricBasedObservation?: MetricBasedObservation;
|
5057
|
+
}
|
5058
|
+
export type DataQualityObservationDescription = string;
|
5059
|
+
export type DataQualityObservations = DataQualityObservation[];
|
5011
5060
|
export interface DataQualityResult {
|
5012
5061
|
/**
|
5013
5062
|
* A unique result ID for the data quality result.
|
@@ -5053,6 +5102,14 @@ declare namespace Glue {
|
|
5053
5102
|
* A list of DataQualityRuleResult objects representing the results for each rule.
|
5054
5103
|
*/
|
5055
5104
|
RuleResults?: DataQualityRuleResults;
|
5105
|
+
/**
|
5106
|
+
* A list of DataQualityAnalyzerResult objects representing the results for each analyzer.
|
5107
|
+
*/
|
5108
|
+
AnalyzerResults?: DataQualityAnalyzerResults;
|
5109
|
+
/**
|
5110
|
+
* A list of DataQualityObservation objects representing the observations generated after evaluating the rules and analyzers.
|
5111
|
+
*/
|
5112
|
+
Observations?: DataQualityObservations;
|
5056
5113
|
}
|
5057
5114
|
export interface DataQualityResultDescription {
|
5058
5115
|
/**
|
@@ -5143,11 +5200,11 @@ declare namespace Glue {
|
|
5143
5200
|
/**
|
5144
5201
|
* A description of the data quality rule.
|
5145
5202
|
*/
|
5146
|
-
Description?:
|
5203
|
+
Description?: DataQualityRuleResultDescription;
|
5147
5204
|
/**
|
5148
5205
|
* An evaluation message.
|
5149
5206
|
*/
|
5150
|
-
EvaluationMessage?:
|
5207
|
+
EvaluationMessage?: DataQualityRuleResultDescription;
|
5151
5208
|
/**
|
5152
5209
|
* A pass or fail status for the rule.
|
5153
5210
|
*/
|
@@ -5157,6 +5214,7 @@ declare namespace Glue {
|
|
5157
5214
|
*/
|
5158
5215
|
EvaluatedMetrics?: EvaluatedMetricsMap;
|
5159
5216
|
}
|
5217
|
+
export type DataQualityRuleResultDescription = string;
|
5160
5218
|
export type DataQualityRuleResultStatus = "PASS"|"FAIL"|"ERROR"|string;
|
5161
5219
|
export type DataQualityRuleResults = DataQualityRuleResult[];
|
5162
5220
|
export interface DataQualityRulesetEvaluationRunDescription {
|
@@ -6874,6 +6932,14 @@ declare namespace Glue {
|
|
6874
6932
|
* A list of DataQualityRuleResult objects representing the results for each rule.
|
6875
6933
|
*/
|
6876
6934
|
RuleResults?: DataQualityRuleResults;
|
6935
|
+
/**
|
6936
|
+
* A list of DataQualityAnalyzerResult objects representing the results for each analyzer.
|
6937
|
+
*/
|
6938
|
+
AnalyzerResults?: DataQualityAnalyzerResults;
|
6939
|
+
/**
|
6940
|
+
* A list of DataQualityObservation objects representing the observations generated after evaluating the rules and analyzers.
|
6941
|
+
*/
|
6942
|
+
Observations?: DataQualityObservations;
|
6877
6943
|
}
|
6878
6944
|
export interface GetDataQualityRuleRecommendationRunRequest {
|
6879
6945
|
/**
|
@@ -10111,6 +10177,20 @@ declare namespace Glue {
|
|
10111
10177
|
export type MetadataList = MetadataKeyValuePair[];
|
10112
10178
|
export type MetadataOperation = "CREATE"|string;
|
10113
10179
|
export type MetadataValueString = string;
|
10180
|
+
export interface MetricBasedObservation {
|
10181
|
+
/**
|
10182
|
+
* The name of the data quality metric used for generating the observation.
|
10183
|
+
*/
|
10184
|
+
MetricName?: NameString;
|
10185
|
+
/**
|
10186
|
+
* An object of type DataQualityMetricValues representing the analysis of the data quality metric value.
|
10187
|
+
*/
|
10188
|
+
MetricValues?: DataQualityMetricValues;
|
10189
|
+
/**
|
10190
|
+
* A list of new data quality rules generated as part of the observation based on the data quality metric value.
|
10191
|
+
*/
|
10192
|
+
NewRules?: NewRules;
|
10193
|
+
}
|
10114
10194
|
export interface MicrosoftSQLServerCatalogSource {
|
10115
10195
|
/**
|
10116
10196
|
* The name of the data source.
|
@@ -10193,6 +10273,7 @@ declare namespace Glue {
|
|
10193
10273
|
}
|
10194
10274
|
export type NameString = string;
|
10195
10275
|
export type NameStringList = NameString[];
|
10276
|
+
export type NewRules = NameString[];
|
10196
10277
|
export interface Node {
|
10197
10278
|
/**
|
10198
10279
|
* The type of Glue component represented by the node.
|