@aws-sdk/client-connect 3.272.0 → 3.275.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/dist-cjs/models/models_0.js +2 -0
- package/dist-es/models/models_0.js +2 -0
- package/dist-types/Connect.d.ts +2 -3
- package/dist-types/commands/DescribeUserCommand.d.ts +2 -3
- package/dist-types/models/models_0.d.ts +89 -81
- package/dist-types/models/models_1.d.ts +77 -76
- package/dist-types/ts3.4/models/models_0.d.ts +4 -2
- package/package.json +1 -1
|
@@ -215,8 +215,10 @@ var VocabularyLanguageCode;
|
|
|
215
215
|
var InstanceStorageResourceType;
|
|
216
216
|
(function (InstanceStorageResourceType) {
|
|
217
217
|
InstanceStorageResourceType["AGENT_EVENTS"] = "AGENT_EVENTS";
|
|
218
|
+
InstanceStorageResourceType["ATTACHMENTS"] = "ATTACHMENTS";
|
|
218
219
|
InstanceStorageResourceType["CALL_RECORDINGS"] = "CALL_RECORDINGS";
|
|
219
220
|
InstanceStorageResourceType["CHAT_TRANSCRIPTS"] = "CHAT_TRANSCRIPTS";
|
|
221
|
+
InstanceStorageResourceType["CONTACT_EVALUATIONS"] = "CONTACT_EVALUATIONS";
|
|
220
222
|
InstanceStorageResourceType["CONTACT_TRACE_RECORDS"] = "CONTACT_TRACE_RECORDS";
|
|
221
223
|
InstanceStorageResourceType["MEDIA_STREAMS"] = "MEDIA_STREAMS";
|
|
222
224
|
InstanceStorageResourceType["REAL_TIME_CONTACT_ANALYSIS_SEGMENTS"] = "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS";
|
|
@@ -198,8 +198,10 @@ export var VocabularyLanguageCode;
|
|
|
198
198
|
export var InstanceStorageResourceType;
|
|
199
199
|
(function (InstanceStorageResourceType) {
|
|
200
200
|
InstanceStorageResourceType["AGENT_EVENTS"] = "AGENT_EVENTS";
|
|
201
|
+
InstanceStorageResourceType["ATTACHMENTS"] = "ATTACHMENTS";
|
|
201
202
|
InstanceStorageResourceType["CALL_RECORDINGS"] = "CALL_RECORDINGS";
|
|
202
203
|
InstanceStorageResourceType["CHAT_TRANSCRIPTS"] = "CHAT_TRANSCRIPTS";
|
|
204
|
+
InstanceStorageResourceType["CONTACT_EVALUATIONS"] = "CONTACT_EVALUATIONS";
|
|
203
205
|
InstanceStorageResourceType["CONTACT_TRACE_RECORDS"] = "CONTACT_TRACE_RECORDS";
|
|
204
206
|
InstanceStorageResourceType["MEDIA_STREAMS"] = "MEDIA_STREAMS";
|
|
205
207
|
InstanceStorageResourceType["REAL_TIME_CONTACT_ANALYSIS_SEGMENTS"] = "REAL_TIME_CONTACT_ANALYSIS_SEGMENTS";
|
package/dist-types/Connect.d.ts
CHANGED
|
@@ -643,9 +643,8 @@ export declare class Connect extends ConnectClient {
|
|
|
643
643
|
describeTrafficDistributionGroup(args: DescribeTrafficDistributionGroupCommandInput, cb: (err: any, data?: DescribeTrafficDistributionGroupCommandOutput) => void): void;
|
|
644
644
|
describeTrafficDistributionGroup(args: DescribeTrafficDistributionGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTrafficDistributionGroupCommandOutput) => void): void;
|
|
645
645
|
/**
|
|
646
|
-
* <p>Describes the specified user account. You can find the instance ID in the console (it’s the
|
|
647
|
-
*
|
|
648
|
-
* note the IDs provided in the output.</p>
|
|
646
|
+
* <p>Describes the specified user account. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID in the Amazon Connect console</a> (it’s the final part of the ARN). The console does not display the
|
|
647
|
+
* user IDs. Instead, list the users and note the IDs provided in the output.</p>
|
|
649
648
|
*/
|
|
650
649
|
describeUser(args: DescribeUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserCommandOutput>;
|
|
651
650
|
describeUser(args: DescribeUserCommandInput, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
|
|
@@ -8,9 +8,8 @@ export interface DescribeUserCommandInput extends DescribeUserRequest {
|
|
|
8
8
|
export interface DescribeUserCommandOutput extends DescribeUserResponse, __MetadataBearer {
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* <p>Describes the specified user account. You can find the instance ID in the console (it’s the
|
|
12
|
-
*
|
|
13
|
-
* note the IDs provided in the output.</p>
|
|
11
|
+
* <p>Describes the specified user account. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID in the Amazon Connect console</a> (it’s the final part of the ARN). The console does not display the
|
|
12
|
+
* user IDs. Instead, list the users and note the IDs provided in the output.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
15
|
* ```javascript
|