aws-sdk 2.1508.0 → 2.1510.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/clients/glue.d.ts CHANGED
@@ -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?: DescriptionString;
5203
+ Description?: DataQualityRuleResultDescription;
5147
5204
  /**
5148
5205
  * An evaluation message.
5149
5206
  */
5150
- EvaluationMessage?: DescriptionString;
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.
@@ -44,11 +44,11 @@ declare class QConnect extends Service {
44
44
  */
45
45
  createKnowledgeBase(callback?: (err: AWSError, data: QConnect.Types.CreateKnowledgeBaseResponse) => void): Request<QConnect.Types.CreateKnowledgeBaseResponse, AWSError>;
46
46
  /**
47
- * Creates a Amazon Q quick response.
47
+ * Creates an Amazon Q quick response.
48
48
  */
49
49
  createQuickResponse(params: QConnect.Types.CreateQuickResponseRequest, callback?: (err: AWSError, data: QConnect.Types.CreateQuickResponseResponse) => void): Request<QConnect.Types.CreateQuickResponseResponse, AWSError>;
50
50
  /**
51
- * Creates a Amazon Q quick response.
51
+ * Creates an Amazon Q quick response.
52
52
  */
53
53
  createQuickResponse(callback?: (err: AWSError, data: QConnect.Types.CreateQuickResponseResponse) => void): Request<QConnect.Types.CreateQuickResponseResponse, AWSError>;
54
54
  /**
@@ -243,6 +243,14 @@ declare class QConnect extends Service {
243
243
  * Removes the specified recommendations from the specified assistant's queue of newly available recommendations. You can use this API in conjunction with GetRecommendations and a waitTimeSeconds input for long-polling behavior and avoiding duplicate recommendations.
244
244
  */
245
245
  notifyRecommendationsReceived(callback?: (err: AWSError, data: QConnect.Types.NotifyRecommendationsReceivedResponse) => void): Request<QConnect.Types.NotifyRecommendationsReceivedResponse, AWSError>;
246
+ /**
247
+ * Provides feedback against the specified assistant for the specified target. This API only supports generative targets.
248
+ */
249
+ putFeedback(params: QConnect.Types.PutFeedbackRequest, callback?: (err: AWSError, data: QConnect.Types.PutFeedbackResponse) => void): Request<QConnect.Types.PutFeedbackResponse, AWSError>;
250
+ /**
251
+ * Provides feedback against the specified assistant for the specified target. This API only supports generative targets.
252
+ */
253
+ putFeedback(callback?: (err: AWSError, data: QConnect.Types.PutFeedbackResponse) => void): Request<QConnect.Types.PutFeedbackResponse, AWSError>;
246
254
  /**
247
255
  * Performs a manual search against the specified assistant. To retrieve recommendations for an assistant, use GetRecommendations.
248
256
  */
@@ -268,11 +276,11 @@ declare class QConnect extends Service {
268
276
  */
269
277
  searchContent(callback?: (err: AWSError, data: QConnect.Types.SearchContentResponse) => void): Request<QConnect.Types.SearchContentResponse, AWSError>;
270
278
  /**
271
- * Searches existing Amazon Q quick responses in a Amazon Q knowledge base.
279
+ * Searches existing Amazon Q quick responses in an Amazon Q knowledge base.
272
280
  */
273
281
  searchQuickResponses(params: QConnect.Types.SearchQuickResponsesRequest, callback?: (err: AWSError, data: QConnect.Types.SearchQuickResponsesResponse) => void): Request<QConnect.Types.SearchQuickResponsesResponse, AWSError>;
274
282
  /**
275
- * Searches existing Amazon Q quick responses in a Amazon Q knowledge base.
283
+ * Searches existing Amazon Q quick responses in an Amazon Q knowledge base.
276
284
  */
277
285
  searchQuickResponses(callback?: (err: AWSError, data: QConnect.Types.SearchQuickResponsesResponse) => void): Request<QConnect.Types.SearchQuickResponsesResponse, AWSError>;
278
286
  /**
@@ -614,6 +622,12 @@ declare namespace QConnect {
614
622
  */
615
623
  textData: TextData;
616
624
  }
625
+ export interface ContentFeedbackData {
626
+ /**
627
+ * Information about the feedback for a generative target type.
628
+ */
629
+ generativeContentFeedbackData?: GenerativeContentFeedbackData;
630
+ }
617
631
  export type ContentMetadata = {[key: string]: NonEmptyString};
618
632
  export interface ContentReference {
619
633
  /**
@@ -1056,6 +1070,12 @@ declare namespace QConnect {
1056
1070
  export type FilterField = "NAME"|string;
1057
1071
  export type FilterList = Filter[];
1058
1072
  export type FilterOperator = "EQUALS"|string;
1073
+ export interface GenerativeContentFeedbackData {
1074
+ /**
1075
+ * The relevance of the feedback.
1076
+ */
1077
+ relevance: Relevance;
1078
+ }
1059
1079
  export interface GenerativeDataDetails {
1060
1080
  /**
1061
1081
  * The LLM response.
@@ -1645,6 +1665,46 @@ declare namespace QConnect {
1645
1665
  export type ObjectFieldsList = NonEmptyString[];
1646
1666
  export type Order = "ASC"|"DESC"|string;
1647
1667
  export type Priority = "HIGH"|"MEDIUM"|"LOW"|string;
1668
+ export interface PutFeedbackRequest {
1669
+ /**
1670
+ * The identifier of the Amazon Q assistant.
1671
+ */
1672
+ assistantId: UuidOrArn;
1673
+ /**
1674
+ * Information about the feedback provided.
1675
+ */
1676
+ contentFeedback: ContentFeedbackData;
1677
+ /**
1678
+ * The identifier of the feedback target.
1679
+ */
1680
+ targetId: Uuid;
1681
+ /**
1682
+ * The type of the feedback target.
1683
+ */
1684
+ targetType: TargetType;
1685
+ }
1686
+ export interface PutFeedbackResponse {
1687
+ /**
1688
+ * The Amazon Resource Name (ARN) of the Amazon Q assistant.
1689
+ */
1690
+ assistantArn: UuidOrArn;
1691
+ /**
1692
+ * The identifier of the Amazon Q assistant.
1693
+ */
1694
+ assistantId: Uuid;
1695
+ /**
1696
+ * Information about the feedback provided.
1697
+ */
1698
+ contentFeedback: ContentFeedbackData;
1699
+ /**
1700
+ * The identifier of the feedback target.
1701
+ */
1702
+ targetId: Uuid;
1703
+ /**
1704
+ * The type of the feedback target.
1705
+ */
1706
+ targetType: TargetType;
1707
+ }
1648
1708
  export interface QueryAssistantRequest {
1649
1709
  /**
1650
1710
  * The identifier of the Amazon Q assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
@@ -2093,6 +2153,7 @@ declare namespace QConnect {
2093
2153
  export type RecommendationTriggerList = RecommendationTrigger[];
2094
2154
  export type RecommendationTriggerType = "QUERY"|"GENERATIVE"|string;
2095
2155
  export type RecommendationType = "KNOWLEDGE_CONTENT"|"GENERATIVE_RESPONSE"|"GENERATIVE_ANSWER"|string;
2156
+ export type Relevance = "HELPFUL"|"NOT_HELPFUL"|string;
2096
2157
  export type RelevanceLevel = "HIGH"|"MEDIUM"|"LOW"|string;
2097
2158
  export type RelevanceScore = number;
2098
2159
  export interface RemoveKnowledgeBaseTemplateUriRequest {
@@ -2390,6 +2451,7 @@ declare namespace QConnect {
2390
2451
  }
2391
2452
  export type TagValue = string;
2392
2453
  export type Tags = {[key: string]: TagValue};
2454
+ export type TargetType = "RECOMMENDATION"|"RESULT"|string;
2393
2455
  export interface TextData {
2394
2456
  excerpt?: DocumentText;
2395
2457
  title?: DocumentText;
package/clients/rbin.d.ts CHANGED
@@ -153,6 +153,10 @@ declare namespace Rbin {
153
153
  * The lock state for the retention rule. locked - The retention rule is locked and can't be modified or deleted. pending_unlock - The retention rule has been unlocked but it is still within the unlock delay period. The retention rule can be modified or deleted only after the unlock delay period has expired. unlocked - The retention rule is unlocked and it can be modified or deleted by any user with the required permissions. null - The retention rule has never been locked. Once a retention rule has been locked, it can transition between the locked and unlocked states only; it can never transition back to null.
154
154
  */
155
155
  LockState?: LockState;
156
+ /**
157
+ * The Amazon Resource Name (ARN) of the retention rule.
158
+ */
159
+ RuleArn?: RuleArn;
156
160
  }
157
161
  export interface DeleteRuleRequest {
158
162
  /**
@@ -206,6 +210,10 @@ declare namespace Rbin {
206
210
  * The date and time at which the unlock delay is set to expire. Only returned for retention rules that have been unlocked and that are still within the unlock delay period.
207
211
  */
208
212
  LockEndTime?: TimeStamp;
213
+ /**
214
+ * The Amazon Resource Name (ARN) of the retention rule.
215
+ */
216
+ RuleArn?: RuleArn;
209
217
  }
210
218
  export interface ListRulesRequest {
211
219
  /**
@@ -297,6 +305,10 @@ declare namespace Rbin {
297
305
  * The lock state for the retention rule. locked - The retention rule is locked and can't be modified or deleted. pending_unlock - The retention rule has been unlocked but it is still within the unlock delay period. The retention rule can be modified or deleted only after the unlock delay period has expired. unlocked - The retention rule is unlocked and it can be modified or deleted by any user with the required permissions. null - The retention rule has never been locked. Once a retention rule has been locked, it can transition between the locked and unlocked states only; it can never transition back to null.
298
306
  */
299
307
  LockState?: LockState;
308
+ /**
309
+ * The Amazon Resource Name (ARN) of the retention rule.
310
+ */
311
+ RuleArn?: RuleArn;
300
312
  }
301
313
  export type LockState = "locked"|"pending_unlock"|"unlocked"|string;
302
314
  export type MaxResults = number;
@@ -347,6 +359,10 @@ declare namespace Rbin {
347
359
  * The lock state for the retention rule. locked - The retention rule is locked and can't be modified or deleted. pending_unlock - The retention rule has been unlocked but it is still within the unlock delay period. The retention rule can be modified or deleted only after the unlock delay period has expired. unlocked - The retention rule is unlocked and it can be modified or deleted by any user with the required permissions. null - The retention rule has never been locked. Once a retention rule has been locked, it can transition between the locked and unlocked states only; it can never transition back to null.
348
360
  */
349
361
  LockState?: LockState;
362
+ /**
363
+ * The Amazon Resource Name (ARN) of the retention rule.
364
+ */
365
+ RuleArn?: RuleArn;
350
366
  }
351
367
  export type RuleSummaryList = RuleSummary[];
352
368
  export interface Tag {
@@ -428,6 +444,10 @@ declare namespace Rbin {
428
444
  * The date and time at which the unlock delay is set to expire. Only returned for retention rules that have been unlocked and that are still within the unlock delay period.
429
445
  */
430
446
  LockEndTime?: TimeStamp;
447
+ /**
448
+ * The Amazon Resource Name (ARN) of the retention rule.
449
+ */
450
+ RuleArn?: RuleArn;
431
451
  }
432
452
  export interface UntagResourceRequest {
433
453
  /**
@@ -493,6 +513,10 @@ declare namespace Rbin {
493
513
  * The date and time at which the unlock delay is set to expire. Only returned for retention rules that have been unlocked and that are still within the unlock delay period.
494
514
  */
495
515
  LockEndTime?: TimeStamp;
516
+ /**
517
+ * The Amazon Resource Name (ARN) of the retention rule.
518
+ */
519
+ RuleArn?: RuleArn;
496
520
  }
497
521
  /**
498
522
  * 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.