aws-sdk 2.1421.0 → 2.1422.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 +15 -1
- package/README.md +1 -1
- package/apis/billingconductor-2021-07-30.min.json +96 -68
- package/apis/customer-profiles-2020-08-15.min.json +253 -57
- package/apis/datasync-2018-11-09.min.json +198 -102
- package/apis/ec2-2016-11-15.min.json +300 -278
- package/apis/emr-serverless-2021-07-13.min.json +25 -3
- package/apis/rds-2014-10-31.min.json +2 -1
- package/apis/sagemaker-2017-07-24.min.json +4 -0
- package/apis/securityhub-2018-10-26.min.json +145 -108
- package/apis/sts-2011-06-15.min.json +21 -11
- package/apis/transfer-2018-11-05.min.json +117 -73
- package/apis/wisdom-2020-10-19.min.json +77 -59
- package/clients/billingconductor.d.ts +102 -69
- package/clients/customerprofiles.d.ts +204 -4
- package/clients/datasync.d.ts +171 -27
- package/clients/dynamodb.d.ts +4 -4
- package/clients/ec2.d.ts +26 -0
- package/clients/emrserverless.d.ts +33 -2
- package/clients/lambda.d.ts +1 -1
- package/clients/rds.d.ts +14 -10
- package/clients/sagemaker.d.ts +4 -4
- package/clients/securityhub.d.ts +69 -10
- package/clients/sts.d.ts +17 -1
- package/clients/transfer.d.ts +85 -19
- package/clients/wisdom.d.ts +24 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +326 -293
- package/dist/aws-sdk.min.js +67 -67
- package/lib/core.js +1 -1
- package/lib/dynamodb/document_client.d.ts +2 -2
- package/package.json +1 -1
package/clients/wisdom.d.ts
CHANGED
@@ -358,6 +358,10 @@ declare namespace Wisdom {
|
|
358
358
|
* The description.
|
359
359
|
*/
|
360
360
|
description?: Description;
|
361
|
+
/**
|
362
|
+
* The configuration information for the Wisdom assistant integration.
|
363
|
+
*/
|
364
|
+
integrationConfiguration?: AssistantIntegrationConfiguration;
|
361
365
|
/**
|
362
366
|
* The name.
|
363
367
|
*/
|
@@ -379,6 +383,12 @@ declare namespace Wisdom {
|
|
379
383
|
*/
|
380
384
|
type: AssistantType;
|
381
385
|
}
|
386
|
+
export interface AssistantIntegrationConfiguration {
|
387
|
+
/**
|
388
|
+
* The Amazon Resource Name (ARN) of the integrated Amazon SNS topic used for streaming chat messages.
|
389
|
+
*/
|
390
|
+
topicIntegrationArn?: GenericArn;
|
391
|
+
}
|
382
392
|
export type AssistantList = AssistantSummary[];
|
383
393
|
export type AssistantStatus = "CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"DELETED"|string;
|
384
394
|
export interface AssistantSummary {
|
@@ -394,6 +404,10 @@ declare namespace Wisdom {
|
|
394
404
|
* The description of the assistant.
|
395
405
|
*/
|
396
406
|
description?: Description;
|
407
|
+
/**
|
408
|
+
* The configuration information for the Wisdom assistant integration.
|
409
|
+
*/
|
410
|
+
integrationConfiguration?: AssistantIntegrationConfiguration;
|
397
411
|
/**
|
398
412
|
* The name of the assistant.
|
399
413
|
*/
|
@@ -1364,6 +1378,10 @@ declare namespace Wisdom {
|
|
1364
1378
|
* The description of the session.
|
1365
1379
|
*/
|
1366
1380
|
description?: Description;
|
1381
|
+
/**
|
1382
|
+
* The configuration information for the session integration.
|
1383
|
+
*/
|
1384
|
+
integrationConfiguration?: SessionIntegrationConfiguration;
|
1367
1385
|
/**
|
1368
1386
|
* The name of the session.
|
1369
1387
|
*/
|
@@ -1381,6 +1399,12 @@ declare namespace Wisdom {
|
|
1381
1399
|
*/
|
1382
1400
|
tags?: Tags;
|
1383
1401
|
}
|
1402
|
+
export interface SessionIntegrationConfiguration {
|
1403
|
+
/**
|
1404
|
+
* The Amazon Resource Name (ARN) of the integrated Amazon SNS topic used for streaming chat messages.
|
1405
|
+
*/
|
1406
|
+
topicIntegrationArn?: GenericArn;
|
1407
|
+
}
|
1384
1408
|
export type SessionSummaries = SessionSummary[];
|
1385
1409
|
export interface SessionSummary {
|
1386
1410
|
/**
|