aws-sdk 2.1610.0 → 2.1612.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/README.md +1 -1
- package/apis/bedrock-agent-2023-06-05.min.json +42 -10
- package/apis/dynamodb-2012-08-10.min.json +249 -180
- package/apis/ec2-2016-11-15.min.json +107 -70
- package/apis/personalize-2018-05-22.min.json +153 -44
- package/apis/personalize-runtime-2018-05-22.min.json +9 -1
- package/apis/redshift-serverless-2021-04-21.min.json +7 -1
- package/apis/sesv2-2019-09-27.min.json +7 -16
- package/clients/bedrockagent.d.ts +59 -6
- package/clients/dynamodb.d.ts +80 -11
- package/clients/ec2.d.ts +54 -7
- package/clients/personalize.d.ts +160 -1
- package/clients/personalizeruntime.d.ts +6 -0
- package/clients/redshiftserverless.d.ts +17 -7
- package/clients/securityhub.d.ts +4 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +8 -8
- package/dist/aws-sdk.js +521 -298
- package/dist/aws-sdk.min.js +79 -78
- package/lib/core.js +1 -1
- package/lib/dynamodb/document_client.d.ts +76 -7
- package/package.json +1 -1
@@ -209,6 +209,10 @@ declare namespace PersonalizeRuntime {
|
|
209
209
|
* Metadata about the item from your Items dataset.
|
210
210
|
*/
|
211
211
|
metadata?: Metadata;
|
212
|
+
/**
|
213
|
+
* If you use User-Personalization-v2, a list of reasons for why the item was included in recommendations. Possible reasons include the following: Promoted item - Indicates the item was included as part of a promotion that you applied in your recommendation request. Exploration - Indicates the item was included with exploration. With exploration, recommendations include items with less interactions data or relevance for the user. For more information about exploration, see Exploration. Popular item - Indicates the item was included as a placeholder popular item. If you use a filter, depending on how many recommendations the filter removes, Amazon Personalize might add placeholder items to meet the numResults for your recommendation request. These items are popular items, based on interactions data, that satisfy your filter criteria. They don't have a relevance score for the user.
|
214
|
+
*/
|
215
|
+
reason?: ReasonList;
|
212
216
|
}
|
213
217
|
export interface Promotion {
|
214
218
|
/**
|
@@ -229,6 +233,8 @@ declare namespace PersonalizeRuntime {
|
|
229
233
|
filterValues?: FilterValues;
|
230
234
|
}
|
231
235
|
export type PromotionList = Promotion[];
|
236
|
+
export type Reason = string;
|
237
|
+
export type ReasonList = Reason[];
|
232
238
|
export type RecommendationID = string;
|
233
239
|
export type Score = number;
|
234
240
|
export type UserID = string;
|
@@ -477,7 +477,7 @@ declare namespace RedshiftServerless {
|
|
477
477
|
export type Boolean = boolean;
|
478
478
|
export interface ConfigParameter {
|
479
479
|
/**
|
480
|
-
* The key of the parameter. The options are auto_mv, datestyle, enable_case_sensitive_identifier, enable_user_activity_logging, query_group, search_path, require_ssl, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see Query monitoring metrics for Amazon Redshift Serverless.
|
480
|
+
* The key of the parameter. The options are auto_mv, datestyle, enable_case_sensitive_identifier, enable_user_activity_logging, query_group, search_path, require_ssl, use_fips_ssl, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see Query monitoring metrics for Amazon Redshift Serverless.
|
481
481
|
*/
|
482
482
|
parameterKey?: ParameterKey;
|
483
483
|
/**
|
@@ -767,7 +767,7 @@ declare namespace RedshiftServerless {
|
|
767
767
|
*/
|
768
768
|
baseCapacity?: Integer;
|
769
769
|
/**
|
770
|
-
* An array of parameters to set for advanced control over a database. The options are auto_mv, datestyle, enable_case_sensitive_identifier, enable_user_activity_logging, query_group, search_path, require_ssl, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see Query monitoring metrics for Amazon Redshift Serverless.
|
770
|
+
* An array of parameters to set for advanced control over a database. The options are auto_mv, datestyle, enable_case_sensitive_identifier, enable_user_activity_logging, query_group, search_path, require_ssl, use_fips_ssl, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see Query monitoring metrics for Amazon Redshift Serverless.
|
771
771
|
*/
|
772
772
|
configParameters?: ConfigParameterList;
|
773
773
|
/**
|
@@ -1313,7 +1313,7 @@ declare namespace RedshiftServerless {
|
|
1313
1313
|
*/
|
1314
1314
|
nextToken?: PaginationToken;
|
1315
1315
|
/**
|
1316
|
-
* All of the returned scheduled action objects.
|
1316
|
+
* All of the returned scheduled action association objects.
|
1317
1317
|
*/
|
1318
1318
|
scheduledActions?: ScheduledActionsList;
|
1319
1319
|
}
|
@@ -1784,6 +1784,16 @@ declare namespace RedshiftServerless {
|
|
1784
1784
|
*/
|
1785
1785
|
cron?: String;
|
1786
1786
|
}
|
1787
|
+
export interface ScheduledActionAssociation {
|
1788
|
+
/**
|
1789
|
+
* Name of associated Amazon Redshift Serverless namespace.
|
1790
|
+
*/
|
1791
|
+
namespaceName?: NamespaceName;
|
1792
|
+
/**
|
1793
|
+
* Name of associated scheduled action.
|
1794
|
+
*/
|
1795
|
+
scheduledActionName?: ScheduledActionName;
|
1796
|
+
}
|
1787
1797
|
export type ScheduledActionName = string;
|
1788
1798
|
export interface ScheduledActionResponse {
|
1789
1799
|
/**
|
@@ -1828,7 +1838,7 @@ declare namespace RedshiftServerless {
|
|
1828
1838
|
state?: State;
|
1829
1839
|
targetAction?: TargetAction;
|
1830
1840
|
}
|
1831
|
-
export type ScheduledActionsList =
|
1841
|
+
export type ScheduledActionsList = ScheduledActionAssociation[];
|
1832
1842
|
export type SecurityGroupId = string;
|
1833
1843
|
export type SecurityGroupIdList = SecurityGroupId[];
|
1834
1844
|
export interface Snapshot {
|
@@ -2252,7 +2262,7 @@ declare namespace RedshiftServerless {
|
|
2252
2262
|
*/
|
2253
2263
|
baseCapacity?: Integer;
|
2254
2264
|
/**
|
2255
|
-
* An array of parameters to set for advanced control over a database. The options are auto_mv, datestyle, enable_case_sensitive_identifier, enable_user_activity_logging, query_group, search_path, require_ssl, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see Query monitoring metrics for Amazon Redshift Serverless.
|
2265
|
+
* An array of parameters to set for advanced control over a database. The options are auto_mv, datestyle, enable_case_sensitive_identifier, enable_user_activity_logging, query_group, search_path, require_ssl, use_fips_ssl, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see Query monitoring metrics for Amazon Redshift Serverless.
|
2256
2266
|
*/
|
2257
2267
|
configParameters?: ConfigParameterList;
|
2258
2268
|
/**
|
@@ -2359,7 +2369,7 @@ declare namespace RedshiftServerless {
|
|
2359
2369
|
*/
|
2360
2370
|
baseCapacity?: Integer;
|
2361
2371
|
/**
|
2362
|
-
* An array of parameters to set for advanced control over a database. The options are auto_mv, datestyle, enable_case_sensitive_identifier, enable_user_activity_logging, query_group, search_path, require_ssl, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see Query monitoring metrics for Amazon Redshift Serverless.
|
2372
|
+
* An array of parameters to set for advanced control over a database. The options are auto_mv, datestyle, enable_case_sensitive_identifier, enable_user_activity_logging, query_group, search_path, require_ssl, use_fips_ssl, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see Query monitoring metrics for Amazon Redshift Serverless.
|
2363
2373
|
*/
|
2364
2374
|
configParameters?: ConfigParameterList;
|
2365
2375
|
/**
|
@@ -2407,7 +2417,7 @@ declare namespace RedshiftServerless {
|
|
2407
2417
|
*/
|
2408
2418
|
port?: Integer;
|
2409
2419
|
/**
|
2410
|
-
* A value that specifies whether the workgroup can be accessible from a public network
|
2420
|
+
* A value that specifies whether the workgroup can be accessible from a public network.
|
2411
2421
|
*/
|
2412
2422
|
publiclyAccessible?: Boolean;
|
2413
2423
|
/**
|
package/clients/securityhub.d.ts
CHANGED
@@ -596,11 +596,11 @@ declare class SecurityHub extends Service {
|
|
596
596
|
*/
|
597
597
|
updateFindingAggregator(callback?: (err: AWSError, data: SecurityHub.Types.UpdateFindingAggregatorResponse) => void): Request<SecurityHub.Types.UpdateFindingAggregatorResponse, AWSError>;
|
598
598
|
/**
|
599
|
-
* UpdateFindings is deprecated. Instead of UpdateFindings, use BatchUpdateFindings. Updates the Note and RecordState of the Security Hub-aggregated findings that the filter attributes specify. Any member account that can view the finding also sees the update to the finding.
|
599
|
+
* UpdateFindings is a deprecated operation. Instead of UpdateFindings, use the BatchUpdateFindings operation. Updates the Note and RecordState of the Security Hub-aggregated findings that the filter attributes specify. Any member account that can view the finding also sees the update to the finding. Finding updates made with UpdateFindings might not be persisted if the same finding is later updated by the finding provider through the BatchImportFindings operation.
|
600
600
|
*/
|
601
601
|
updateFindings(params: SecurityHub.Types.UpdateFindingsRequest, callback?: (err: AWSError, data: SecurityHub.Types.UpdateFindingsResponse) => void): Request<SecurityHub.Types.UpdateFindingsResponse, AWSError>;
|
602
602
|
/**
|
603
|
-
* UpdateFindings is deprecated. Instead of UpdateFindings, use BatchUpdateFindings. Updates the Note and RecordState of the Security Hub-aggregated findings that the filter attributes specify. Any member account that can view the finding also sees the update to the finding.
|
603
|
+
* UpdateFindings is a deprecated operation. Instead of UpdateFindings, use the BatchUpdateFindings operation. Updates the Note and RecordState of the Security Hub-aggregated findings that the filter attributes specify. Any member account that can view the finding also sees the update to the finding. Finding updates made with UpdateFindings might not be persisted if the same finding is later updated by the finding provider through the BatchImportFindings operation.
|
604
604
|
*/
|
605
605
|
updateFindings(callback?: (err: AWSError, data: SecurityHub.Types.UpdateFindingsResponse) => void): Request<SecurityHub.Types.UpdateFindingsResponse, AWSError>;
|
606
606
|
/**
|
@@ -15747,7 +15747,7 @@ declare namespace SecurityHub {
|
|
15747
15747
|
export type StandardsSubscriptions = StandardsSubscription[];
|
15748
15748
|
export interface StartConfigurationPolicyAssociationRequest {
|
15749
15749
|
/**
|
15750
|
-
* The Amazon Resource Name (ARN)
|
15750
|
+
* The Amazon Resource Name (ARN) of a configuration policy, the universally unique identifier (UUID) of a configuration policy, or a value of SELF_MANAGED_SECURITY_HUB for a self-managed configuration.
|
15751
15751
|
*/
|
15752
15752
|
ConfigurationPolicyIdentifier: NonEmptyString;
|
15753
15753
|
/**
|
@@ -15791,7 +15791,7 @@ declare namespace SecurityHub {
|
|
15791
15791
|
*/
|
15792
15792
|
Target?: Target;
|
15793
15793
|
/**
|
15794
|
-
* The Amazon Resource Name (ARN)
|
15794
|
+
* The Amazon Resource Name (ARN) of a configuration policy, the universally unique identifier (UUID) of a configuration policy, or a value of SELF_MANAGED_SECURITY_HUB for a self-managed configuration.
|
15795
15795
|
*/
|
15796
15796
|
ConfigurationPolicyIdentifier: NonEmptyString;
|
15797
15797
|
}
|