cdk-lambda-subminute 2.0.463 → 2.0.465

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.
@@ -52,11 +52,11 @@ declare class CostOptimizationHub extends Service {
52
52
  */
53
53
  listRecommendations(callback?: (err: AWSError, data: CostOptimizationHub.Types.ListRecommendationsResponse) => void): Request<CostOptimizationHub.Types.ListRecommendationsResponse, AWSError>;
54
54
  /**
55
- * Updates the enrollment (opt in and opt out) status of an account to the Cost Optimization Hub service. If the account is a management account of an organization, this action can also be used to enroll member accounts of the organization. You must have the appropriate permissions to opt in to Cost Optimization Hub and to view its recommendations. When you opt in, Cost Optimization Hub automatically creates a service-linked role in your account to access its data.
55
+ * Updates the enrollment (opt in and opt out) status of an account to the Cost Optimization Hub service. If the account is a management account or delegated administrator of an organization, this action can also be used to enroll member accounts of the organization. You must have the appropriate permissions to opt in to Cost Optimization Hub and to view its recommendations. When you opt in, Cost Optimization Hub automatically creates a service-linked role in your account to access its data.
56
56
  */
57
57
  updateEnrollmentStatus(params: CostOptimizationHub.Types.UpdateEnrollmentStatusRequest, callback?: (err: AWSError, data: CostOptimizationHub.Types.UpdateEnrollmentStatusResponse) => void): Request<CostOptimizationHub.Types.UpdateEnrollmentStatusResponse, AWSError>;
58
58
  /**
59
- * Updates the enrollment (opt in and opt out) status of an account to the Cost Optimization Hub service. If the account is a management account of an organization, this action can also be used to enroll member accounts of the organization. You must have the appropriate permissions to opt in to Cost Optimization Hub and to view its recommendations. When you opt in, Cost Optimization Hub automatically creates a service-linked role in your account to access its data.
59
+ * Updates the enrollment (opt in and opt out) status of an account to the Cost Optimization Hub service. If the account is a management account or delegated administrator of an organization, this action can also be used to enroll member accounts of the organization. You must have the appropriate permissions to opt in to Cost Optimization Hub and to view its recommendations. When you opt in, Cost Optimization Hub automatically creates a service-linked role in your account to access its data.
60
60
  */
61
61
  updateEnrollmentStatus(callback?: (err: AWSError, data: CostOptimizationHub.Types.UpdateEnrollmentStatusResponse) => void): Request<CostOptimizationHub.Types.UpdateEnrollmentStatusResponse, AWSError>;
62
62
  /**
@@ -627,7 +627,7 @@ declare namespace CostOptimizationHub {
627
627
  */
628
628
  items?: AccountEnrollmentStatuses;
629
629
  /**
630
- * The enrollment status of all member accounts in the organization if the account is the management account.
630
+ * The enrollment status of all member accounts in the organization if the account is the management account or delegated administrator.
631
631
  */
632
632
  includeMemberAccounts?: Boolean;
633
633
  /**
@@ -642,9 +642,13 @@ declare namespace CostOptimizationHub {
642
642
  */
643
643
  groupBy: String;
644
644
  /**
645
- * The maximum number of recommendations that are returned for the request.
645
+ * The maximum number of recommendations to be returned for the request.
646
646
  */
647
647
  maxResults?: ListRecommendationSummariesRequestMaxResultsInteger;
648
+ /**
649
+ * Additional metrics to be returned for the request. The only valid value is savingsPercentage.
650
+ */
651
+ metrics?: SummaryMetricsList;
648
652
  /**
649
653
  * The token to retrieve the next set of results.
650
654
  */
@@ -657,7 +661,7 @@ declare namespace CostOptimizationHub {
657
661
  */
658
662
  estimatedTotalDedupedSavings?: Double;
659
663
  /**
660
- * List of all savings recommendations.
664
+ * A list of all savings recommendations.
661
665
  */
662
666
  items?: RecommendationSummariesList;
663
667
  /**
@@ -668,6 +672,10 @@ declare namespace CostOptimizationHub {
668
672
  * The currency code used for the recommendation.
669
673
  */
670
674
  currencyCode?: String;
675
+ /**
676
+ * The results or descriptions for the additional metrics, based on whether the metrics were or were not requested.
677
+ */
678
+ metrics?: SummaryMetricsResult;
671
679
  /**
672
680
  * The token to retrieve the next set of results.
673
681
  */
@@ -1249,6 +1257,14 @@ declare namespace CostOptimizationHub {
1249
1257
  sizeInGb?: Double;
1250
1258
  }
1251
1259
  export type String = string;
1260
+ export type SummaryMetrics = "SavingsPercentage"|string;
1261
+ export type SummaryMetricsList = SummaryMetrics[];
1262
+ export interface SummaryMetricsResult {
1263
+ /**
1264
+ * The savings percentage based on your Amazon Web Services spend over the past 30 days. Savings percentage is only supported when filtering by Region, account ID, or tags.
1265
+ */
1266
+ savingsPercentage?: String;
1267
+ }
1252
1268
  export interface Tag {
1253
1269
  /**
1254
1270
  * The key that's associated with the tag.
@@ -1267,7 +1283,7 @@ declare namespace CostOptimizationHub {
1267
1283
  */
1268
1284
  status: EnrollmentStatus;
1269
1285
  /**
1270
- * Indicates whether to enroll member accounts of the organization if the account is the management account.
1286
+ * Indicates whether to enroll member accounts of the organization if the account is the management account or delegated administrator.
1271
1287
  */
1272
1288
  includeMemberAccounts?: Boolean;
1273
1289
  }
@@ -131,6 +131,14 @@ declare class Glue extends Service {
131
131
  * Returns a list of resource metadata for a given list of workflow names. After calling the ListWorkflows operation, you can call this operation to access the data to which you have been granted permissions. This operation supports all IAM permissions, including permission conditions that uses tags.
132
132
  */
133
133
  batchGetWorkflows(callback?: (err: AWSError, data: Glue.Types.BatchGetWorkflowsResponse) => void): Request<Glue.Types.BatchGetWorkflowsResponse, AWSError>;
134
+ /**
135
+ * Annotate datapoints over time for a specific data quality statistic.
136
+ */
137
+ batchPutDataQualityStatisticAnnotation(params: Glue.Types.BatchPutDataQualityStatisticAnnotationRequest, callback?: (err: AWSError, data: Glue.Types.BatchPutDataQualityStatisticAnnotationResponse) => void): Request<Glue.Types.BatchPutDataQualityStatisticAnnotationResponse, AWSError>;
138
+ /**
139
+ * Annotate datapoints over time for a specific data quality statistic.
140
+ */
141
+ batchPutDataQualityStatisticAnnotation(callback?: (err: AWSError, data: Glue.Types.BatchPutDataQualityStatisticAnnotationResponse) => void): Request<Glue.Types.BatchPutDataQualityStatisticAnnotationResponse, AWSError>;
134
142
  /**
135
143
  * Stops one or more job runs for a specified job definition.
136
144
  */
@@ -723,6 +731,22 @@ declare class Glue extends Service {
723
731
  * Retrieves the security configuration for a specified catalog.
724
732
  */
725
733
  getDataCatalogEncryptionSettings(callback?: (err: AWSError, data: Glue.Types.GetDataCatalogEncryptionSettingsResponse) => void): Request<Glue.Types.GetDataCatalogEncryptionSettingsResponse, AWSError>;
734
+ /**
735
+ * Retrieve the training status of the model along with more information (CompletedOn, StartedOn, FailureReason).
736
+ */
737
+ getDataQualityModel(params: Glue.Types.GetDataQualityModelRequest, callback?: (err: AWSError, data: Glue.Types.GetDataQualityModelResponse) => void): Request<Glue.Types.GetDataQualityModelResponse, AWSError>;
738
+ /**
739
+ * Retrieve the training status of the model along with more information (CompletedOn, StartedOn, FailureReason).
740
+ */
741
+ getDataQualityModel(callback?: (err: AWSError, data: Glue.Types.GetDataQualityModelResponse) => void): Request<Glue.Types.GetDataQualityModelResponse, AWSError>;
742
+ /**
743
+ * Retrieve a statistic's predictions for a given Profile ID.
744
+ */
745
+ getDataQualityModelResult(params: Glue.Types.GetDataQualityModelResultRequest, callback?: (err: AWSError, data: Glue.Types.GetDataQualityModelResultResponse) => void): Request<Glue.Types.GetDataQualityModelResultResponse, AWSError>;
746
+ /**
747
+ * Retrieve a statistic's predictions for a given Profile ID.
748
+ */
749
+ getDataQualityModelResult(callback?: (err: AWSError, data: Glue.Types.GetDataQualityModelResultResponse) => void): Request<Glue.Types.GetDataQualityModelResultResponse, AWSError>;
726
750
  /**
727
751
  * Retrieves the result of a data quality rule evaluation.
728
752
  */
@@ -1219,6 +1243,22 @@ declare class Glue extends Service {
1219
1243
  * Returns a paginated list of rulesets for the specified list of Glue tables.
1220
1244
  */
1221
1245
  listDataQualityRulesets(callback?: (err: AWSError, data: Glue.Types.ListDataQualityRulesetsResponse) => void): Request<Glue.Types.ListDataQualityRulesetsResponse, AWSError>;
1246
+ /**
1247
+ * Retrieve annotations for a data quality statistic.
1248
+ */
1249
+ listDataQualityStatisticAnnotations(params: Glue.Types.ListDataQualityStatisticAnnotationsRequest, callback?: (err: AWSError, data: Glue.Types.ListDataQualityStatisticAnnotationsResponse) => void): Request<Glue.Types.ListDataQualityStatisticAnnotationsResponse, AWSError>;
1250
+ /**
1251
+ * Retrieve annotations for a data quality statistic.
1252
+ */
1253
+ listDataQualityStatisticAnnotations(callback?: (err: AWSError, data: Glue.Types.ListDataQualityStatisticAnnotationsResponse) => void): Request<Glue.Types.ListDataQualityStatisticAnnotationsResponse, AWSError>;
1254
+ /**
1255
+ * Retrieves a list of data quality statistics.
1256
+ */
1257
+ listDataQualityStatistics(params: Glue.Types.ListDataQualityStatisticsRequest, callback?: (err: AWSError, data: Glue.Types.ListDataQualityStatisticsResponse) => void): Request<Glue.Types.ListDataQualityStatisticsResponse, AWSError>;
1258
+ /**
1259
+ * Retrieves a list of data quality statistics.
1260
+ */
1261
+ listDataQualityStatistics(callback?: (err: AWSError, data: Glue.Types.ListDataQualityStatisticsResponse) => void): Request<Glue.Types.ListDataQualityStatisticsResponse, AWSError>;
1222
1262
  /**
1223
1263
  * Retrieves the names of all DevEndpoint resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names. This operation takes the optional Tags field, which you can use as a filter on the response so that tagged resources can be retrieved as a group. If you choose to use tags filtering, only resources with the tag are retrieved.
1224
1264
  */
@@ -1323,6 +1363,14 @@ declare class Glue extends Service {
1323
1363
  * Sets the security configuration for a specified catalog. After the configuration has been set, the specified encryption is applied to every catalog write thereafter.
1324
1364
  */
1325
1365
  putDataCatalogEncryptionSettings(callback?: (err: AWSError, data: Glue.Types.PutDataCatalogEncryptionSettingsResponse) => void): Request<Glue.Types.PutDataCatalogEncryptionSettingsResponse, AWSError>;
1366
+ /**
1367
+ * Annotate all datapoints for a Profile.
1368
+ */
1369
+ putDataQualityProfileAnnotation(params: Glue.Types.PutDataQualityProfileAnnotationRequest, callback?: (err: AWSError, data: Glue.Types.PutDataQualityProfileAnnotationResponse) => void): Request<Glue.Types.PutDataQualityProfileAnnotationResponse, AWSError>;
1370
+ /**
1371
+ * Annotate all datapoints for a Profile.
1372
+ */
1373
+ putDataQualityProfileAnnotation(callback?: (err: AWSError, data: Glue.Types.PutDataQualityProfileAnnotationResponse) => void): Request<Glue.Types.PutDataQualityProfileAnnotationResponse, AWSError>;
1326
1374
  /**
1327
1375
  * Sets the Data Catalog resource policy for access control.
1328
1376
  */
@@ -1962,6 +2010,22 @@ declare namespace Glue {
1962
2010
  */
1963
2011
  Inputs?: OneInput;
1964
2012
  }
2013
+ export interface AnnotationError {
2014
+ /**
2015
+ * The Profile ID for the failed annotation.
2016
+ */
2017
+ ProfileId?: HashString;
2018
+ /**
2019
+ * The Statistic ID for the failed annotation.
2020
+ */
2021
+ StatisticId?: HashString;
2022
+ /**
2023
+ * The reason why the annotation failed.
2024
+ */
2025
+ FailureReason?: DescriptionString;
2026
+ }
2027
+ export type AnnotationErrorList = AnnotationError[];
2028
+ export type AnnotationList = StatisticAnnotation[];
1965
2029
  export interface ApplyMapping {
1966
2030
  /**
1967
2031
  * The name of the transform node.
@@ -2443,6 +2507,22 @@ declare namespace Glue {
2443
2507
  */
2444
2508
  MissingWorkflows?: WorkflowNames;
2445
2509
  }
2510
+ export interface BatchPutDataQualityStatisticAnnotationRequest {
2511
+ /**
2512
+ * A list of DatapointInclusionAnnotation's.
2513
+ */
2514
+ InclusionAnnotations: InclusionAnnotationList;
2515
+ /**
2516
+ * Client Token.
2517
+ */
2518
+ ClientToken?: HashString;
2519
+ }
2520
+ export interface BatchPutDataQualityStatisticAnnotationResponse {
2521
+ /**
2522
+ * A list of AnnotationError's.
2523
+ */
2524
+ FailedInclusionAnnotations?: AnnotationErrorList;
2525
+ }
2446
2526
  export type BatchSize = number;
2447
2527
  export interface BatchStopJobRunError {
2448
2528
  /**
@@ -4216,6 +4296,10 @@ declare namespace Glue {
4216
4296
  * A target table associated with the data quality ruleset.
4217
4297
  */
4218
4298
  TargetTable?: DataQualityTargetTable;
4299
+ /**
4300
+ * The name of the security configuration created with the data quality encryption option.
4301
+ */
4302
+ DataQualitySecurityConfiguration?: NameString;
4219
4303
  /**
4220
4304
  * Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.
4221
4305
  */
@@ -5231,6 +5315,7 @@ declare namespace Glue {
5231
5315
  */
5232
5316
  UpperLimit?: NullableDouble;
5233
5317
  }
5318
+ export type DataQualityModelStatus = "RUNNING"|"SUCCEEDED"|"FAILED"|string;
5234
5319
  export interface DataQualityObservation {
5235
5320
  /**
5236
5321
  * A description of the data quality observation.
@@ -5248,6 +5333,10 @@ declare namespace Glue {
5248
5333
  * A unique result ID for the data quality result.
5249
5334
  */
5250
5335
  ResultId?: HashString;
5336
+ /**
5337
+ * The Profile ID for the data quality result.
5338
+ */
5339
+ ProfileId?: HashString;
5251
5340
  /**
5252
5341
  * An aggregate data quality score. Represents the ratio of rules that passed to the total number of rules.
5253
5342
  */
@@ -5399,6 +5488,10 @@ declare namespace Glue {
5399
5488
  * A map of metrics associated with the evaluation of the rule.
5400
5489
  */
5401
5490
  EvaluatedMetrics?: EvaluatedMetricsMap;
5491
+ /**
5492
+ * The evaluated rule.
5493
+ */
5494
+ EvaluatedRule?: DataQualityRuleResultDescription;
5402
5495
  }
5403
5496
  export type DataQualityRuleResultDescription = string;
5404
5497
  export type DataQualityRuleResultStatus = "PASS"|"FAIL"|"ERROR"|string;
@@ -5607,6 +5700,20 @@ declare namespace Glue {
5607
5700
  export type DatabaseName = string;
5608
5701
  export type DatabrewCondition = string;
5609
5702
  export type DatabrewConditionValue = string;
5703
+ export interface DatapointInclusionAnnotation {
5704
+ /**
5705
+ * The ID of the data quality profile the statistic belongs to.
5706
+ */
5707
+ ProfileId?: HashString;
5708
+ /**
5709
+ * The Statistic ID.
5710
+ */
5711
+ StatisticId?: HashString;
5712
+ /**
5713
+ * The inclusion annotation value to apply to the statistic.
5714
+ */
5715
+ InclusionAnnotation?: InclusionAnnotationValue;
5716
+ }
5610
5717
  export interface Datatype {
5611
5718
  /**
5612
5719
  * The datatype of the value.
@@ -7083,6 +7190,54 @@ declare namespace Glue {
7083
7190
  */
7084
7191
  DataCatalogEncryptionSettings?: DataCatalogEncryptionSettings;
7085
7192
  }
7193
+ export interface GetDataQualityModelRequest {
7194
+ /**
7195
+ * The Statistic ID.
7196
+ */
7197
+ StatisticId?: HashString;
7198
+ /**
7199
+ * The Profile ID.
7200
+ */
7201
+ ProfileId: HashString;
7202
+ }
7203
+ export interface GetDataQualityModelResponse {
7204
+ /**
7205
+ * The training status of the data quality model.
7206
+ */
7207
+ Status?: DataQualityModelStatus;
7208
+ /**
7209
+ * The timestamp when the data quality model training started.
7210
+ */
7211
+ StartedOn?: Timestamp;
7212
+ /**
7213
+ * The timestamp when the data quality model training completed.
7214
+ */
7215
+ CompletedOn?: Timestamp;
7216
+ /**
7217
+ * The training failure reason.
7218
+ */
7219
+ FailureReason?: HashString;
7220
+ }
7221
+ export interface GetDataQualityModelResultRequest {
7222
+ /**
7223
+ * The Statistic ID.
7224
+ */
7225
+ StatisticId: HashString;
7226
+ /**
7227
+ * The Profile ID.
7228
+ */
7229
+ ProfileId: HashString;
7230
+ }
7231
+ export interface GetDataQualityModelResultResponse {
7232
+ /**
7233
+ * The timestamp when the data quality model training completed.
7234
+ */
7235
+ CompletedOn?: Timestamp;
7236
+ /**
7237
+ * A list of StatisticModelResult
7238
+ */
7239
+ Model?: StatisticModelResults;
7240
+ }
7086
7241
  export interface GetDataQualityResultRequest {
7087
7242
  /**
7088
7243
  * A unique result ID for the data quality result.
@@ -7094,6 +7249,10 @@ declare namespace Glue {
7094
7249
  * A unique result ID for the data quality result.
7095
7250
  */
7096
7251
  ResultId?: HashString;
7252
+ /**
7253
+ * The Profile ID for the data quality result.
7254
+ */
7255
+ ProfileId?: HashString;
7097
7256
  /**
7098
7257
  * An aggregate data quality score. Represents the ratio of rules that passed to the total number of rules.
7099
7258
  */
@@ -7202,6 +7361,10 @@ declare namespace Glue {
7202
7361
  * The name of the ruleset that was created by the run.
7203
7362
  */
7204
7363
  CreatedRulesetName?: NameString;
7364
+ /**
7365
+ * The name of the security configuration created with the data quality encryption option.
7366
+ */
7367
+ DataQualitySecurityConfiguration?: NameString;
7205
7368
  }
7206
7369
  export interface GetDataQualityRulesetEvaluationRunRequest {
7207
7370
  /**
@@ -7306,6 +7469,10 @@ declare namespace Glue {
7306
7469
  * When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
7307
7470
  */
7308
7471
  RecommendationRunId?: HashString;
7472
+ /**
7473
+ * The name of the security configuration created with the data quality encryption option.
7474
+ */
7475
+ DataQualitySecurityConfiguration?: NameString;
7309
7476
  }
7310
7477
  export interface GetDatabaseRequest {
7311
7478
  /**
@@ -8932,6 +9099,8 @@ declare namespace Glue {
8932
9099
  */
8933
9100
  Replace?: ReplaceBoolean;
8934
9101
  }
9102
+ export type InclusionAnnotationList = DatapointInclusionAnnotation[];
9103
+ export type InclusionAnnotationValue = "INCLUDE"|"EXCLUDE"|string;
8935
9104
  export type Integer = number;
8936
9105
  export type IntegerFlag = number;
8937
9106
  export type IntegerValue = number;
@@ -9967,6 +10136,70 @@ declare namespace Glue {
9967
10136
  */
9968
10137
  NextToken?: PaginationToken;
9969
10138
  }
10139
+ export interface ListDataQualityStatisticAnnotationsRequest {
10140
+ /**
10141
+ * The Statistic ID.
10142
+ */
10143
+ StatisticId?: HashString;
10144
+ /**
10145
+ * The Profile ID.
10146
+ */
10147
+ ProfileId?: HashString;
10148
+ /**
10149
+ * A timestamp filter.
10150
+ */
10151
+ TimestampFilter?: TimestampFilter;
10152
+ /**
10153
+ * The maximum number of results to return in this request.
10154
+ */
10155
+ MaxResults?: PageSize;
10156
+ /**
10157
+ * A pagination token to retrieve the next set of results.
10158
+ */
10159
+ NextToken?: PaginationToken;
10160
+ }
10161
+ export interface ListDataQualityStatisticAnnotationsResponse {
10162
+ /**
10163
+ * A list of StatisticAnnotation applied to the Statistic
10164
+ */
10165
+ Annotations?: AnnotationList;
10166
+ /**
10167
+ * A pagination token to retrieve the next set of results.
10168
+ */
10169
+ NextToken?: PaginationToken;
10170
+ }
10171
+ export interface ListDataQualityStatisticsRequest {
10172
+ /**
10173
+ * The Statistic ID.
10174
+ */
10175
+ StatisticId?: HashString;
10176
+ /**
10177
+ * The Profile ID.
10178
+ */
10179
+ ProfileId?: HashString;
10180
+ /**
10181
+ * A timestamp filter.
10182
+ */
10183
+ TimestampFilter?: TimestampFilter;
10184
+ /**
10185
+ * The maximum number of results to return in this request.
10186
+ */
10187
+ MaxResults?: PageSize;
10188
+ /**
10189
+ * A pagination token to request the next page of results.
10190
+ */
10191
+ NextToken?: PaginationToken;
10192
+ }
10193
+ export interface ListDataQualityStatisticsResponse {
10194
+ /**
10195
+ * A StatisticSummaryList.
10196
+ */
10197
+ Statistics?: StatisticSummaryList;
10198
+ /**
10199
+ * A pagination token to request the next page of results.
10200
+ */
10201
+ NextToken?: PaginationToken;
10202
+ }
9970
10203
  export interface ListDevEndpointsRequest {
9971
10204
  /**
9972
10205
  * A continuation token, if this is a continuation request.
@@ -10536,6 +10769,10 @@ declare namespace Glue {
10536
10769
  * The name of the data quality metric used for generating the observation.
10537
10770
  */
10538
10771
  MetricName?: NameString;
10772
+ /**
10773
+ * The Statistic ID.
10774
+ */
10775
+ StatisticId?: HashString;
10539
10776
  /**
10540
10777
  * An object of type DataQualityMetricValues representing the analysis of the data quality metric value.
10541
10778
  */
@@ -11120,6 +11357,18 @@ declare namespace Glue {
11120
11357
  }
11121
11358
  export interface PutDataCatalogEncryptionSettingsResponse {
11122
11359
  }
11360
+ export interface PutDataQualityProfileAnnotationRequest {
11361
+ /**
11362
+ * The ID of the data quality monitoring profile to annotate.
11363
+ */
11364
+ ProfileId: HashString;
11365
+ /**
11366
+ * The inclusion annotation value to apply to the profile.
11367
+ */
11368
+ InclusionAnnotation: InclusionAnnotationValue;
11369
+ }
11370
+ export interface PutDataQualityProfileAnnotationResponse {
11371
+ }
11123
11372
  export interface PutResourcePolicyRequest {
11124
11373
  /**
11125
11374
  * Contains the policy document to set, in JSON format.
@@ -11393,6 +11642,7 @@ declare namespace Glue {
11393
11642
  */
11394
11643
  UpsertRedshiftOptions?: UpsertRedshiftTargetOptions;
11395
11644
  }
11645
+ export type ReferenceDatasetsList = NameString[];
11396
11646
  export interface RegisterSchemaVersionInput {
11397
11647
  /**
11398
11648
  * This is a wrapper structure to contain schema identity fields. The structure contains: SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided. SchemaId$SchemaName: The name of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.
@@ -11599,6 +11849,16 @@ declare namespace Glue {
11599
11849
  export type RowTag = string;
11600
11850
  export type RulesetNames = NameString[];
11601
11851
  export type RunId = string;
11852
+ export interface RunIdentifier {
11853
+ /**
11854
+ * The Run ID.
11855
+ */
11856
+ RunId?: HashString;
11857
+ /**
11858
+ * The Job Run ID.
11859
+ */
11860
+ JobRunId?: HashString;
11861
+ }
11602
11862
  export interface RunMetrics {
11603
11863
  /**
11604
11864
  * The number of bytes removed by the compaction job run.
@@ -12953,6 +13213,10 @@ declare namespace Glue {
12953
13213
  * A name for the ruleset.
12954
13214
  */
12955
13215
  CreatedRulesetName?: NameString;
13216
+ /**
13217
+ * The name of the security configuration created with the data quality encryption option.
13218
+ */
13219
+ DataQualitySecurityConfiguration?: NameString;
12956
13220
  /**
12957
13221
  * Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.
12958
13222
  */
@@ -13223,6 +13487,101 @@ declare namespace Glue {
13223
13487
  TextPlain?: GenericString;
13224
13488
  }
13225
13489
  export type StatementState = "WAITING"|"RUNNING"|"AVAILABLE"|"CANCELLING"|"CANCELLED"|"ERROR"|string;
13490
+ export interface StatisticAnnotation {
13491
+ /**
13492
+ * The Profile ID.
13493
+ */
13494
+ ProfileId?: HashString;
13495
+ /**
13496
+ * The Statistic ID.
13497
+ */
13498
+ StatisticId?: HashString;
13499
+ /**
13500
+ * The timestamp when the annotated statistic was recorded.
13501
+ */
13502
+ StatisticRecordedOn?: Timestamp;
13503
+ /**
13504
+ * The inclusion annotation applied to the statistic.
13505
+ */
13506
+ InclusionAnnotation?: TimestampedInclusionAnnotation;
13507
+ }
13508
+ export type StatisticEvaluationLevel = "Dataset"|"Column"|"Multicolumn"|string;
13509
+ export interface StatisticModelResult {
13510
+ /**
13511
+ * The lower bound.
13512
+ */
13513
+ LowerBound?: NullableDouble;
13514
+ /**
13515
+ * The upper bound.
13516
+ */
13517
+ UpperBound?: NullableDouble;
13518
+ /**
13519
+ * The predicted value.
13520
+ */
13521
+ PredictedValue?: NullableDouble;
13522
+ /**
13523
+ * The actual value.
13524
+ */
13525
+ ActualValue?: NullableDouble;
13526
+ /**
13527
+ * The date.
13528
+ */
13529
+ Date?: Timestamp;
13530
+ /**
13531
+ * The inclusion annotation.
13532
+ */
13533
+ InclusionAnnotation?: InclusionAnnotationValue;
13534
+ }
13535
+ export type StatisticModelResults = StatisticModelResult[];
13536
+ export type StatisticNameString = string;
13537
+ export type StatisticPropertiesMap = {[key: string]: DescriptionString};
13538
+ export interface StatisticSummary {
13539
+ /**
13540
+ * The Statistic ID.
13541
+ */
13542
+ StatisticId?: HashString;
13543
+ /**
13544
+ * The Profile ID.
13545
+ */
13546
+ ProfileId?: HashString;
13547
+ /**
13548
+ * The Run Identifier
13549
+ */
13550
+ RunIdentifier?: RunIdentifier;
13551
+ /**
13552
+ * The name of the statistic.
13553
+ */
13554
+ StatisticName?: StatisticNameString;
13555
+ /**
13556
+ * The value of the statistic.
13557
+ */
13558
+ DoubleValue?: double;
13559
+ /**
13560
+ * The evaluation level of the statistic. Possible values: Dataset, Column, Multicolumn.
13561
+ */
13562
+ EvaluationLevel?: StatisticEvaluationLevel;
13563
+ /**
13564
+ * The list of columns referenced by the statistic.
13565
+ */
13566
+ ColumnsReferenced?: ColumnNameList;
13567
+ /**
13568
+ * The list of datasets referenced by the statistic.
13569
+ */
13570
+ ReferencedDatasets?: ReferenceDatasetsList;
13571
+ /**
13572
+ * A StatisticPropertiesMap, which contains a NameString and DescriptionString
13573
+ */
13574
+ StatisticProperties?: StatisticPropertiesMap;
13575
+ /**
13576
+ * The timestamp when the statistic was recorded.
13577
+ */
13578
+ RecordedOn?: Timestamp;
13579
+ /**
13580
+ * The inclusion annotation for the statistic.
13581
+ */
13582
+ InclusionAnnotation?: TimestampedInclusionAnnotation;
13583
+ }
13584
+ export type StatisticSummaryList = StatisticSummary[];
13226
13585
  export interface StopColumnStatisticsTaskRunRequest {
13227
13586
  /**
13228
13587
  * The name of the database where the table resides.
@@ -13764,7 +14123,27 @@ declare namespace Glue {
13764
14123
  export type TaskType = "EVALUATION"|"LABELING_SET_GENERATION"|"IMPORT_LABELS"|"EXPORT_LABELS"|"FIND_MATCHES"|string;
13765
14124
  export type Timeout = number;
13766
14125
  export type Timestamp = Date;
14126
+ export interface TimestampFilter {
14127
+ /**
14128
+ * The timestamp before which statistics should be included in the results.
14129
+ */
14130
+ RecordedBefore?: Timestamp;
14131
+ /**
14132
+ * The timestamp after which statistics should be included in the results.
14133
+ */
14134
+ RecordedAfter?: Timestamp;
14135
+ }
13767
14136
  export type TimestampValue = Date;
14137
+ export interface TimestampedInclusionAnnotation {
14138
+ /**
14139
+ * The inclusion annotation value.
14140
+ */
14141
+ Value?: InclusionAnnotationValue;
14142
+ /**
14143
+ * The timestamp when the inclusion annotation was last modified.
14144
+ */
14145
+ LastModifiedOn?: Timestamp;
14146
+ }
13768
14147
  export type Token = string;
13769
14148
  export type TokenUrl = string;
13770
14149
  export type TokenUrlParameterKey = string;
@@ -15071,6 +15450,7 @@ declare namespace Glue {
15071
15450
  RowTag?: RowTag;
15072
15451
  }
15073
15452
  export type databaseNameString = string;
15453
+ export type double = number;
15074
15454
  export type tableNameString = string;
15075
15455
  /**
15076
15456
  * 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.
@@ -2428,7 +2428,7 @@ declare namespace WorkSpaces {
2428
2428
  */
2429
2429
  Tags?: TagList;
2430
2430
  /**
2431
- * If specified, the version of Microsoft Office to subscribe to. Valid only for Windows 10 and 11 BYOL images. For more information about subscribing to Office for BYOL images, see Bring Your Own Windows Desktop Licenses. Although this parameter is an array, only one item is allowed at this time. Windows 11 only supports Microsoft_Office_2019.
2431
+ * If specified, the version of Microsoft Office to subscribe to. Valid only for Windows 10 and 11 BYOL images. For more information about subscribing to Office for BYOL images, see Bring Your Own Windows Desktop Licenses. Although this parameter is an array, only one item is allowed at this time. During the image import process, non-GPU WSP WorkSpaces with Windows 11 support only Microsoft_Office_2019. GPU WSP WorkSpaces with Windows 11 do not support Office installation.
2432
2432
  */
2433
2433
  Applications?: ApplicationList;
2434
2434
  }
@@ -3765,7 +3765,7 @@ declare namespace WorkSpaces {
3765
3765
  export type WorkspaceImageErrorDetailCode = "OutdatedPowershellVersion"|"OfficeInstalled"|"PCoIPAgentInstalled"|"WindowsUpdatesEnabled"|"AutoMountDisabled"|"WorkspacesBYOLAccountNotFound"|"WorkspacesBYOLAccountDisabled"|"DHCPDisabled"|"DiskFreeSpace"|"AdditionalDrivesAttached"|"OSNotSupported"|"DomainJoined"|"AzureDomainJoined"|"FirewallEnabled"|"VMWareToolsInstalled"|"DiskSizeExceeded"|"IncompatiblePartitioning"|"PendingReboot"|"AutoLogonEnabled"|"RealTimeUniversalDisabled"|"MultipleBootPartition"|"Requires64BitOS"|"ZeroRearmCount"|"InPlaceUpgrade"|"AntiVirusInstalled"|"UEFINotSupported"|string;
3766
3766
  export type WorkspaceImageId = string;
3767
3767
  export type WorkspaceImageIdList = WorkspaceImageId[];
3768
- export type WorkspaceImageIngestionProcess = "BYOL_REGULAR"|"BYOL_GRAPHICS"|"BYOL_GRAPHICSPRO"|"BYOL_GRAPHICS_G4DN"|"BYOL_REGULAR_WSP"|"BYOL_REGULAR_BYOP"|"BYOL_GRAPHICS_G4DN_BYOP"|string;
3768
+ export type WorkspaceImageIngestionProcess = "BYOL_REGULAR"|"BYOL_GRAPHICS"|"BYOL_GRAPHICSPRO"|"BYOL_GRAPHICS_G4DN"|"BYOL_REGULAR_WSP"|"BYOL_GRAPHICS_G4DN_WSP"|"BYOL_REGULAR_BYOP"|"BYOL_GRAPHICS_G4DN_BYOP"|string;
3769
3769
  export type WorkspaceImageList = WorkspaceImage[];
3770
3770
  export type WorkspaceImageName = string;
3771
3771
  export type WorkspaceImageRequiredTenancy = "DEFAULT"|"DEDICATED"|string;
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1668.0',
86
+ VERSION: '2.1670.0',
87
87
 
88
88
  /**
89
89
  * @api private