aws-sdk 2.1343.0 → 2.1344.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 +11 -1
- package/README.md +1 -1
- package/apis/athena-2017-05-18.min.json +6 -0
- package/apis/connect-2017-08-08.min.json +2 -1
- package/apis/iotwireless-2020-11-22.min.json +516 -130
- package/apis/medialive-2017-10-14.min.json +16 -4
- package/apis/securityhub-2018-10-26.min.json +346 -251
- package/apis/servicecatalog-appregistry-2020-06-24.min.json +12 -9
- package/apis/voice-id-2021-09-27.min.json +379 -93
- package/apis/voice-id-2021-09-27.paginators.json +12 -0
- package/clients/athena.d.ts +40 -32
- package/clients/chimesdkvoice.d.ts +1623 -183
- package/clients/connect.d.ts +8 -4
- package/clients/connectparticipant.d.ts +3 -3
- package/clients/iotwireless.d.ts +456 -2
- package/clients/medialive.d.ts +17 -1
- package/clients/sagemaker.d.ts +17 -17
- package/clients/securityhub.d.ts +199 -10
- package/clients/servicecatalogappregistry.d.ts +36 -23
- package/clients/voiceid.d.ts +400 -59
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +11 -4
- package/dist/aws-sdk.min.js +87 -87
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/connect.d.ts
CHANGED
|
@@ -620,11 +620,11 @@ declare class Connect extends Service {
|
|
|
620
620
|
*/
|
|
621
621
|
getMetricData(callback?: (err: AWSError, data: Connect.Types.GetMetricDataResponse) => void): Request<Connect.Types.GetMetricDataResponse, AWSError>;
|
|
622
622
|
/**
|
|
623
|
-
* Gets metric data from the specified Amazon Connect instance. GetMetricDataV2 offers more features than GetMetricData, the previous version of this API. It has new metrics, offers filtering at a metric level, and offers the ability to filter and group data by channels, queues, routing profiles, agents, and agent hierarchy levels. It can retrieve historical data for last
|
|
623
|
+
* Gets metric data from the specified Amazon Connect instance. GetMetricDataV2 offers more features than GetMetricData, the previous version of this API. It has new metrics, offers filtering at a metric level, and offers the ability to filter and group data by channels, queues, routing profiles, agents, and agent hierarchy levels. It can retrieve historical data for the last 14 days, in 24-hour intervals. For a description of the historical metrics that are supported by GetMetricDataV2 and GetMetricData, see Historical metrics definitions in the Amazon Connect Administrator's Guide. This API is not available in the Amazon Web Services GovCloud (US) Regions.
|
|
624
624
|
*/
|
|
625
625
|
getMetricDataV2(params: Connect.Types.GetMetricDataV2Request, callback?: (err: AWSError, data: Connect.Types.GetMetricDataV2Response) => void): Request<Connect.Types.GetMetricDataV2Response, AWSError>;
|
|
626
626
|
/**
|
|
627
|
-
* Gets metric data from the specified Amazon Connect instance. GetMetricDataV2 offers more features than GetMetricData, the previous version of this API. It has new metrics, offers filtering at a metric level, and offers the ability to filter and group data by channels, queues, routing profiles, agents, and agent hierarchy levels. It can retrieve historical data for last
|
|
627
|
+
* Gets metric data from the specified Amazon Connect instance. GetMetricDataV2 offers more features than GetMetricData, the previous version of this API. It has new metrics, offers filtering at a metric level, and offers the ability to filter and group data by channels, queues, routing profiles, agents, and agent hierarchy levels. It can retrieve historical data for the last 14 days, in 24-hour intervals. For a description of the historical metrics that are supported by GetMetricDataV2 and GetMetricData, see Historical metrics definitions in the Amazon Connect Administrator's Guide. This API is not available in the Amazon Web Services GovCloud (US) Regions.
|
|
628
628
|
*/
|
|
629
629
|
getMetricDataV2(callback?: (err: AWSError, data: Connect.Types.GetMetricDataV2Response) => void): Request<Connect.Types.GetMetricDataV2Response, AWSError>;
|
|
630
630
|
/**
|
|
@@ -6333,17 +6333,21 @@ declare namespace Connect {
|
|
|
6333
6333
|
*/
|
|
6334
6334
|
ClientToken?: ClientToken;
|
|
6335
6335
|
/**
|
|
6336
|
-
* The total duration of the newly started chat session. If not specified, the chat session duration defaults to 25 hour. The
|
|
6336
|
+
* The total duration of the newly started chat session. If not specified, the chat session duration defaults to 25 hour. The minimum configurable time is 60 minutes. The maximum configurable time is 10,080 minutes (7 days).
|
|
6337
6337
|
*/
|
|
6338
6338
|
ChatDurationInMinutes?: ChatDurationInMinutes;
|
|
6339
6339
|
/**
|
|
6340
|
-
* The supported chat message content types. Content types must always contain text/plain. You can then put any other supported type in the list. For example, all the following lists are valid because they contain text/plain: [text/plain, text/markdown, application/json], [text/markdown, text/plain], [text/plain, application/json].
|
|
6340
|
+
* The supported chat message content types. Supported types are text/plain, text/markdown, application/json, application/vnd.amazonaws.connect.message.interactive, and application/vnd.amazonaws.connect.message.interactive.response. Content types must always contain text/plain. You can then put any other supported type in the list. For example, all the following lists are valid because they contain text/plain: [text/plain, text/markdown, application/json], [text/markdown, text/plain], [text/plain, application/json, application/vnd.amazonaws.connect.message.interactive.response]. The type application/vnd.amazonaws.connect.message.interactive is required to use the Show view flow block.
|
|
6341
6341
|
*/
|
|
6342
6342
|
SupportedMessagingContentTypes?: SupportedMessagingContentTypes;
|
|
6343
6343
|
/**
|
|
6344
6344
|
* Enable persistent chats. For more information about enabling persistent chat, and for example use cases and how to configure for them, see Enable persistent chat.
|
|
6345
6345
|
*/
|
|
6346
6346
|
PersistentChat?: PersistentChat;
|
|
6347
|
+
/**
|
|
6348
|
+
* The unique identifier for an Amazon Connect contact. This identifier is related to the chat starting. You cannot provide data for both RelatedContactId and PersistentChat.
|
|
6349
|
+
*/
|
|
6350
|
+
RelatedContactId?: ContactId;
|
|
6347
6351
|
}
|
|
6348
6352
|
export interface StartChatContactResponse {
|
|
6349
6353
|
/**
|
|
@@ -147,7 +147,7 @@ declare namespace ConnectParticipant {
|
|
|
147
147
|
*/
|
|
148
148
|
ParticipantToken: ParticipantToken;
|
|
149
149
|
/**
|
|
150
|
-
* Amazon Connect Participant is used to mark the participant as connected for message streaming.
|
|
150
|
+
* Amazon Connect Participant is used to mark the participant as connected for customer participant in message streaming, as well as for agent or manager participant in non-streaming chats.
|
|
151
151
|
*/
|
|
152
152
|
ConnectParticipant?: Bool;
|
|
153
153
|
}
|
|
@@ -355,11 +355,11 @@ declare namespace ConnectParticipant {
|
|
|
355
355
|
}
|
|
356
356
|
export interface SendMessageRequest {
|
|
357
357
|
/**
|
|
358
|
-
* The type of the content. Supported types are text/plain, text/markdown, and application/
|
|
358
|
+
* The type of the content. Supported types are text/plain, text/markdown, application/json, and application/vnd.amazonaws.connect.message.interactive.response.
|
|
359
359
|
*/
|
|
360
360
|
ContentType: ChatContentType;
|
|
361
361
|
/**
|
|
362
|
-
* The content of the message. For text/plain and text/markdown, the Length Constraints are Minimum of 1, Maximum of 1024. For application/json, the Length Constraints are Minimum of 1, Maximum of 12000.
|
|
362
|
+
* The content of the message. For text/plain and text/markdown, the Length Constraints are Minimum of 1, Maximum of 1024. For application/json, the Length Constraints are Minimum of 1, Maximum of 12000. For application/vnd.amazonaws.connect.message.interactive.response, the Length Constraints are Minimum of 1, Maximum of 12288.
|
|
363
363
|
*/
|
|
364
364
|
Content: ChatContent;
|
|
365
365
|
/**
|