@aws-sdk/client-connect 3.658.1 → 3.662.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 +8 -0
- package/dist-cjs/index.js +58 -0
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/StartOutboundChatContactCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +38 -0
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/AssociateAnalyticsDataSetCommand.d.ts +1 -2
- package/dist-types/commands/BatchAssociateAnalyticsDataSetCommand.d.ts +1 -2
- package/dist-types/commands/BatchDisassociateAnalyticsDataSetCommand.d.ts +1 -2
- package/dist-types/commands/BatchPutContactCommand.d.ts +2 -2
- package/dist-types/commands/DescribeContactCommand.d.ts +3 -4
- package/dist-types/commands/DisassociateAnalyticsDataSetCommand.d.ts +1 -2
- package/dist-types/commands/ListAnalyticsDataAssociationsCommand.d.ts +1 -2
- package/dist-types/commands/StartOutboundChatContactCommand.d.ts +147 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2 -1
- package/dist-types/models/models_1.d.ts +14 -13
- package/dist-types/models/models_2.d.ts +149 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/StartOutboundChatContactCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +18 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +35 -35
package/README.md
CHANGED
|
@@ -1785,6 +1785,14 @@ StartContactStreaming
|
|
|
1785
1785
|
|
|
1786
1786
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/StartContactStreamingCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/StartContactStreamingCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/StartContactStreamingCommandOutput/)
|
|
1787
1787
|
|
|
1788
|
+
</details>
|
|
1789
|
+
<details>
|
|
1790
|
+
<summary>
|
|
1791
|
+
StartOutboundChatContact
|
|
1792
|
+
</summary>
|
|
1793
|
+
|
|
1794
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/StartOutboundChatContactCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/StartOutboundChatContactCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/StartOutboundChatContactCommandOutput/)
|
|
1795
|
+
|
|
1788
1796
|
</details>
|
|
1789
1797
|
<details>
|
|
1790
1798
|
<summary>
|
package/dist-cjs/index.js
CHANGED
|
@@ -361,6 +361,7 @@ __export(src_exports, {
|
|
|
361
361
|
StartContactEvaluationCommand: () => StartContactEvaluationCommand,
|
|
362
362
|
StartContactRecordingCommand: () => StartContactRecordingCommand,
|
|
363
363
|
StartContactStreamingCommand: () => StartContactStreamingCommand,
|
|
364
|
+
StartOutboundChatContactCommand: () => StartOutboundChatContactCommand,
|
|
364
365
|
StartOutboundVoiceContactCommand: () => StartOutboundVoiceContactCommand,
|
|
365
366
|
StartOutboundVoiceContactRequestFilterSensitiveLog: () => StartOutboundVoiceContactRequestFilterSensitiveLog,
|
|
366
367
|
StartTaskContactCommand: () => StartTaskContactCommand,
|
|
@@ -1018,6 +1019,7 @@ var ListFlowAssociationResourceType = {
|
|
|
1018
1019
|
VOICE_PHONE_NUMBER: "VOICE_PHONE_NUMBER"
|
|
1019
1020
|
};
|
|
1020
1021
|
var EndpointType = {
|
|
1022
|
+
CONNECT_PHONENUMBER_ARN: "CONNECT_PHONENUMBER_ARN",
|
|
1021
1023
|
CONTACT_FLOW: "CONTACT_FLOW",
|
|
1022
1024
|
TELEPHONE_NUMBER: "TELEPHONE_NUMBER",
|
|
1023
1025
|
VOIP: "VOIP"
|
|
@@ -5284,6 +5286,32 @@ var se_StartContactStreamingCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
5284
5286
|
b.m("POST").h(headers).b(body);
|
|
5285
5287
|
return b.build();
|
|
5286
5288
|
}, "se_StartContactStreamingCommand");
|
|
5289
|
+
var se_StartOutboundChatContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5290
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5291
|
+
const headers = {
|
|
5292
|
+
"content-type": "application/json"
|
|
5293
|
+
};
|
|
5294
|
+
b.bp("/contact/outbound-chat");
|
|
5295
|
+
let body;
|
|
5296
|
+
body = JSON.stringify(
|
|
5297
|
+
(0, import_smithy_client.take)(input, {
|
|
5298
|
+
Attributes: (_) => (0, import_smithy_client._json)(_),
|
|
5299
|
+
ChatDurationInMinutes: [],
|
|
5300
|
+
ClientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
5301
|
+
ContactFlowId: [],
|
|
5302
|
+
DestinationEndpoint: (_) => (0, import_smithy_client._json)(_),
|
|
5303
|
+
InitialSystemMessage: (_) => (0, import_smithy_client._json)(_),
|
|
5304
|
+
InstanceId: [],
|
|
5305
|
+
ParticipantDetails: (_) => (0, import_smithy_client._json)(_),
|
|
5306
|
+
RelatedContactId: [],
|
|
5307
|
+
SegmentAttributes: (_) => (0, import_smithy_client._json)(_),
|
|
5308
|
+
SourceEndpoint: (_) => (0, import_smithy_client._json)(_),
|
|
5309
|
+
SupportedMessagingContentTypes: (_) => (0, import_smithy_client._json)(_)
|
|
5310
|
+
})
|
|
5311
|
+
);
|
|
5312
|
+
b.m("PUT").h(headers).b(body);
|
|
5313
|
+
return b.build();
|
|
5314
|
+
}, "se_StartOutboundChatContactCommand");
|
|
5287
5315
|
var se_StartOutboundVoiceContactCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5288
5316
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
5289
5317
|
const headers = {
|
|
@@ -9062,6 +9090,20 @@ var de_StartContactStreamingCommand = /* @__PURE__ */ __name(async (output, cont
|
|
|
9062
9090
|
Object.assign(contents, doc);
|
|
9063
9091
|
return contents;
|
|
9064
9092
|
}, "de_StartContactStreamingCommand");
|
|
9093
|
+
var de_StartOutboundChatContactCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
9094
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
9095
|
+
return de_CommandError(output, context);
|
|
9096
|
+
}
|
|
9097
|
+
const contents = (0, import_smithy_client.map)({
|
|
9098
|
+
$metadata: deserializeMetadata(output)
|
|
9099
|
+
});
|
|
9100
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
9101
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
9102
|
+
ContactId: import_smithy_client.expectString
|
|
9103
|
+
});
|
|
9104
|
+
Object.assign(contents, doc);
|
|
9105
|
+
return contents;
|
|
9106
|
+
}, "de_StartOutboundChatContactCommand");
|
|
9065
9107
|
var de_StartOutboundVoiceContactCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
9066
9108
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
9067
9109
|
return de_CommandError(output, context);
|
|
@@ -14494,6 +14536,20 @@ var _StartContactStreamingCommand = class _StartContactStreamingCommand extends
|
|
|
14494
14536
|
__name(_StartContactStreamingCommand, "StartContactStreamingCommand");
|
|
14495
14537
|
var StartContactStreamingCommand = _StartContactStreamingCommand;
|
|
14496
14538
|
|
|
14539
|
+
// src/commands/StartOutboundChatContactCommand.ts
|
|
14540
|
+
|
|
14541
|
+
|
|
14542
|
+
|
|
14543
|
+
var _StartOutboundChatContactCommand = class _StartOutboundChatContactCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
14544
|
+
return [
|
|
14545
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14546
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
14547
|
+
];
|
|
14548
|
+
}).s("AmazonConnectService", "StartOutboundChatContact", {}).n("ConnectClient", "StartOutboundChatContactCommand").f(void 0, void 0).ser(se_StartOutboundChatContactCommand).de(de_StartOutboundChatContactCommand).build() {
|
|
14549
|
+
};
|
|
14550
|
+
__name(_StartOutboundChatContactCommand, "StartOutboundChatContactCommand");
|
|
14551
|
+
var StartOutboundChatContactCommand = _StartOutboundChatContactCommand;
|
|
14552
|
+
|
|
14497
14553
|
// src/commands/StartOutboundVoiceContactCommand.ts
|
|
14498
14554
|
|
|
14499
14555
|
|
|
@@ -15531,6 +15587,7 @@ var commands = {
|
|
|
15531
15587
|
StartContactEvaluationCommand,
|
|
15532
15588
|
StartContactRecordingCommand,
|
|
15533
15589
|
StartContactStreamingCommand,
|
|
15590
|
+
StartOutboundChatContactCommand,
|
|
15534
15591
|
StartOutboundVoiceContactCommand,
|
|
15535
15592
|
StartTaskContactCommand,
|
|
15536
15593
|
StartWebRTCContactCommand,
|
|
@@ -16052,6 +16109,7 @@ var paginateSearchVocabularies = (0, import_core.createPaginator)(ConnectClient,
|
|
|
16052
16109
|
StartContactEvaluationCommand,
|
|
16053
16110
|
StartContactRecordingCommand,
|
|
16054
16111
|
StartContactStreamingCommand,
|
|
16112
|
+
StartOutboundChatContactCommand,
|
|
16055
16113
|
StartOutboundVoiceContactCommand,
|
|
16056
16114
|
StartTaskContactCommand,
|
|
16057
16115
|
StartWebRTCContactCommand,
|
package/dist-es/Connect.js
CHANGED
|
@@ -194,6 +194,7 @@ import { StartChatContactCommand, } from "./commands/StartChatContactCommand";
|
|
|
194
194
|
import { StartContactEvaluationCommand, } from "./commands/StartContactEvaluationCommand";
|
|
195
195
|
import { StartContactRecordingCommand, } from "./commands/StartContactRecordingCommand";
|
|
196
196
|
import { StartContactStreamingCommand, } from "./commands/StartContactStreamingCommand";
|
|
197
|
+
import { StartOutboundChatContactCommand, } from "./commands/StartOutboundChatContactCommand";
|
|
197
198
|
import { StartOutboundVoiceContactCommand, } from "./commands/StartOutboundVoiceContactCommand";
|
|
198
199
|
import { StartTaskContactCommand, } from "./commands/StartTaskContactCommand";
|
|
199
200
|
import { StartWebRTCContactCommand, } from "./commands/StartWebRTCContactCommand";
|
|
@@ -451,6 +452,7 @@ const commands = {
|
|
|
451
452
|
StartContactEvaluationCommand,
|
|
452
453
|
StartContactRecordingCommand,
|
|
453
454
|
StartContactStreamingCommand,
|
|
455
|
+
StartOutboundChatContactCommand,
|
|
454
456
|
StartOutboundVoiceContactCommand,
|
|
455
457
|
StartTaskContactCommand,
|
|
456
458
|
StartWebRTCContactCommand,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_StartOutboundChatContactCommand, se_StartOutboundChatContactCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class StartOutboundChatContactCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AmazonConnectService", "StartOutboundChatContact", {})
|
|
17
|
+
.n("ConnectClient", "StartOutboundChatContactCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_StartOutboundChatContactCommand)
|
|
20
|
+
.de(de_StartOutboundChatContactCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -193,6 +193,7 @@ export * from "./StartChatContactCommand";
|
|
|
193
193
|
export * from "./StartContactEvaluationCommand";
|
|
194
194
|
export * from "./StartContactRecordingCommand";
|
|
195
195
|
export * from "./StartContactStreamingCommand";
|
|
196
|
+
export * from "./StartOutboundChatContactCommand";
|
|
196
197
|
export * from "./StartOutboundVoiceContactCommand";
|
|
197
198
|
export * from "./StartTaskContactCommand";
|
|
198
199
|
export * from "./StartWebRTCContactCommand";
|
|
@@ -277,6 +277,7 @@ export const ListFlowAssociationResourceType = {
|
|
|
277
277
|
VOICE_PHONE_NUMBER: "VOICE_PHONE_NUMBER",
|
|
278
278
|
};
|
|
279
279
|
export const EndpointType = {
|
|
280
|
+
CONNECT_PHONENUMBER_ARN: "CONNECT_PHONENUMBER_ARN",
|
|
280
281
|
CONTACT_FLOW: "CONTACT_FLOW",
|
|
281
282
|
TELEPHONE_NUMBER: "TELEPHONE_NUMBER",
|
|
282
283
|
VOIP: "VOIP",
|
|
@@ -2743,6 +2743,30 @@ export const se_StartContactStreamingCommand = async (input, context) => {
|
|
|
2743
2743
|
b.m("POST").h(headers).b(body);
|
|
2744
2744
|
return b.build();
|
|
2745
2745
|
};
|
|
2746
|
+
export const se_StartOutboundChatContactCommand = async (input, context) => {
|
|
2747
|
+
const b = rb(input, context);
|
|
2748
|
+
const headers = {
|
|
2749
|
+
"content-type": "application/json",
|
|
2750
|
+
};
|
|
2751
|
+
b.bp("/contact/outbound-chat");
|
|
2752
|
+
let body;
|
|
2753
|
+
body = JSON.stringify(take(input, {
|
|
2754
|
+
Attributes: (_) => _json(_),
|
|
2755
|
+
ChatDurationInMinutes: [],
|
|
2756
|
+
ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
2757
|
+
ContactFlowId: [],
|
|
2758
|
+
DestinationEndpoint: (_) => _json(_),
|
|
2759
|
+
InitialSystemMessage: (_) => _json(_),
|
|
2760
|
+
InstanceId: [],
|
|
2761
|
+
ParticipantDetails: (_) => _json(_),
|
|
2762
|
+
RelatedContactId: [],
|
|
2763
|
+
SegmentAttributes: (_) => _json(_),
|
|
2764
|
+
SourceEndpoint: (_) => _json(_),
|
|
2765
|
+
SupportedMessagingContentTypes: (_) => _json(_),
|
|
2766
|
+
}));
|
|
2767
|
+
b.m("PUT").h(headers).b(body);
|
|
2768
|
+
return b.build();
|
|
2769
|
+
};
|
|
2746
2770
|
export const se_StartOutboundVoiceContactCommand = async (input, context) => {
|
|
2747
2771
|
const b = rb(input, context);
|
|
2748
2772
|
const headers = {
|
|
@@ -6405,6 +6429,20 @@ export const de_StartContactStreamingCommand = async (output, context) => {
|
|
|
6405
6429
|
Object.assign(contents, doc);
|
|
6406
6430
|
return contents;
|
|
6407
6431
|
};
|
|
6432
|
+
export const de_StartOutboundChatContactCommand = async (output, context) => {
|
|
6433
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6434
|
+
return de_CommandError(output, context);
|
|
6435
|
+
}
|
|
6436
|
+
const contents = map({
|
|
6437
|
+
$metadata: deserializeMetadata(output),
|
|
6438
|
+
});
|
|
6439
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
6440
|
+
const doc = take(data, {
|
|
6441
|
+
ContactId: __expectString,
|
|
6442
|
+
});
|
|
6443
|
+
Object.assign(contents, doc);
|
|
6444
|
+
return contents;
|
|
6445
|
+
};
|
|
6408
6446
|
export const de_StartOutboundVoiceContactCommand = async (output, context) => {
|
|
6409
6447
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6410
6448
|
return de_CommandError(output, context);
|
package/dist-types/Connect.d.ts
CHANGED
|
@@ -194,6 +194,7 @@ import { StartChatContactCommandInput, StartChatContactCommandOutput } from "./c
|
|
|
194
194
|
import { StartContactEvaluationCommandInput, StartContactEvaluationCommandOutput } from "./commands/StartContactEvaluationCommand";
|
|
195
195
|
import { StartContactRecordingCommandInput, StartContactRecordingCommandOutput } from "./commands/StartContactRecordingCommand";
|
|
196
196
|
import { StartContactStreamingCommandInput, StartContactStreamingCommandOutput } from "./commands/StartContactStreamingCommand";
|
|
197
|
+
import { StartOutboundChatContactCommandInput, StartOutboundChatContactCommandOutput } from "./commands/StartOutboundChatContactCommand";
|
|
197
198
|
import { StartOutboundVoiceContactCommandInput, StartOutboundVoiceContactCommandOutput } from "./commands/StartOutboundVoiceContactCommand";
|
|
198
199
|
import { StartTaskContactCommandInput, StartTaskContactCommandOutput } from "./commands/StartTaskContactCommand";
|
|
199
200
|
import { StartWebRTCContactCommandInput, StartWebRTCContactCommandOutput } from "./commands/StartWebRTCContactCommand";
|
|
@@ -1429,6 +1430,12 @@ export interface Connect {
|
|
|
1429
1430
|
startContactStreaming(args: StartContactStreamingCommandInput, options?: __HttpHandlerOptions): Promise<StartContactStreamingCommandOutput>;
|
|
1430
1431
|
startContactStreaming(args: StartContactStreamingCommandInput, cb: (err: any, data?: StartContactStreamingCommandOutput) => void): void;
|
|
1431
1432
|
startContactStreaming(args: StartContactStreamingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartContactStreamingCommandOutput) => void): void;
|
|
1433
|
+
/**
|
|
1434
|
+
* @see {@link StartOutboundChatContactCommand}
|
|
1435
|
+
*/
|
|
1436
|
+
startOutboundChatContact(args: StartOutboundChatContactCommandInput, options?: __HttpHandlerOptions): Promise<StartOutboundChatContactCommandOutput>;
|
|
1437
|
+
startOutboundChatContact(args: StartOutboundChatContactCommandInput, cb: (err: any, data?: StartOutboundChatContactCommandOutput) => void): void;
|
|
1438
|
+
startOutboundChatContact(args: StartOutboundChatContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartOutboundChatContactCommandOutput) => void): void;
|
|
1432
1439
|
/**
|
|
1433
1440
|
* @see {@link StartOutboundVoiceContactCommand}
|
|
1434
1441
|
*/
|
|
@@ -202,6 +202,7 @@ import { StartChatContactCommandInput, StartChatContactCommandOutput } from "./c
|
|
|
202
202
|
import { StartContactEvaluationCommandInput, StartContactEvaluationCommandOutput } from "./commands/StartContactEvaluationCommand";
|
|
203
203
|
import { StartContactRecordingCommandInput, StartContactRecordingCommandOutput } from "./commands/StartContactRecordingCommand";
|
|
204
204
|
import { StartContactStreamingCommandInput, StartContactStreamingCommandOutput } from "./commands/StartContactStreamingCommand";
|
|
205
|
+
import { StartOutboundChatContactCommandInput, StartOutboundChatContactCommandOutput } from "./commands/StartOutboundChatContactCommand";
|
|
205
206
|
import { StartOutboundVoiceContactCommandInput, StartOutboundVoiceContactCommandOutput } from "./commands/StartOutboundVoiceContactCommand";
|
|
206
207
|
import { StartTaskContactCommandInput, StartTaskContactCommandOutput } from "./commands/StartTaskContactCommand";
|
|
207
208
|
import { StartWebRTCContactCommandInput, StartWebRTCContactCommandOutput } from "./commands/StartWebRTCContactCommand";
|
|
@@ -268,11 +269,11 @@ export { __Client };
|
|
|
268
269
|
/**
|
|
269
270
|
* @public
|
|
270
271
|
*/
|
|
271
|
-
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateFlowCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetAttachedFileMetadataCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | ClaimPhoneNumberCommandInput | CompleteAttachedFileUploadCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeAuthenticationProfileCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateFlowCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DismissUserContactCommandInput | GetAttachedFileCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListApprovedOriginsCommandInput | ListAuthenticationProfilesCommandInput | ListBotsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAgentStatusesCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUserHierarchyGroupsCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateAuthenticationProfileCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput;
|
|
272
|
+
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateFlowCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetAttachedFileMetadataCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | ClaimPhoneNumberCommandInput | CompleteAttachedFileUploadCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeAuthenticationProfileCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateFlowCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DismissUserContactCommandInput | GetAttachedFileCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListApprovedOriginsCommandInput | ListAuthenticationProfilesCommandInput | ListBotsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAgentStatusesCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUserHierarchyGroupsCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundChatContactCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateAuthenticationProfileCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput;
|
|
272
273
|
/**
|
|
273
274
|
* @public
|
|
274
275
|
*/
|
|
275
|
-
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateFlowCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetAttachedFileMetadataCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | ClaimPhoneNumberCommandOutput | CompleteAttachedFileUploadCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeAuthenticationProfileCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateFlowCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DismissUserContactCommandOutput | GetAttachedFileCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListApprovedOriginsCommandOutput | ListAuthenticationProfilesCommandOutput | ListBotsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAgentStatusesCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUserHierarchyGroupsCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateAuthenticationProfileCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput;
|
|
276
|
+
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateFlowCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetAttachedFileMetadataCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | ClaimPhoneNumberCommandOutput | CompleteAttachedFileUploadCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeAuthenticationProfileCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateFlowCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DismissUserContactCommandOutput | GetAttachedFileCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListApprovedOriginsCommandOutput | ListAuthenticationProfilesCommandOutput | ListBotsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAgentStatusesCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUserHierarchyGroupsCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundChatContactCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateAuthenticationProfileCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput;
|
|
276
277
|
/**
|
|
277
278
|
* @public
|
|
278
279
|
*/
|
|
@@ -27,8 +27,7 @@ declare const AssociateAnalyticsDataSetCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* <p>Associates the specified dataset for a Amazon Connect instance with the target account.
|
|
30
|
+
* <p>Associates the specified dataset for a Amazon Connect instance with the target account.
|
|
32
31
|
* You can associate only one dataset in a single call.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -27,8 +27,7 @@ declare const BatchAssociateAnalyticsDataSetCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* <p>Associates a list of analytics datasets for a given Amazon Connect instance to a target
|
|
30
|
+
* <p>Associates a list of analytics datasets for a given Amazon Connect instance to a target
|
|
32
31
|
* account. You can associate multiple datasets in a single call.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -27,8 +27,7 @@ declare const BatchDisassociateAnalyticsDataSetCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* <p>Removes a list of analytics datasets associated with a given Amazon Connect instance.
|
|
30
|
+
* <p>Removes a list of analytics datasets associated with a given Amazon Connect instance.
|
|
32
31
|
* You can disassociate multiple datasets in a single call.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -48,11 +48,11 @@ declare const BatchPutContactCommand_base: {
|
|
|
48
48
|
* ContactDataRequestList: [ // ContactDataRequestList // required
|
|
49
49
|
* { // ContactDataRequest
|
|
50
50
|
* SystemEndpoint: { // Endpoint
|
|
51
|
-
* Type: "TELEPHONE_NUMBER" || "VOIP" || "CONTACT_FLOW",
|
|
51
|
+
* Type: "TELEPHONE_NUMBER" || "VOIP" || "CONTACT_FLOW" || "CONNECT_PHONENUMBER_ARN",
|
|
52
52
|
* Address: "STRING_VALUE",
|
|
53
53
|
* },
|
|
54
54
|
* CustomerEndpoint: {
|
|
55
|
-
* Type: "TELEPHONE_NUMBER" || "VOIP" || "CONTACT_FLOW",
|
|
55
|
+
* Type: "TELEPHONE_NUMBER" || "VOIP" || "CONTACT_FLOW" || "CONNECT_PHONENUMBER_ARN",
|
|
56
56
|
* Address: "STRING_VALUE",
|
|
57
57
|
* },
|
|
58
58
|
* RequestIdentifier: "STRING_VALUE",
|
|
@@ -31,10 +31,9 @@ declare const DescribeContactCommand_base: {
|
|
|
31
31
|
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
32
32
|
* <p>Describes the specified contact. </p>
|
|
33
33
|
* <important>
|
|
34
|
-
* <p>Contact information remains available in Amazon Connect for 24 months
|
|
35
|
-
* deleted
|
|
36
|
-
*
|
|
37
|
-
* API.</p>
|
|
34
|
+
* <p>Contact information remains available in Amazon Connect for 24 months from the
|
|
35
|
+
* InitiationTimestamp, and then it is deleted. Only contact information that is available in
|
|
36
|
+
* Amazon Connect is returned by this API</p>
|
|
38
37
|
* </important>
|
|
39
38
|
* @example
|
|
40
39
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -27,8 +27,7 @@ declare const DisassociateAnalyticsDataSetCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* <p>Removes the dataset ID associated with a given Amazon Connect instance.</p>
|
|
30
|
+
* <p>Removes the dataset ID associated with a given Amazon Connect instance.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -27,8 +27,7 @@ declare const ListAnalyticsDataAssociationsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* <p>Lists the association status of requested dataset ID for a given Amazon Connect
|
|
30
|
+
* <p>Lists the association status of requested dataset ID for a given Amazon Connect
|
|
32
31
|
* instance.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
+
import { StartOutboundChatContactRequest, StartOutboundChatContactResponse } from "../models/models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StartOutboundChatContactCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StartOutboundChatContactCommandInput extends StartOutboundChatContactRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StartOutboundChatContactCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StartOutboundChatContactCommandOutput extends StartOutboundChatContactResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StartOutboundChatContactCommand_base: {
|
|
25
|
+
new (input: StartOutboundChatContactCommandInput): import("@smithy/smithy-client").CommandImpl<StartOutboundChatContactCommandInput, StartOutboundChatContactCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: StartOutboundChatContactCommandInput): import("@smithy/smithy-client").CommandImpl<StartOutboundChatContactCommandInput, StartOutboundChatContactCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Initiates a new outbound SMS contact to a customer. Response of this API provides the
|
|
31
|
+
* ContactId of the outbound SMS contact created.</p>
|
|
32
|
+
* <p>
|
|
33
|
+
* <b>SourceEndpoint</b> only supports Endpoints with
|
|
34
|
+
* <code>CONNECT_PHONENUMBER_ARN</code> as Type and <b>DestinationEndpoint</b> only supports Endpoints with <code>TELEPHONE_NUMBER</code> as
|
|
35
|
+
* Type. <b>ContactFlowId</b> initiates the flow to manage the new SMS
|
|
36
|
+
* contact created.</p>
|
|
37
|
+
* <p>This API can be used to initiate outbound SMS contacts for an agent or it can also deflect
|
|
38
|
+
* an ongoing contact to an outbound SMS contact by using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_StartOutboundChatContact.html">StartOutboundChatContact</a> Flow Action.</p>
|
|
39
|
+
* <p>For more information about using SMS in Amazon Connect, see the following topics in the
|
|
40
|
+
* <i>Amazon Connect Administrator Guide</i>:</p>
|
|
41
|
+
* <ul>
|
|
42
|
+
* <li>
|
|
43
|
+
* <p>
|
|
44
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/setup-sms-messaging.html">Set
|
|
45
|
+
* up SMS messaging</a>
|
|
46
|
+
* </p>
|
|
47
|
+
* </li>
|
|
48
|
+
* <li>
|
|
49
|
+
* <p>
|
|
50
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/sms-number.html">Request an
|
|
51
|
+
* SMS-enabled phone number through AWS End User Messaging SMS</a>
|
|
52
|
+
* </p>
|
|
53
|
+
* </li>
|
|
54
|
+
* </ul>
|
|
55
|
+
* @example
|
|
56
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
57
|
+
* ```javascript
|
|
58
|
+
* import { ConnectClient, StartOutboundChatContactCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
59
|
+
* // const { ConnectClient, StartOutboundChatContactCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
60
|
+
* const client = new ConnectClient(config);
|
|
61
|
+
* const input = { // StartOutboundChatContactRequest
|
|
62
|
+
* SourceEndpoint: { // Endpoint
|
|
63
|
+
* Type: "TELEPHONE_NUMBER" || "VOIP" || "CONTACT_FLOW" || "CONNECT_PHONENUMBER_ARN",
|
|
64
|
+
* Address: "STRING_VALUE",
|
|
65
|
+
* },
|
|
66
|
+
* DestinationEndpoint: {
|
|
67
|
+
* Type: "TELEPHONE_NUMBER" || "VOIP" || "CONTACT_FLOW" || "CONNECT_PHONENUMBER_ARN",
|
|
68
|
+
* Address: "STRING_VALUE",
|
|
69
|
+
* },
|
|
70
|
+
* InstanceId: "STRING_VALUE", // required
|
|
71
|
+
* SegmentAttributes: { // SegmentAttributes // required
|
|
72
|
+
* "<keys>": { // SegmentAttributeValue
|
|
73
|
+
* ValueString: "STRING_VALUE",
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* Attributes: { // Attributes
|
|
77
|
+
* "<keys>": "STRING_VALUE",
|
|
78
|
+
* },
|
|
79
|
+
* ContactFlowId: "STRING_VALUE", // required
|
|
80
|
+
* ChatDurationInMinutes: Number("int"),
|
|
81
|
+
* ParticipantDetails: { // ParticipantDetails
|
|
82
|
+
* DisplayName: "STRING_VALUE", // required
|
|
83
|
+
* },
|
|
84
|
+
* InitialSystemMessage: { // ChatMessage
|
|
85
|
+
* ContentType: "STRING_VALUE", // required
|
|
86
|
+
* Content: "STRING_VALUE", // required
|
|
87
|
+
* },
|
|
88
|
+
* RelatedContactId: "STRING_VALUE",
|
|
89
|
+
* SupportedMessagingContentTypes: [ // SupportedMessagingContentTypes
|
|
90
|
+
* "STRING_VALUE",
|
|
91
|
+
* ],
|
|
92
|
+
* ClientToken: "STRING_VALUE",
|
|
93
|
+
* };
|
|
94
|
+
* const command = new StartOutboundChatContactCommand(input);
|
|
95
|
+
* const response = await client.send(command);
|
|
96
|
+
* // { // StartOutboundChatContactResponse
|
|
97
|
+
* // ContactId: "STRING_VALUE",
|
|
98
|
+
* // };
|
|
99
|
+
*
|
|
100
|
+
* ```
|
|
101
|
+
*
|
|
102
|
+
* @param StartOutboundChatContactCommandInput - {@link StartOutboundChatContactCommandInput}
|
|
103
|
+
* @returns {@link StartOutboundChatContactCommandOutput}
|
|
104
|
+
* @see {@link StartOutboundChatContactCommandInput} for command's `input` shape.
|
|
105
|
+
* @see {@link StartOutboundChatContactCommandOutput} for command's `response` shape.
|
|
106
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
107
|
+
*
|
|
108
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
109
|
+
* <p>You do not have sufficient permissions to perform this action.</p>
|
|
110
|
+
*
|
|
111
|
+
* @throws {@link ConflictException} (client fault)
|
|
112
|
+
* <p>Operation cannot be performed at this time as there is a conflict with another operation or
|
|
113
|
+
* contact state.</p>
|
|
114
|
+
*
|
|
115
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
116
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
117
|
+
*
|
|
118
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
119
|
+
* <p>The request is not valid.</p>
|
|
120
|
+
*
|
|
121
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
122
|
+
* <p>The allowed limit for the resource has been exceeded.</p>
|
|
123
|
+
*
|
|
124
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
125
|
+
* <p>The specified resource was not found.</p>
|
|
126
|
+
*
|
|
127
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
128
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
129
|
+
*
|
|
130
|
+
* @throws {@link ConnectServiceException}
|
|
131
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
132
|
+
*
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
export declare class StartOutboundChatContactCommand extends StartOutboundChatContactCommand_base {
|
|
136
|
+
/** @internal type navigation helper, not in runtime. */
|
|
137
|
+
protected static __types: {
|
|
138
|
+
api: {
|
|
139
|
+
input: StartOutboundChatContactRequest;
|
|
140
|
+
output: StartOutboundChatContactResponse;
|
|
141
|
+
};
|
|
142
|
+
sdk: {
|
|
143
|
+
input: StartOutboundChatContactCommandInput;
|
|
144
|
+
output: StartOutboundChatContactCommandOutput;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
}
|
|
@@ -193,6 +193,7 @@ export * from "./StartChatContactCommand";
|
|
|
193
193
|
export * from "./StartContactEvaluationCommand";
|
|
194
194
|
export * from "./StartContactRecordingCommand";
|
|
195
195
|
export * from "./StartContactStreamingCommand";
|
|
196
|
+
export * from "./StartOutboundChatContactCommand";
|
|
196
197
|
export * from "./StartOutboundVoiceContactCommand";
|
|
197
198
|
export * from "./StartTaskContactCommand";
|
|
198
199
|
export * from "./StartWebRTCContactCommand";
|
|
@@ -1958,6 +1958,7 @@ export interface Campaign {
|
|
|
1958
1958
|
* @enum
|
|
1959
1959
|
*/
|
|
1960
1960
|
export declare const EndpointType: {
|
|
1961
|
+
readonly CONNECT_PHONENUMBER_ARN: "CONNECT_PHONENUMBER_ARN";
|
|
1961
1962
|
readonly CONTACT_FLOW: "CONTACT_FLOW";
|
|
1962
1963
|
readonly TELEPHONE_NUMBER: "TELEPHONE_NUMBER";
|
|
1963
1964
|
readonly VOIP: "VOIP";
|
|
@@ -2510,7 +2511,7 @@ export type NumericQuestionPropertyAutomationLabel = (typeof NumericQuestionProp
|
|
|
2510
2511
|
* <li>
|
|
2511
2512
|
* <p> Duration labels, such as <code>NON_TALK_TIME</code>, <code>CONTACT_DURATION</code>,
|
|
2512
2513
|
* <code>AGENT_INTERACTION_DURATION</code>, <code>CUSTOMER_HOLD_TIME</code> have a minimum value
|
|
2513
|
-
* of 0 and maximum value of
|
|
2514
|
+
* of 0 and maximum value of 63072000.</p>
|
|
2514
2515
|
* </li>
|
|
2515
2516
|
* <li>
|
|
2516
2517
|
* <p>Percentages have a minimum value of 0 and maximum value of 100. </p>
|
|
@@ -4071,7 +4071,8 @@ export interface MetricFilterV2 {
|
|
|
4071
4071
|
* <p>The values to use for filtering data. </p>
|
|
4072
4072
|
* <p>Valid metric filter values for <code>INITIATION_METHOD</code>: <code>INBOUND</code> |
|
|
4073
4073
|
* <code>OUTBOUND</code> | <code>TRANSFER</code> | <code>QUEUE_TRANSFER</code> |
|
|
4074
|
-
* <code>CALLBACK</code> | <code>API</code>
|
|
4074
|
+
* <code>CALLBACK</code> | <code>API</code> | <code>WEBRTC_API</code> | <code>MONITOR</code> |
|
|
4075
|
+
* <code>DISCONNECT</code> | <code>EXTERNAL_OUTBOUND</code>
|
|
4075
4076
|
* </p>
|
|
4076
4077
|
* <p>Valid metric filter values for <code>DISCONNECT_REASON</code>:
|
|
4077
4078
|
* <code>CUSTOMER_DISCONNECT</code> | <code>AGENT_DISCONNECT</code> |
|
|
@@ -4096,8 +4097,8 @@ export interface MetricFilterV2 {
|
|
|
4096
4097
|
*/
|
|
4097
4098
|
export interface ThresholdV2 {
|
|
4098
4099
|
/**
|
|
4099
|
-
* <p>The type of comparison.
|
|
4100
|
-
* supported.</p>
|
|
4100
|
+
* <p>The type of comparison. Currently, "less than" (LT), "less than equal" (LTE), and "greater
|
|
4101
|
+
* than" (GT) comparisons are supported.</p>
|
|
4101
4102
|
* @public
|
|
4102
4103
|
*/
|
|
4103
4104
|
Comparison?: string;
|
|
@@ -4792,8 +4793,8 @@ export interface GetMetricDataV2Request {
|
|
|
4792
4793
|
* <p>Unit: Count</p>
|
|
4793
4794
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Q in Connect</p>
|
|
4794
4795
|
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
4795
|
-
* (inclusive), in seconds. For <code>Comparison</code>, you
|
|
4796
|
-
* "Less than").</p>
|
|
4796
|
+
* (inclusive), in seconds. For <code>Comparison</code>, you can use <code>LT</code> (for "Less
|
|
4797
|
+
* than") or <code>LTE</code> (for "Less than equal").</p>
|
|
4797
4798
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-removed-historical">Contacts removed from queue in X seconds</a>
|
|
4798
4799
|
* </p>
|
|
4799
4800
|
* </dd>
|
|
@@ -4803,8 +4804,8 @@ export interface GetMetricDataV2Request {
|
|
|
4803
4804
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
4804
4805
|
* Q in Connect</p>
|
|
4805
4806
|
* <p>Threshold: For <code>ThresholdValue</code> enter any whole number from 1 to 604800
|
|
4806
|
-
* (inclusive), in seconds. For <code>Comparison</code>, you
|
|
4807
|
-
* "Less than").</p>
|
|
4807
|
+
* (inclusive), in seconds. For <code>Comparison</code>, you can use <code>LT</code> (for "Less
|
|
4808
|
+
* than") or <code>LTE</code> (for "Less than equal").</p>
|
|
4808
4809
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-resolved-historical">Contacts resolved in X</a>
|
|
4809
4810
|
* </p>
|
|
4810
4811
|
* </dd>
|
|
@@ -5024,8 +5025,8 @@ export interface GetMetricDataV2Request {
|
|
|
5024
5025
|
* <p>Unit: Percent</p>
|
|
5025
5026
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Q in Connect</p>
|
|
5026
5027
|
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
5027
|
-
* (inclusive), in seconds. For <code>Comparison</code>, you
|
|
5028
|
-
* "Less than")
|
|
5028
|
+
* (inclusive), in seconds. For <code>Comparison</code>, you can use <code>LT</code> (for "Less
|
|
5029
|
+
* than") or <code>LTE</code> (for "Less than equal").</p>
|
|
5029
5030
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#service-level-historical">Service level X</a>
|
|
5030
5031
|
* </p>
|
|
5031
5032
|
* </dd>
|
|
@@ -5082,8 +5083,8 @@ export interface GetMetricDataV2Request {
|
|
|
5082
5083
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
5083
5084
|
* Q in Connect</p>
|
|
5084
5085
|
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
5085
|
-
* (inclusive), in seconds. For <code>Comparison</code>, you
|
|
5086
|
-
* "Less than")
|
|
5086
|
+
* (inclusive), in seconds. For <code>Comparison</code>, you can use <code>LT</code> (for "Less
|
|
5087
|
+
* than") or <code>LTE</code> (for "Less than equal").</p>
|
|
5087
5088
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-abandoned-x-historical">Contacts abandoned in X seconds</a>
|
|
5088
5089
|
* </p>
|
|
5089
5090
|
* </dd>
|
|
@@ -5093,8 +5094,8 @@ export interface GetMetricDataV2Request {
|
|
|
5093
5094
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype,
|
|
5094
5095
|
* Q in Connect</p>
|
|
5095
5096
|
* <p>Threshold: For <code>ThresholdValue</code>, enter any whole number from 1 to 604800
|
|
5096
|
-
* (inclusive), in seconds. For <code>Comparison</code>, you
|
|
5097
|
-
* "Less than")
|
|
5097
|
+
* (inclusive), in seconds. For <code>Comparison</code>, you can use <code>LT</code> (for "Less
|
|
5098
|
+
* than") or <code>LTE</code> (for "Less than equal").</p>
|
|
5098
5099
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/historical-metrics-definitions.html#contacts-answered-x-historical">Contacts answered in X seconds</a>
|
|
5099
5100
|
* </p>
|
|
5100
5101
|
* </dd>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { AgentAvailabilityTimer, AgentConfig, AgentHierarchyGroups, AgentInfo, AgentStatus, AgentStatusSearchFilter, AgentStatusState, AllowedCapabilities, AnsweringMachineDetectionStatus, Application, AttributeCondition, Campaign, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ControlPlaneAttributeFilter, CreatedByInfo, Customer, CustomerVoiceActivity, DisconnectDetails, EvaluationFormQuestion, EvaluationFormScoringStrategy, Expiry, FileStatusType, FileUseCaseType, HoursOfOperationConfig, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, MonitorCapability, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QualityMetrics, QueueInfo, QuickConnectConfig, Reference, RehydrationType, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, StringComparisonType, StringCondition, TagCondition, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, UserProficiency, View, ViewInputContent, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
3
|
+
import { AgentAvailabilityTimer, AgentConfig, AgentHierarchyGroups, AgentInfo, AgentStatus, AgentStatusSearchFilter, AgentStatusState, AllowedCapabilities, AnsweringMachineDetectionStatus, Application, AttributeCondition, Campaign, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ControlPlaneAttributeFilter, CreatedByInfo, Customer, CustomerVoiceActivity, DisconnectDetails, Endpoint, EvaluationFormQuestion, EvaluationFormScoringStrategy, Expiry, FileStatusType, FileUseCaseType, HoursOfOperationConfig, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, MonitorCapability, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QualityMetrics, QueueInfo, QuickConnectConfig, Reference, RehydrationType, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, StringComparisonType, StringCondition, TagCondition, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, UserProficiency, View, ViewInputContent, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
4
|
import { ContactFlow, ContactFlowModule, ContactFlowModuleState, ContactFlowState, Evaluation, EvaluationAnswerData, EvaluationFormVersionStatus, EvaluationNote, HierarchyGroup, HierarchyGroupSummary, HoursOfOperation, InstanceAttributeType, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue, QueueStatus, QuickConnect, RoutingCriteriaStepStatus, RoutingProfile, SegmentAttributeValue, SignInConfig, SortOrder, TelephonyConfig, TrafficDistributionGroupStatus, WisdomInfo } from "./models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -3027,6 +3027,154 @@ export interface StartContactStreamingResponse {
|
|
|
3027
3027
|
*/
|
|
3028
3028
|
StreamingId: string | undefined;
|
|
3029
3029
|
}
|
|
3030
|
+
/**
|
|
3031
|
+
* @public
|
|
3032
|
+
*/
|
|
3033
|
+
export interface StartOutboundChatContactRequest {
|
|
3034
|
+
/**
|
|
3035
|
+
* <p>Information about the endpoint.</p>
|
|
3036
|
+
* @public
|
|
3037
|
+
*/
|
|
3038
|
+
SourceEndpoint: Endpoint | undefined;
|
|
3039
|
+
/**
|
|
3040
|
+
* <p>Information about the endpoint.</p>
|
|
3041
|
+
* @public
|
|
3042
|
+
*/
|
|
3043
|
+
DestinationEndpoint: Endpoint | undefined;
|
|
3044
|
+
/**
|
|
3045
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instance ID in the
|
|
3046
|
+
* Amazon Resource Name (ARN) of the instance.</p>
|
|
3047
|
+
* @public
|
|
3048
|
+
*/
|
|
3049
|
+
InstanceId: string | undefined;
|
|
3050
|
+
/**
|
|
3051
|
+
* <p>A set of system defined key-value pairs stored on individual contact segments using an
|
|
3052
|
+
* attribute map. The attributes are standard Amazon Connect attributes. They can be accessed in
|
|
3053
|
+
* flows.</p>
|
|
3054
|
+
* <ul>
|
|
3055
|
+
* <li>
|
|
3056
|
+
* <p>Attribute keys can include only alphanumeric, <code>-</code>, and <code>_</code>.</p>
|
|
3057
|
+
* </li>
|
|
3058
|
+
* <li>
|
|
3059
|
+
* <p>This field can be used to show channel subtype, such as <code>connect:Guide</code> and
|
|
3060
|
+
* <code>connect:SMS</code>.</p>
|
|
3061
|
+
* </li>
|
|
3062
|
+
* </ul>
|
|
3063
|
+
* @public
|
|
3064
|
+
*/
|
|
3065
|
+
SegmentAttributes: Record<string, SegmentAttributeValue> | undefined;
|
|
3066
|
+
/**
|
|
3067
|
+
* <p>A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes, and can be accessed in flows just like any other contact attributes.</p>
|
|
3068
|
+
* @public
|
|
3069
|
+
*/
|
|
3070
|
+
Attributes?: Record<string, string>;
|
|
3071
|
+
/**
|
|
3072
|
+
* <p>The identifier of the flow for the call. To see the ContactFlowId in the Amazon Connect
|
|
3073
|
+
* console user interface, on the navigation menu go to <b>Routing, Contact
|
|
3074
|
+
* Flows</b>. Choose the flow. On the flow page, under the name of the flow, choose
|
|
3075
|
+
* <b>Show additional flow information</b>. The ContactFlowId is the last
|
|
3076
|
+
* part of the ARN, shown here in bold:</p>
|
|
3077
|
+
* <ul>
|
|
3078
|
+
* <li>
|
|
3079
|
+
* <p>arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/<b>123ec456-a007-89c0-1234-xxxxxxxxxxxx</b>
|
|
3080
|
+
* </p>
|
|
3081
|
+
* </li>
|
|
3082
|
+
* </ul>
|
|
3083
|
+
* @public
|
|
3084
|
+
*/
|
|
3085
|
+
ContactFlowId: string | undefined;
|
|
3086
|
+
/**
|
|
3087
|
+
* <p>The total duration of the newly started chat session. If not specified, the chat session
|
|
3088
|
+
* duration defaults to 25 hour. The minimum configurable time is 60 minutes. The maximum
|
|
3089
|
+
* configurable time is 10,080 minutes (7 days).</p>
|
|
3090
|
+
* @public
|
|
3091
|
+
*/
|
|
3092
|
+
ChatDurationInMinutes?: number;
|
|
3093
|
+
/**
|
|
3094
|
+
* <p>The customer's details.</p>
|
|
3095
|
+
* @public
|
|
3096
|
+
*/
|
|
3097
|
+
ParticipantDetails?: ParticipantDetails;
|
|
3098
|
+
/**
|
|
3099
|
+
* <p>A chat message.</p>
|
|
3100
|
+
* @public
|
|
3101
|
+
*/
|
|
3102
|
+
InitialSystemMessage?: ChatMessage;
|
|
3103
|
+
/**
|
|
3104
|
+
* <p>The unique identifier for an Amazon Connect contact. This identifier is related to the
|
|
3105
|
+
* contact starting.</p>
|
|
3106
|
+
* @public
|
|
3107
|
+
*/
|
|
3108
|
+
RelatedContactId?: string;
|
|
3109
|
+
/**
|
|
3110
|
+
* <p>The supported chat message content types. Supported types are:</p>
|
|
3111
|
+
* <ul>
|
|
3112
|
+
* <li>
|
|
3113
|
+
* <p>
|
|
3114
|
+
* <code>text/plain</code>
|
|
3115
|
+
* </p>
|
|
3116
|
+
* </li>
|
|
3117
|
+
* <li>
|
|
3118
|
+
* <p>
|
|
3119
|
+
* <code>text/markdown</code>
|
|
3120
|
+
* </p>
|
|
3121
|
+
* </li>
|
|
3122
|
+
* <li>
|
|
3123
|
+
* <p>
|
|
3124
|
+
* <code>application/json,
|
|
3125
|
+
* application/vnd.amazonaws.connect.message.interactive</code>
|
|
3126
|
+
* </p>
|
|
3127
|
+
* </li>
|
|
3128
|
+
* <li>
|
|
3129
|
+
* <p>
|
|
3130
|
+
* <code>application/vnd.amazonaws.connect.message.interactive.response</code>
|
|
3131
|
+
* </p>
|
|
3132
|
+
* </li>
|
|
3133
|
+
* </ul>
|
|
3134
|
+
* <p>Content types must always contain <code>text/plain</code>. You can then put any other
|
|
3135
|
+
* supported type in the list. For example, all the following lists are valid because they contain
|
|
3136
|
+
* <code>text/plain</code>:</p>
|
|
3137
|
+
* <ul>
|
|
3138
|
+
* <li>
|
|
3139
|
+
* <p>
|
|
3140
|
+
* <code>[text/plain, text/markdown, application/json]</code>
|
|
3141
|
+
* </p>
|
|
3142
|
+
* </li>
|
|
3143
|
+
* <li>
|
|
3144
|
+
* <p>
|
|
3145
|
+
* <code>[text/markdown, text/plain]</code>
|
|
3146
|
+
* </p>
|
|
3147
|
+
* </li>
|
|
3148
|
+
* <li>
|
|
3149
|
+
* <p>
|
|
3150
|
+
* <code>[text/plain, application/json,
|
|
3151
|
+
* application/vnd.amazonaws.connect.message.interactive.response]</code>
|
|
3152
|
+
* </p>
|
|
3153
|
+
* </li>
|
|
3154
|
+
* </ul>
|
|
3155
|
+
* @public
|
|
3156
|
+
*/
|
|
3157
|
+
SupportedMessagingContentTypes?: string[];
|
|
3158
|
+
/**
|
|
3159
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
3160
|
+
* request. If not provided, the AWS SDK populates this field. For more information about
|
|
3161
|
+
* idempotency, see <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making
|
|
3162
|
+
* retries safe with idempotent APIs</a>. The token is valid for 7 days after creation. If a
|
|
3163
|
+
* contact is already started, the contact ID is returned.</p>
|
|
3164
|
+
* @public
|
|
3165
|
+
*/
|
|
3166
|
+
ClientToken?: string;
|
|
3167
|
+
}
|
|
3168
|
+
/**
|
|
3169
|
+
* @public
|
|
3170
|
+
*/
|
|
3171
|
+
export interface StartOutboundChatContactResponse {
|
|
3172
|
+
/**
|
|
3173
|
+
* <p>The identifier of this contact within the Amazon Connect instance.</p>
|
|
3174
|
+
* @public
|
|
3175
|
+
*/
|
|
3176
|
+
ContactId?: string;
|
|
3177
|
+
}
|
|
3030
3178
|
/**
|
|
3031
3179
|
* <p>Outbound calls to the destination number are not allowed.</p>
|
|
3032
3180
|
* @public
|
|
@@ -195,6 +195,7 @@ import { StartChatContactCommandInput, StartChatContactCommandOutput } from "../
|
|
|
195
195
|
import { StartContactEvaluationCommandInput, StartContactEvaluationCommandOutput } from "../commands/StartContactEvaluationCommand";
|
|
196
196
|
import { StartContactRecordingCommandInput, StartContactRecordingCommandOutput } from "../commands/StartContactRecordingCommand";
|
|
197
197
|
import { StartContactStreamingCommandInput, StartContactStreamingCommandOutput } from "../commands/StartContactStreamingCommand";
|
|
198
|
+
import { StartOutboundChatContactCommandInput, StartOutboundChatContactCommandOutput } from "../commands/StartOutboundChatContactCommand";
|
|
198
199
|
import { StartOutboundVoiceContactCommandInput, StartOutboundVoiceContactCommandOutput } from "../commands/StartOutboundVoiceContactCommand";
|
|
199
200
|
import { StartTaskContactCommandInput, StartTaskContactCommandOutput } from "../commands/StartTaskContactCommand";
|
|
200
201
|
import { StartWebRTCContactCommandInput, StartWebRTCContactCommandOutput } from "../commands/StartWebRTCContactCommand";
|
|
@@ -1035,6 +1036,10 @@ export declare const se_StartContactRecordingCommand: (input: StartContactRecord
|
|
|
1035
1036
|
* serializeAws_restJson1StartContactStreamingCommand
|
|
1036
1037
|
*/
|
|
1037
1038
|
export declare const se_StartContactStreamingCommand: (input: StartContactStreamingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1039
|
+
/**
|
|
1040
|
+
* serializeAws_restJson1StartOutboundChatContactCommand
|
|
1041
|
+
*/
|
|
1042
|
+
export declare const se_StartOutboundChatContactCommand: (input: StartOutboundChatContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1038
1043
|
/**
|
|
1039
1044
|
* serializeAws_restJson1StartOutboundVoiceContactCommand
|
|
1040
1045
|
*/
|
|
@@ -2055,6 +2060,10 @@ export declare const de_StartContactRecordingCommand: (output: __HttpResponse, c
|
|
|
2055
2060
|
* deserializeAws_restJson1StartContactStreamingCommand
|
|
2056
2061
|
*/
|
|
2057
2062
|
export declare const de_StartContactStreamingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartContactStreamingCommandOutput>;
|
|
2063
|
+
/**
|
|
2064
|
+
* deserializeAws_restJson1StartOutboundChatContactCommand
|
|
2065
|
+
*/
|
|
2066
|
+
export declare const de_StartOutboundChatContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartOutboundChatContactCommandOutput>;
|
|
2058
2067
|
/**
|
|
2059
2068
|
* deserializeAws_restJson1StartOutboundVoiceContactCommand
|
|
2060
2069
|
*/
|
|
@@ -779,6 +779,10 @@ import {
|
|
|
779
779
|
StartContactStreamingCommandInput,
|
|
780
780
|
StartContactStreamingCommandOutput,
|
|
781
781
|
} from "./commands/StartContactStreamingCommand";
|
|
782
|
+
import {
|
|
783
|
+
StartOutboundChatContactCommandInput,
|
|
784
|
+
StartOutboundChatContactCommandOutput,
|
|
785
|
+
} from "./commands/StartOutboundChatContactCommand";
|
|
782
786
|
import {
|
|
783
787
|
StartOutboundVoiceContactCommandInput,
|
|
784
788
|
StartOutboundVoiceContactCommandOutput,
|
|
@@ -3607,6 +3611,19 @@ export interface Connect {
|
|
|
3607
3611
|
options: __HttpHandlerOptions,
|
|
3608
3612
|
cb: (err: any, data?: StartContactStreamingCommandOutput) => void
|
|
3609
3613
|
): void;
|
|
3614
|
+
startOutboundChatContact(
|
|
3615
|
+
args: StartOutboundChatContactCommandInput,
|
|
3616
|
+
options?: __HttpHandlerOptions
|
|
3617
|
+
): Promise<StartOutboundChatContactCommandOutput>;
|
|
3618
|
+
startOutboundChatContact(
|
|
3619
|
+
args: StartOutboundChatContactCommandInput,
|
|
3620
|
+
cb: (err: any, data?: StartOutboundChatContactCommandOutput) => void
|
|
3621
|
+
): void;
|
|
3622
|
+
startOutboundChatContact(
|
|
3623
|
+
args: StartOutboundChatContactCommandInput,
|
|
3624
|
+
options: __HttpHandlerOptions,
|
|
3625
|
+
cb: (err: any, data?: StartOutboundChatContactCommandOutput) => void
|
|
3626
|
+
): void;
|
|
3610
3627
|
startOutboundVoiceContact(
|
|
3611
3628
|
args: StartOutboundVoiceContactCommandInput,
|
|
3612
3629
|
options?: __HttpHandlerOptions
|
|
@@ -825,6 +825,10 @@ import {
|
|
|
825
825
|
StartContactStreamingCommandInput,
|
|
826
826
|
StartContactStreamingCommandOutput,
|
|
827
827
|
} from "./commands/StartContactStreamingCommand";
|
|
828
|
+
import {
|
|
829
|
+
StartOutboundChatContactCommandInput,
|
|
830
|
+
StartOutboundChatContactCommandOutput,
|
|
831
|
+
} from "./commands/StartOutboundChatContactCommand";
|
|
828
832
|
import {
|
|
829
833
|
StartOutboundVoiceContactCommandInput,
|
|
830
834
|
StartOutboundVoiceContactCommandOutput,
|
|
@@ -1268,6 +1272,7 @@ export type ServiceInputTypes =
|
|
|
1268
1272
|
| StartContactEvaluationCommandInput
|
|
1269
1273
|
| StartContactRecordingCommandInput
|
|
1270
1274
|
| StartContactStreamingCommandInput
|
|
1275
|
+
| StartOutboundChatContactCommandInput
|
|
1271
1276
|
| StartOutboundVoiceContactCommandInput
|
|
1272
1277
|
| StartTaskContactCommandInput
|
|
1273
1278
|
| StartWebRTCContactCommandInput
|
|
@@ -1524,6 +1529,7 @@ export type ServiceOutputTypes =
|
|
|
1524
1529
|
| StartContactEvaluationCommandOutput
|
|
1525
1530
|
| StartContactRecordingCommandOutput
|
|
1526
1531
|
| StartContactStreamingCommandOutput
|
|
1532
|
+
| StartOutboundChatContactCommandOutput
|
|
1527
1533
|
| StartOutboundVoiceContactCommandOutput
|
|
1528
1534
|
| StartTaskContactCommandOutput
|
|
1529
1535
|
| StartWebRTCContactCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectClient";
|
|
8
|
+
import {
|
|
9
|
+
StartOutboundChatContactRequest,
|
|
10
|
+
StartOutboundChatContactResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartOutboundChatContactCommandInput
|
|
15
|
+
extends StartOutboundChatContactRequest {}
|
|
16
|
+
export interface StartOutboundChatContactCommandOutput
|
|
17
|
+
extends StartOutboundChatContactResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartOutboundChatContactCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartOutboundChatContactCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartOutboundChatContactCommandInput,
|
|
24
|
+
StartOutboundChatContactCommandOutput,
|
|
25
|
+
ConnectClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartOutboundChatContactCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartOutboundChatContactCommandInput,
|
|
33
|
+
StartOutboundChatContactCommandOutput,
|
|
34
|
+
ConnectClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartOutboundChatContactCommand extends StartOutboundChatContactCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartOutboundChatContactRequest;
|
|
44
|
+
output: StartOutboundChatContactResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartOutboundChatContactCommandInput;
|
|
48
|
+
output: StartOutboundChatContactCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -193,6 +193,7 @@ export * from "./StartChatContactCommand";
|
|
|
193
193
|
export * from "./StartContactEvaluationCommand";
|
|
194
194
|
export * from "./StartContactRecordingCommand";
|
|
195
195
|
export * from "./StartContactStreamingCommand";
|
|
196
|
+
export * from "./StartOutboundChatContactCommand";
|
|
196
197
|
export * from "./StartOutboundVoiceContactCommand";
|
|
197
198
|
export * from "./StartTaskContactCommand";
|
|
198
199
|
export * from "./StartWebRTCContactCommand";
|
|
@@ -624,6 +624,7 @@ export interface Campaign {
|
|
|
624
624
|
CampaignId?: string;
|
|
625
625
|
}
|
|
626
626
|
export declare const EndpointType: {
|
|
627
|
+
readonly CONNECT_PHONENUMBER_ARN: "CONNECT_PHONENUMBER_ARN";
|
|
627
628
|
readonly CONTACT_FLOW: "CONTACT_FLOW";
|
|
628
629
|
readonly TELEPHONE_NUMBER: "TELEPHONE_NUMBER";
|
|
629
630
|
readonly VOIP: "VOIP";
|
|
@@ -22,6 +22,7 @@ import {
|
|
|
22
22
|
Customer,
|
|
23
23
|
CustomerVoiceActivity,
|
|
24
24
|
DisconnectDetails,
|
|
25
|
+
Endpoint,
|
|
25
26
|
EvaluationFormQuestion,
|
|
26
27
|
EvaluationFormScoringStrategy,
|
|
27
28
|
Expiry,
|
|
@@ -746,6 +747,23 @@ export interface StartContactStreamingRequest {
|
|
|
746
747
|
export interface StartContactStreamingResponse {
|
|
747
748
|
StreamingId: string | undefined;
|
|
748
749
|
}
|
|
750
|
+
export interface StartOutboundChatContactRequest {
|
|
751
|
+
SourceEndpoint: Endpoint | undefined;
|
|
752
|
+
DestinationEndpoint: Endpoint | undefined;
|
|
753
|
+
InstanceId: string | undefined;
|
|
754
|
+
SegmentAttributes: Record<string, SegmentAttributeValue> | undefined;
|
|
755
|
+
Attributes?: Record<string, string>;
|
|
756
|
+
ContactFlowId: string | undefined;
|
|
757
|
+
ChatDurationInMinutes?: number;
|
|
758
|
+
ParticipantDetails?: ParticipantDetails;
|
|
759
|
+
InitialSystemMessage?: ChatMessage;
|
|
760
|
+
RelatedContactId?: string;
|
|
761
|
+
SupportedMessagingContentTypes?: string[];
|
|
762
|
+
ClientToken?: string;
|
|
763
|
+
}
|
|
764
|
+
export interface StartOutboundChatContactResponse {
|
|
765
|
+
ContactId?: string;
|
|
766
|
+
}
|
|
749
767
|
export declare class DestinationNotAllowedException extends __BaseException {
|
|
750
768
|
readonly name: "DestinationNotAllowedException";
|
|
751
769
|
readonly $fault: "client";
|
|
@@ -783,6 +783,10 @@ import {
|
|
|
783
783
|
StartContactStreamingCommandInput,
|
|
784
784
|
StartContactStreamingCommandOutput,
|
|
785
785
|
} from "../commands/StartContactStreamingCommand";
|
|
786
|
+
import {
|
|
787
|
+
StartOutboundChatContactCommandInput,
|
|
788
|
+
StartOutboundChatContactCommandOutput,
|
|
789
|
+
} from "../commands/StartOutboundChatContactCommand";
|
|
786
790
|
import {
|
|
787
791
|
StartOutboundVoiceContactCommandInput,
|
|
788
792
|
StartOutboundVoiceContactCommandOutput,
|
|
@@ -1803,6 +1807,10 @@ export declare const se_StartContactStreamingCommand: (
|
|
|
1803
1807
|
input: StartContactStreamingCommandInput,
|
|
1804
1808
|
context: __SerdeContext
|
|
1805
1809
|
) => Promise<__HttpRequest>;
|
|
1810
|
+
export declare const se_StartOutboundChatContactCommand: (
|
|
1811
|
+
input: StartOutboundChatContactCommandInput,
|
|
1812
|
+
context: __SerdeContext
|
|
1813
|
+
) => Promise<__HttpRequest>;
|
|
1806
1814
|
export declare const se_StartOutboundVoiceContactCommand: (
|
|
1807
1815
|
input: StartOutboundVoiceContactCommandInput,
|
|
1808
1816
|
context: __SerdeContext
|
|
@@ -2823,6 +2831,10 @@ export declare const de_StartContactStreamingCommand: (
|
|
|
2823
2831
|
output: __HttpResponse,
|
|
2824
2832
|
context: __SerdeContext
|
|
2825
2833
|
) => Promise<StartContactStreamingCommandOutput>;
|
|
2834
|
+
export declare const de_StartOutboundChatContactCommand: (
|
|
2835
|
+
output: __HttpResponse,
|
|
2836
|
+
context: __SerdeContext
|
|
2837
|
+
) => Promise<StartOutboundChatContactCommandOutput>;
|
|
2826
2838
|
export declare const de_StartOutboundVoiceContactCommand: (
|
|
2827
2839
|
output: __HttpResponse,
|
|
2828
2840
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.662.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-connect",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.2.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.3.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.662.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.662.0",
|
|
25
|
+
"@aws-sdk/core": "3.662.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.662.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.662.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.662.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.662.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.662.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.662.0",
|
|
32
|
+
"@aws-sdk/types": "3.662.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.662.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.662.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.662.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.9",
|
|
37
|
+
"@smithy/core": "^2.4.7",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.9",
|
|
39
|
+
"@smithy/hash-node": "^3.0.7",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.7",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.9",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.4",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.22",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.7",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.7",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.8",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.4",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.4",
|
|
49
|
+
"@smithy/smithy-client": "^3.3.6",
|
|
50
|
+
"@smithy/types": "^3.5.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.7",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.22",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.22",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.3",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.7",
|
|
59
|
+
"@smithy/util-retry": "^3.0.7",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2",
|
|
62
62
|
"uuid": "^9.0.1"
|