@aws-sdk/client-connect 3.198.0 → 3.200.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/dist-cjs/Connect.js +15 -0
- package/dist-cjs/commands/DismissUserContactCommand.js +46 -0
- package/dist-cjs/commands/ListLambdaFunctionsCommand.js +2 -1
- package/dist-cjs/commands/ListLexBotsCommand.js +1 -2
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +11 -11
- package/dist-cjs/models/models_1.js +12 -4
- package/dist-cjs/protocols/Aws_restJson1.js +75 -6
- package/dist-es/Connect.js +15 -0
- package/dist-es/commands/DismissUserContactCommand.js +42 -0
- package/dist-es/commands/ListLambdaFunctionsCommand.js +2 -1
- package/dist-es/commands/ListLexBotsCommand.js +1 -2
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +6 -6
- package/dist-es/models/models_1.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +67 -0
- package/dist-types/Connect.d.ts +16 -5
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/ClaimPhoneNumberCommand.d.ts +1 -1
- package/dist-types/commands/DismissUserContactCommand.d.ts +40 -0
- package/dist-types/commands/ListLambdaFunctionsCommand.d.ts +2 -1
- package/dist-types/commands/ListLexBotsCommand.d.ts +1 -2
- package/dist-types/commands/ReleasePhoneNumberCommand.d.ts +2 -1
- package/dist-types/commands/UpdateTrafficDistributionCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +31 -40
- package/dist-types/models/models_1.d.ts +36 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -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/DismissUserContactCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListLambdaFunctionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListLexBotsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +12 -15
- package/dist-types/ts3.4/models/models_1.d.ts +15 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +29 -29
|
@@ -70,6 +70,12 @@ export class ContactNotFoundException extends __BaseException {
|
|
|
70
70
|
this.Message = opts.Message;
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
|
+
export const ListLambdaFunctionsResponseFilterSensitiveLog = (obj) => ({
|
|
74
|
+
...obj,
|
|
75
|
+
});
|
|
76
|
+
export const ListLexBotsRequestFilterSensitiveLog = (obj) => ({
|
|
77
|
+
...obj,
|
|
78
|
+
});
|
|
73
79
|
export const ListLexBotsResponseFilterSensitiveLog = (obj) => ({
|
|
74
80
|
...obj,
|
|
75
81
|
});
|
|
@@ -1422,6 +1422,28 @@ export const serializeAws_restJson1DisassociateSecurityKeyCommand = async (input
|
|
|
1422
1422
|
body,
|
|
1423
1423
|
});
|
|
1424
1424
|
};
|
|
1425
|
+
export const serializeAws_restJson1DismissUserContactCommand = async (input, context) => {
|
|
1426
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1427
|
+
const headers = {
|
|
1428
|
+
"content-type": "application/json",
|
|
1429
|
+
};
|
|
1430
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/users/{InstanceId}/{UserId}/contact";
|
|
1431
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "UserId", () => input.UserId, "{UserId}", false);
|
|
1432
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
1433
|
+
let body;
|
|
1434
|
+
body = JSON.stringify({
|
|
1435
|
+
...(input.ContactId != null && { ContactId: input.ContactId }),
|
|
1436
|
+
});
|
|
1437
|
+
return new __HttpRequest({
|
|
1438
|
+
protocol,
|
|
1439
|
+
hostname,
|
|
1440
|
+
port,
|
|
1441
|
+
method: "POST",
|
|
1442
|
+
headers,
|
|
1443
|
+
path: resolvedPath,
|
|
1444
|
+
body,
|
|
1445
|
+
});
|
|
1446
|
+
};
|
|
1425
1447
|
export const serializeAws_restJson1GetContactAttributesCommand = async (input, context) => {
|
|
1426
1448
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1427
1449
|
const headers = {};
|
|
@@ -6759,6 +6781,51 @@ const deserializeAws_restJson1DisassociateSecurityKeyCommandError = async (outpu
|
|
|
6759
6781
|
});
|
|
6760
6782
|
}
|
|
6761
6783
|
};
|
|
6784
|
+
export const deserializeAws_restJson1DismissUserContactCommand = async (output, context) => {
|
|
6785
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6786
|
+
return deserializeAws_restJson1DismissUserContactCommandError(output, context);
|
|
6787
|
+
}
|
|
6788
|
+
const contents = map({
|
|
6789
|
+
$metadata: deserializeMetadata(output),
|
|
6790
|
+
});
|
|
6791
|
+
await collectBody(output.body, context);
|
|
6792
|
+
return contents;
|
|
6793
|
+
};
|
|
6794
|
+
const deserializeAws_restJson1DismissUserContactCommandError = async (output, context) => {
|
|
6795
|
+
const parsedOutput = {
|
|
6796
|
+
...output,
|
|
6797
|
+
body: await parseErrorBody(output.body, context),
|
|
6798
|
+
};
|
|
6799
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
6800
|
+
switch (errorCode) {
|
|
6801
|
+
case "AccessDeniedException":
|
|
6802
|
+
case "com.amazonaws.connect#AccessDeniedException":
|
|
6803
|
+
throw await deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context);
|
|
6804
|
+
case "InternalServiceException":
|
|
6805
|
+
case "com.amazonaws.connect#InternalServiceException":
|
|
6806
|
+
throw await deserializeAws_restJson1InternalServiceExceptionResponse(parsedOutput, context);
|
|
6807
|
+
case "InvalidParameterException":
|
|
6808
|
+
case "com.amazonaws.connect#InvalidParameterException":
|
|
6809
|
+
throw await deserializeAws_restJson1InvalidParameterExceptionResponse(parsedOutput, context);
|
|
6810
|
+
case "InvalidRequestException":
|
|
6811
|
+
case "com.amazonaws.connect#InvalidRequestException":
|
|
6812
|
+
throw await deserializeAws_restJson1InvalidRequestExceptionResponse(parsedOutput, context);
|
|
6813
|
+
case "ResourceNotFoundException":
|
|
6814
|
+
case "com.amazonaws.connect#ResourceNotFoundException":
|
|
6815
|
+
throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
|
|
6816
|
+
case "ThrottlingException":
|
|
6817
|
+
case "com.amazonaws.connect#ThrottlingException":
|
|
6818
|
+
throw await deserializeAws_restJson1ThrottlingExceptionResponse(parsedOutput, context);
|
|
6819
|
+
default:
|
|
6820
|
+
const parsedBody = parsedOutput.body;
|
|
6821
|
+
throwDefaultError({
|
|
6822
|
+
output,
|
|
6823
|
+
parsedBody,
|
|
6824
|
+
exceptionCtor: __BaseException,
|
|
6825
|
+
errorCode,
|
|
6826
|
+
});
|
|
6827
|
+
}
|
|
6828
|
+
};
|
|
6762
6829
|
export const deserializeAws_restJson1GetContactAttributesCommand = async (output, context) => {
|
|
6763
6830
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6764
6831
|
return deserializeAws_restJson1GetContactAttributesCommandError(output, context);
|
package/dist-types/Connect.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ import { DisassociatePhoneNumberContactFlowCommandInput, DisassociatePhoneNumber
|
|
|
66
66
|
import { DisassociateQueueQuickConnectsCommandInput, DisassociateQueueQuickConnectsCommandOutput } from "./commands/DisassociateQueueQuickConnectsCommand";
|
|
67
67
|
import { DisassociateRoutingProfileQueuesCommandInput, DisassociateRoutingProfileQueuesCommandOutput } from "./commands/DisassociateRoutingProfileQueuesCommand";
|
|
68
68
|
import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutput } from "./commands/DisassociateSecurityKeyCommand";
|
|
69
|
+
import { DismissUserContactCommandInput, DismissUserContactCommandOutput } from "./commands/DismissUserContactCommand";
|
|
69
70
|
import { GetContactAttributesCommandInput, GetContactAttributesCommandOutput } from "./commands/GetContactAttributesCommand";
|
|
70
71
|
import { GetCurrentMetricDataCommandInput, GetCurrentMetricDataCommandOutput } from "./commands/GetCurrentMetricDataCommand";
|
|
71
72
|
import { GetCurrentUserDataCommandInput, GetCurrentUserDataCommandOutput } from "./commands/GetCurrentUserDataCommand";
|
|
@@ -267,7 +268,7 @@ export declare class Connect extends ConnectClient {
|
|
|
267
268
|
associateSecurityKey(args: AssociateSecurityKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateSecurityKeyCommandOutput) => void): void;
|
|
268
269
|
/**
|
|
269
270
|
* <p>Claims an available phone number to your Amazon Connect instance or traffic distribution
|
|
270
|
-
* group. You can
|
|
271
|
+
* group. You can call this API only in the same Amazon Web Services Region where the Amazon Connect instance or traffic distribution group was created.</p>
|
|
271
272
|
* <important>
|
|
272
273
|
* <p>You can call the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribePhoneNumber.html">DescribePhoneNumber</a> API
|
|
273
274
|
* to verify the status of a previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_ClaimPhoneNumber.html">ClaimPhoneNumber</a>
|
|
@@ -715,6 +716,15 @@ export declare class Connect extends ConnectClient {
|
|
|
715
716
|
disassociateSecurityKey(args: DisassociateSecurityKeyCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateSecurityKeyCommandOutput>;
|
|
716
717
|
disassociateSecurityKey(args: DisassociateSecurityKeyCommandInput, cb: (err: any, data?: DisassociateSecurityKeyCommandOutput) => void): void;
|
|
717
718
|
disassociateSecurityKey(args: DisassociateSecurityKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateSecurityKeyCommandOutput) => void): void;
|
|
719
|
+
/**
|
|
720
|
+
* <p>Dismisses contacts from an agent’s CCP and returns the agent to an available state, which
|
|
721
|
+
* allows the agent to receive a new routed contact. Contacts can only be dismissed if they are in a
|
|
722
|
+
* <code>MISSED</code>, <code>ERROR</code>, <code>ENDED</code>, or <code>REJECTED</code> state in the
|
|
723
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/about-contact-states.html">Agent Event Stream</a>.</p>
|
|
724
|
+
*/
|
|
725
|
+
dismissUserContact(args: DismissUserContactCommandInput, options?: __HttpHandlerOptions): Promise<DismissUserContactCommandOutput>;
|
|
726
|
+
dismissUserContact(args: DismissUserContactCommandInput, cb: (err: any, data?: DismissUserContactCommandOutput) => void): void;
|
|
727
|
+
dismissUserContact(args: DismissUserContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DismissUserContactCommandOutput) => void): void;
|
|
718
728
|
/**
|
|
719
729
|
* <p>Retrieves the contact attributes for the specified contact.</p>
|
|
720
730
|
*/
|
|
@@ -1035,7 +1045,8 @@ export declare class Connect extends ConnectClient {
|
|
|
1035
1045
|
* <p>Releases a phone number previously claimed to an Amazon Connect instance or traffic distribution group. You
|
|
1036
1046
|
* can call this API only in the Amazon Web Services Region where the number was claimed.</p>
|
|
1037
1047
|
* <important>
|
|
1038
|
-
* <p>To release phone numbers from a traffic distribution group, use the <code>ReleasePhoneNumber</code> API, not the
|
|
1048
|
+
* <p>To release phone numbers from a traffic distribution group, use the <code>ReleasePhoneNumber</code> API, not the
|
|
1049
|
+
* Amazon Connect console.</p>
|
|
1039
1050
|
* <p>After releasing a phone number, the phone number enters into a cooldown period of 30 days.
|
|
1040
1051
|
* It cannot be searched for or claimed again until the period has ended. If you accidentally
|
|
1041
1052
|
* release a phone number, contact Amazon Web Services Support.</p>
|
|
@@ -1513,10 +1524,10 @@ export declare class Connect extends ConnectClient {
|
|
|
1513
1524
|
updateTaskTemplate(args: UpdateTaskTemplateCommandInput, cb: (err: any, data?: UpdateTaskTemplateCommandOutput) => void): void;
|
|
1514
1525
|
updateTaskTemplate(args: UpdateTaskTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTaskTemplateCommandOutput) => void): void;
|
|
1515
1526
|
/**
|
|
1516
|
-
* <p>Updates the traffic distribution for a given traffic distribution group.
|
|
1517
|
-
*
|
|
1527
|
+
* <p>Updates the traffic distribution for a given traffic distribution group. </p>
|
|
1518
1528
|
*
|
|
1519
|
-
*
|
|
1529
|
+
* <p>For more information about updating a traffic distribution group, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/update-telephony-traffic-distribution.html">Update telephony
|
|
1530
|
+
* traffic distribution across Amazon Web Services Regions
|
|
1520
1531
|
* </a> in the <i>Amazon Connect Administrator Guide</i>. </p>
|
|
1521
1532
|
*/
|
|
1522
1533
|
updateTrafficDistribution(args: UpdateTrafficDistributionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrafficDistributionCommandOutput>;
|
|
@@ -74,6 +74,7 @@ import { DisassociatePhoneNumberContactFlowCommandInput, DisassociatePhoneNumber
|
|
|
74
74
|
import { DisassociateQueueQuickConnectsCommandInput, DisassociateQueueQuickConnectsCommandOutput } from "./commands/DisassociateQueueQuickConnectsCommand";
|
|
75
75
|
import { DisassociateRoutingProfileQueuesCommandInput, DisassociateRoutingProfileQueuesCommandOutput } from "./commands/DisassociateRoutingProfileQueuesCommand";
|
|
76
76
|
import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutput } from "./commands/DisassociateSecurityKeyCommand";
|
|
77
|
+
import { DismissUserContactCommandInput, DismissUserContactCommandOutput } from "./commands/DismissUserContactCommand";
|
|
77
78
|
import { GetContactAttributesCommandInput, GetContactAttributesCommandOutput } from "./commands/GetContactAttributesCommand";
|
|
78
79
|
import { GetCurrentMetricDataCommandInput, GetCurrentMetricDataCommandOutput } from "./commands/GetCurrentMetricDataCommand";
|
|
79
80
|
import { GetCurrentUserDataCommandInput, GetCurrentUserDataCommandOutput } from "./commands/GetCurrentUserDataCommand";
|
|
@@ -169,8 +170,8 @@ import { UpdateUserPhoneConfigCommandInput, UpdateUserPhoneConfigCommandOutput }
|
|
|
169
170
|
import { UpdateUserRoutingProfileCommandInput, UpdateUserRoutingProfileCommandOutput } from "./commands/UpdateUserRoutingProfileCommand";
|
|
170
171
|
import { UpdateUserSecurityProfilesCommandInput, UpdateUserSecurityProfilesCommandOutput } from "./commands/UpdateUserSecurityProfilesCommand";
|
|
171
172
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
172
|
-
export declare type ServiceInputTypes = AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | ClaimPhoneNumberCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateVocabularyCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeleteQuickConnectCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeContactCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeHoursOfOperationCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeSecurityProfileCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeVocabularyCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetMetricDataCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ListAgentStatusesCommandInput | ListApprovedOriginsCommandInput | ListBotsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUsersCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactRecordingCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchQueuesCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | StartChatContactCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SuspendContactRecordingCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactScheduleCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdatePhoneNumberCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput;
|
|
173
|
-
export declare type ServiceOutputTypes = AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | ClaimPhoneNumberCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateVocabularyCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeleteQuickConnectCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeContactCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeVocabularyCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetMetricDataCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ListAgentStatusesCommandOutput | ListApprovedOriginsCommandOutput | ListBotsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUsersCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactRecordingCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchQueuesCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | StartChatContactCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SuspendContactRecordingCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactScheduleCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput;
|
|
173
|
+
export declare type ServiceInputTypes = AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | ClaimPhoneNumberCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateVocabularyCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeleteQuickConnectCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeContactCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeHoursOfOperationCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeSecurityProfileCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeVocabularyCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DismissUserContactCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetMetricDataCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ListAgentStatusesCommandInput | ListApprovedOriginsCommandInput | ListBotsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUsersCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactRecordingCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchQueuesCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | StartChatContactCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SuspendContactRecordingCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactScheduleCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdatePhoneNumberCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput;
|
|
174
|
+
export declare type ServiceOutputTypes = AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | ClaimPhoneNumberCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateVocabularyCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeleteQuickConnectCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeContactCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeVocabularyCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DismissUserContactCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetMetricDataCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ListAgentStatusesCommandOutput | ListApprovedOriginsCommandOutput | ListBotsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUsersCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactRecordingCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchQueuesCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | StartChatContactCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SuspendContactRecordingCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactScheduleCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput;
|
|
174
175
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
175
176
|
/**
|
|
176
177
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -9,7 +9,7 @@ export interface ClaimPhoneNumberCommandOutput extends ClaimPhoneNumberResponse,
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* <p>Claims an available phone number to your Amazon Connect instance or traffic distribution
|
|
12
|
-
* group. You can
|
|
12
|
+
* group. You can call this API only in the same Amazon Web Services Region where the Amazon Connect instance or traffic distribution group was created.</p>
|
|
13
13
|
* <important>
|
|
14
14
|
* <p>You can call the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribePhoneNumber.html">DescribePhoneNumber</a> API
|
|
15
15
|
* to verify the status of a previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_ClaimPhoneNumber.html">ClaimPhoneNumber</a>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
5
|
+
import { DismissUserContactRequest, DismissUserContactResponse } from "../models/models_0";
|
|
6
|
+
export interface DismissUserContactCommandInput extends DismissUserContactRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface DismissUserContactCommandOutput extends DismissUserContactResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Dismisses contacts from an agent’s CCP and returns the agent to an available state, which
|
|
12
|
+
* allows the agent to receive a new routed contact. Contacts can only be dismissed if they are in a
|
|
13
|
+
* <code>MISSED</code>, <code>ERROR</code>, <code>ENDED</code>, or <code>REJECTED</code> state in the
|
|
14
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/about-contact-states.html">Agent Event Stream</a>.</p>
|
|
15
|
+
* @example
|
|
16
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
17
|
+
* ```javascript
|
|
18
|
+
* import { ConnectClient, DismissUserContactCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
19
|
+
* // const { ConnectClient, DismissUserContactCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
20
|
+
* const client = new ConnectClient(config);
|
|
21
|
+
* const command = new DismissUserContactCommand(input);
|
|
22
|
+
* const response = await client.send(command);
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @see {@link DismissUserContactCommandInput} for command's `input` shape.
|
|
26
|
+
* @see {@link DismissUserContactCommandOutput} for command's `response` shape.
|
|
27
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
export declare class DismissUserContactCommand extends $Command<DismissUserContactCommandInput, DismissUserContactCommandOutput, ConnectClientResolvedConfig> {
|
|
31
|
+
readonly input: DismissUserContactCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
|
+
constructor(input: DismissUserContactCommandInput);
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DismissUserContactCommandInput, DismissUserContactCommandOutput>;
|
|
38
|
+
private serialize;
|
|
39
|
+
private deserialize;
|
|
40
|
+
}
|
|
@@ -2,7 +2,8 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
5
|
-
import { ListLambdaFunctionsRequest
|
|
5
|
+
import { ListLambdaFunctionsRequest } from "../models/models_0";
|
|
6
|
+
import { ListLambdaFunctionsResponse } from "../models/models_1";
|
|
6
7
|
export interface ListLambdaFunctionsCommandInput extends ListLambdaFunctionsRequest {
|
|
7
8
|
}
|
|
8
9
|
export interface ListLambdaFunctionsCommandOutput extends ListLambdaFunctionsResponse, __MetadataBearer {
|
|
@@ -2,8 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
5
|
-
import { ListLexBotsRequest } from "../models/
|
|
6
|
-
import { ListLexBotsResponse } from "../models/models_1";
|
|
5
|
+
import { ListLexBotsRequest, ListLexBotsResponse } from "../models/models_1";
|
|
7
6
|
export interface ListLexBotsCommandInput extends ListLexBotsRequest {
|
|
8
7
|
}
|
|
9
8
|
export interface ListLexBotsCommandOutput extends ListLexBotsResponse, __MetadataBearer {
|
|
@@ -11,7 +11,8 @@ export interface ReleasePhoneNumberCommandOutput extends __MetadataBearer {
|
|
|
11
11
|
* <p>Releases a phone number previously claimed to an Amazon Connect instance or traffic distribution group. You
|
|
12
12
|
* can call this API only in the Amazon Web Services Region where the number was claimed.</p>
|
|
13
13
|
* <important>
|
|
14
|
-
* <p>To release phone numbers from a traffic distribution group, use the <code>ReleasePhoneNumber</code> API, not the
|
|
14
|
+
* <p>To release phone numbers from a traffic distribution group, use the <code>ReleasePhoneNumber</code> API, not the
|
|
15
|
+
* Amazon Connect console.</p>
|
|
15
16
|
* <p>After releasing a phone number, the phone number enters into a cooldown period of 30 days.
|
|
16
17
|
* It cannot be searched for or claimed again until the period has ended. If you accidentally
|
|
17
18
|
* release a phone number, contact Amazon Web Services Support.</p>
|
|
@@ -8,10 +8,10 @@ export interface UpdateTrafficDistributionCommandInput extends UpdateTrafficDist
|
|
|
8
8
|
export interface UpdateTrafficDistributionCommandOutput extends UpdateTrafficDistributionResponse, __MetadataBearer {
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* <p>Updates the traffic distribution for a given traffic distribution group.
|
|
11
|
+
* <p>Updates the traffic distribution for a given traffic distribution group. </p>
|
|
12
12
|
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
13
|
+
* <p>For more information about updating a traffic distribution group, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/update-telephony-traffic-distribution.html">Update telephony
|
|
14
|
+
* traffic distribution across Amazon Web Services Regions
|
|
15
15
|
* </a> in the <i>Amazon Connect Administrator Guide</i>. </p>
|
|
16
16
|
* @example
|
|
17
17
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -65,6 +65,7 @@ export * from "./DisassociatePhoneNumberContactFlowCommand";
|
|
|
65
65
|
export * from "./DisassociateQueueQuickConnectsCommand";
|
|
66
66
|
export * from "./DisassociateRoutingProfileQueuesCommand";
|
|
67
67
|
export * from "./DisassociateSecurityKeyCommand";
|
|
68
|
+
export * from "./DismissUserContactCommand";
|
|
68
69
|
export * from "./GetContactAttributesCommand";
|
|
69
70
|
export * from "./GetCurrentMetricDataCommand";
|
|
70
71
|
export * from "./GetCurrentUserDataCommand";
|
|
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
|
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
14
|
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
-
Region
|
|
15
|
+
Region?: string;
|
|
16
16
|
UseDualStack?: boolean;
|
|
17
17
|
UseFIPS?: boolean;
|
|
18
18
|
Endpoint?: string;
|
|
@@ -1575,9 +1575,9 @@ export interface UserIdentityInfo {
|
|
|
1575
1575
|
*/
|
|
1576
1576
|
Email?: string;
|
|
1577
1577
|
/**
|
|
1578
|
-
* <p>The user's secondary email address. If you provide a secondary email, the user receives
|
|
1579
|
-
* notifications - other than password reset notifications - to this email address instead of
|
|
1580
|
-
* their primary email address.</p>
|
|
1578
|
+
* <p>The user's secondary email address. If you provide a secondary email, the user receives
|
|
1579
|
+
* email notifications - other than password reset notifications - to this email address instead of
|
|
1580
|
+
* to their primary email address.</p>
|
|
1581
1581
|
* <p>Pattern: <code>(?=^.{0,265}$)[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,63}</code>
|
|
1582
1582
|
* </p>
|
|
1583
1583
|
*/
|
|
@@ -2720,7 +2720,8 @@ export interface ClaimedPhoneNumberSummary {
|
|
|
2720
2720
|
* </li>
|
|
2721
2721
|
* </ul>
|
|
2722
2722
|
* <note>
|
|
2723
|
-
* <p>You will not be billed for the phone number during the 1-day period if number claiming
|
|
2723
|
+
* <p>You will not be billed for the phone number during the 1-day period if number claiming
|
|
2724
|
+
* fails. </p>
|
|
2724
2725
|
* </note>
|
|
2725
2726
|
*/
|
|
2726
2727
|
PhoneNumberStatus?: PhoneNumberStatus;
|
|
@@ -3006,7 +3007,7 @@ export interface TrafficDistributionGroup {
|
|
|
3006
3007
|
* <li>
|
|
3007
3008
|
* <p>
|
|
3008
3009
|
* <code>PENDING_DELETION</code> means the previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteTrafficDistributionGroup.html">DeleteTrafficDistributionGroup</a> operation is still in progress and has not yet
|
|
3009
|
-
*
|
|
3010
|
+
* completed.</p>
|
|
3010
3011
|
* </li>
|
|
3011
3012
|
* <li>
|
|
3012
3013
|
* <p>
|
|
@@ -3015,7 +3016,7 @@ export interface TrafficDistributionGroup {
|
|
|
3015
3016
|
* <li>
|
|
3016
3017
|
* <p>
|
|
3017
3018
|
* <code>UPDATE_IN_PROGRESS</code> means the previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdateTrafficDistributionGroup.html">UpdateTrafficDistributionGroup</a> operation is still in progress and has not yet
|
|
3018
|
-
*
|
|
3019
|
+
* completed.</p>
|
|
3019
3020
|
* </li>
|
|
3020
3021
|
* </ul>
|
|
3021
3022
|
*/
|
|
@@ -3409,6 +3410,22 @@ export interface DisassociateSecurityKeyRequest {
|
|
|
3409
3410
|
*/
|
|
3410
3411
|
AssociationId: string | undefined;
|
|
3411
3412
|
}
|
|
3413
|
+
export interface DismissUserContactRequest {
|
|
3414
|
+
/**
|
|
3415
|
+
* <p>The identifier of the user account.</p>
|
|
3416
|
+
*/
|
|
3417
|
+
UserId: string | undefined;
|
|
3418
|
+
/**
|
|
3419
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
3420
|
+
*/
|
|
3421
|
+
InstanceId: string | undefined;
|
|
3422
|
+
/**
|
|
3423
|
+
* <p>The identifier of the contact.</p>
|
|
3424
|
+
*/
|
|
3425
|
+
ContactId: string | undefined;
|
|
3426
|
+
}
|
|
3427
|
+
export interface DismissUserContactResponse {
|
|
3428
|
+
}
|
|
3412
3429
|
export interface GetContactAttributesRequest {
|
|
3413
3430
|
/**
|
|
3414
3431
|
* <p>The identifier of the Amazon Connect instance.</p>
|
|
@@ -5023,32 +5040,6 @@ export interface ListLambdaFunctionsRequest {
|
|
|
5023
5040
|
*/
|
|
5024
5041
|
MaxResults?: number;
|
|
5025
5042
|
}
|
|
5026
|
-
export interface ListLambdaFunctionsResponse {
|
|
5027
|
-
/**
|
|
5028
|
-
* <p>The Lambdafunction ARNs associated with the specified instance.</p>
|
|
5029
|
-
*/
|
|
5030
|
-
LambdaFunctions?: string[];
|
|
5031
|
-
/**
|
|
5032
|
-
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
5033
|
-
*/
|
|
5034
|
-
NextToken?: string;
|
|
5035
|
-
}
|
|
5036
|
-
export interface ListLexBotsRequest {
|
|
5037
|
-
/**
|
|
5038
|
-
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
5039
|
-
*/
|
|
5040
|
-
InstanceId: string | undefined;
|
|
5041
|
-
/**
|
|
5042
|
-
* <p>The token for the next set of results. Use the value returned in the previous
|
|
5043
|
-
* response in the next request to retrieve the next set of results.</p>
|
|
5044
|
-
*/
|
|
5045
|
-
NextToken?: string;
|
|
5046
|
-
/**
|
|
5047
|
-
* <p>The maximum number of results to return per page. If no value is specified, the default is 10.
|
|
5048
|
-
* </p>
|
|
5049
|
-
*/
|
|
5050
|
-
MaxResults?: number;
|
|
5051
|
-
}
|
|
5052
5043
|
/**
|
|
5053
5044
|
* @internal
|
|
5054
5045
|
*/
|
|
@@ -5717,6 +5708,14 @@ export declare const DisassociateRoutingProfileQueuesRequestFilterSensitiveLog:
|
|
|
5717
5708
|
* @internal
|
|
5718
5709
|
*/
|
|
5719
5710
|
export declare const DisassociateSecurityKeyRequestFilterSensitiveLog: (obj: DisassociateSecurityKeyRequest) => any;
|
|
5711
|
+
/**
|
|
5712
|
+
* @internal
|
|
5713
|
+
*/
|
|
5714
|
+
export declare const DismissUserContactRequestFilterSensitiveLog: (obj: DismissUserContactRequest) => any;
|
|
5715
|
+
/**
|
|
5716
|
+
* @internal
|
|
5717
|
+
*/
|
|
5718
|
+
export declare const DismissUserContactResponseFilterSensitiveLog: (obj: DismissUserContactResponse) => any;
|
|
5720
5719
|
/**
|
|
5721
5720
|
* @internal
|
|
5722
5721
|
*/
|
|
@@ -6005,11 +6004,3 @@ export declare const ListIntegrationAssociationsResponseFilterSensitiveLog: (obj
|
|
|
6005
6004
|
* @internal
|
|
6006
6005
|
*/
|
|
6007
6006
|
export declare const ListLambdaFunctionsRequestFilterSensitiveLog: (obj: ListLambdaFunctionsRequest) => any;
|
|
6008
|
-
/**
|
|
6009
|
-
* @internal
|
|
6010
|
-
*/
|
|
6011
|
-
export declare const ListLambdaFunctionsResponseFilterSensitiveLog: (obj: ListLambdaFunctionsResponse) => any;
|
|
6012
|
-
/**
|
|
6013
|
-
* @internal
|
|
6014
|
-
*/
|
|
6015
|
-
export declare const ListLexBotsRequestFilterSensitiveLog: (obj: ListLexBotsRequest) => any;
|
|
@@ -1,6 +1,32 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
3
|
import { AgentStatusState, Channel, ContactFlowModuleState, ContactFlowState, HierarchyGroupSummary, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, LexBot, MediaConcurrency, OutboundCallerConfig, PhoneNumberCountryCode, PhoneNumberType, Queue, QueueStatus, QuickConnectConfig, QuickConnectType, ReferenceType, RoutingProfile, RoutingProfileQueueConfig, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, TelephonyConfig, TrafficDistributionGroupStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
export interface ListLambdaFunctionsResponse {
|
|
5
|
+
/**
|
|
6
|
+
* <p>The Lambdafunction ARNs associated with the specified instance.</p>
|
|
7
|
+
*/
|
|
8
|
+
LambdaFunctions?: string[];
|
|
9
|
+
/**
|
|
10
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
11
|
+
*/
|
|
12
|
+
NextToken?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface ListLexBotsRequest {
|
|
15
|
+
/**
|
|
16
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>
|
|
17
|
+
*/
|
|
18
|
+
InstanceId: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
21
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
22
|
+
*/
|
|
23
|
+
NextToken?: string;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The maximum number of results to return per page. If no value is specified, the default is 10.
|
|
26
|
+
* </p>
|
|
27
|
+
*/
|
|
28
|
+
MaxResults?: number;
|
|
29
|
+
}
|
|
4
30
|
export interface ListLexBotsResponse {
|
|
5
31
|
/**
|
|
6
32
|
* <p>The names and Amazon Web Services Regions of the Amazon Lex bots associated with the specified
|
|
@@ -683,7 +709,7 @@ export interface TrafficDistributionGroupSummary {
|
|
|
683
709
|
* <li>
|
|
684
710
|
* <p>
|
|
685
711
|
* <code>PENDING_DELETION</code> means the previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteTrafficDistributionGroup.html">DeleteTrafficDistributionGroup</a> operation is still in progress and has not yet
|
|
686
|
-
*
|
|
712
|
+
* completed.</p>
|
|
687
713
|
* </li>
|
|
688
714
|
* <li>
|
|
689
715
|
* <p>
|
|
@@ -692,7 +718,7 @@ export interface TrafficDistributionGroupSummary {
|
|
|
692
718
|
* <li>
|
|
693
719
|
* <p>
|
|
694
720
|
* <code>UPDATE_IN_PROGRESS</code> means the previous <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdateTrafficDistributionGroup.html">UpdateTrafficDistributionGroup</a> operation is still in progress and has not yet
|
|
695
|
-
*
|
|
721
|
+
* completed.</p>
|
|
696
722
|
* </li>
|
|
697
723
|
* </ul>
|
|
698
724
|
*/
|
|
@@ -2743,6 +2769,14 @@ export interface SearchUsersRequest {
|
|
|
2743
2769
|
*/
|
|
2744
2770
|
SearchCriteria?: UserSearchCriteria;
|
|
2745
2771
|
}
|
|
2772
|
+
/**
|
|
2773
|
+
* @internal
|
|
2774
|
+
*/
|
|
2775
|
+
export declare const ListLambdaFunctionsResponseFilterSensitiveLog: (obj: ListLambdaFunctionsResponse) => any;
|
|
2776
|
+
/**
|
|
2777
|
+
* @internal
|
|
2778
|
+
*/
|
|
2779
|
+
export declare const ListLexBotsRequestFilterSensitiveLog: (obj: ListLexBotsRequest) => any;
|
|
2746
2780
|
/**
|
|
2747
2781
|
* @internal
|
|
2748
2782
|
*/
|
|
@@ -67,6 +67,7 @@ import { DisassociatePhoneNumberContactFlowCommandInput, DisassociatePhoneNumber
|
|
|
67
67
|
import { DisassociateQueueQuickConnectsCommandInput, DisassociateQueueQuickConnectsCommandOutput } from "../commands/DisassociateQueueQuickConnectsCommand";
|
|
68
68
|
import { DisassociateRoutingProfileQueuesCommandInput, DisassociateRoutingProfileQueuesCommandOutput } from "../commands/DisassociateRoutingProfileQueuesCommand";
|
|
69
69
|
import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutput } from "../commands/DisassociateSecurityKeyCommand";
|
|
70
|
+
import { DismissUserContactCommandInput, DismissUserContactCommandOutput } from "../commands/DismissUserContactCommand";
|
|
70
71
|
import { GetContactAttributesCommandInput, GetContactAttributesCommandOutput } from "../commands/GetContactAttributesCommand";
|
|
71
72
|
import { GetCurrentMetricDataCommandInput, GetCurrentMetricDataCommandOutput } from "../commands/GetCurrentMetricDataCommand";
|
|
72
73
|
import { GetCurrentUserDataCommandInput, GetCurrentUserDataCommandOutput } from "../commands/GetCurrentUserDataCommand";
|
|
@@ -228,6 +229,7 @@ export declare const serializeAws_restJson1DisassociatePhoneNumberContactFlowCom
|
|
|
228
229
|
export declare const serializeAws_restJson1DisassociateQueueQuickConnectsCommand: (input: DisassociateQueueQuickConnectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
229
230
|
export declare const serializeAws_restJson1DisassociateRoutingProfileQueuesCommand: (input: DisassociateRoutingProfileQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
230
231
|
export declare const serializeAws_restJson1DisassociateSecurityKeyCommand: (input: DisassociateSecurityKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
232
|
+
export declare const serializeAws_restJson1DismissUserContactCommand: (input: DismissUserContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
231
233
|
export declare const serializeAws_restJson1GetContactAttributesCommand: (input: GetContactAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
232
234
|
export declare const serializeAws_restJson1GetCurrentMetricDataCommand: (input: GetCurrentMetricDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
233
235
|
export declare const serializeAws_restJson1GetCurrentUserDataCommand: (input: GetCurrentUserDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -389,6 +391,7 @@ export declare const deserializeAws_restJson1DisassociatePhoneNumberContactFlowC
|
|
|
389
391
|
export declare const deserializeAws_restJson1DisassociateQueueQuickConnectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateQueueQuickConnectsCommandOutput>;
|
|
390
392
|
export declare const deserializeAws_restJson1DisassociateRoutingProfileQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateRoutingProfileQueuesCommandOutput>;
|
|
391
393
|
export declare const deserializeAws_restJson1DisassociateSecurityKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateSecurityKeyCommandOutput>;
|
|
394
|
+
export declare const deserializeAws_restJson1DismissUserContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DismissUserContactCommandOutput>;
|
|
392
395
|
export declare const deserializeAws_restJson1GetContactAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContactAttributesCommandOutput>;
|
|
393
396
|
export declare const deserializeAws_restJson1GetCurrentMetricDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCurrentMetricDataCommandOutput>;
|
|
394
397
|
export declare const deserializeAws_restJson1GetCurrentUserDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCurrentUserDataCommandOutput>;
|
|
@@ -267,6 +267,10 @@ import {
|
|
|
267
267
|
DisassociateSecurityKeyCommandInput,
|
|
268
268
|
DisassociateSecurityKeyCommandOutput,
|
|
269
269
|
} from "./commands/DisassociateSecurityKeyCommand";
|
|
270
|
+
import {
|
|
271
|
+
DismissUserContactCommandInput,
|
|
272
|
+
DismissUserContactCommandOutput,
|
|
273
|
+
} from "./commands/DismissUserContactCommand";
|
|
270
274
|
import {
|
|
271
275
|
GetContactAttributesCommandInput,
|
|
272
276
|
GetContactAttributesCommandOutput,
|
|
@@ -1528,6 +1532,19 @@ export declare class Connect extends ConnectClient {
|
|
|
1528
1532
|
options: __HttpHandlerOptions,
|
|
1529
1533
|
cb: (err: any, data?: DisassociateSecurityKeyCommandOutput) => void
|
|
1530
1534
|
): void;
|
|
1535
|
+
dismissUserContact(
|
|
1536
|
+
args: DismissUserContactCommandInput,
|
|
1537
|
+
options?: __HttpHandlerOptions
|
|
1538
|
+
): Promise<DismissUserContactCommandOutput>;
|
|
1539
|
+
dismissUserContact(
|
|
1540
|
+
args: DismissUserContactCommandInput,
|
|
1541
|
+
cb: (err: any, data?: DismissUserContactCommandOutput) => void
|
|
1542
|
+
): void;
|
|
1543
|
+
dismissUserContact(
|
|
1544
|
+
args: DismissUserContactCommandInput,
|
|
1545
|
+
options: __HttpHandlerOptions,
|
|
1546
|
+
cb: (err: any, data?: DismissUserContactCommandOutput) => void
|
|
1547
|
+
): void;
|
|
1531
1548
|
getContactAttributes(
|
|
1532
1549
|
args: GetContactAttributesCommandInput,
|
|
1533
1550
|
options?: __HttpHandlerOptions
|
|
@@ -311,6 +311,10 @@ import {
|
|
|
311
311
|
DisassociateSecurityKeyCommandInput,
|
|
312
312
|
DisassociateSecurityKeyCommandOutput,
|
|
313
313
|
} from "./commands/DisassociateSecurityKeyCommand";
|
|
314
|
+
import {
|
|
315
|
+
DismissUserContactCommandInput,
|
|
316
|
+
DismissUserContactCommandOutput,
|
|
317
|
+
} from "./commands/DismissUserContactCommand";
|
|
314
318
|
import {
|
|
315
319
|
GetContactAttributesCommandInput,
|
|
316
320
|
GetContactAttributesCommandOutput,
|
|
@@ -760,6 +764,7 @@ export declare type ServiceInputTypes =
|
|
|
760
764
|
| DisassociateQueueQuickConnectsCommandInput
|
|
761
765
|
| DisassociateRoutingProfileQueuesCommandInput
|
|
762
766
|
| DisassociateSecurityKeyCommandInput
|
|
767
|
+
| DismissUserContactCommandInput
|
|
763
768
|
| GetContactAttributesCommandInput
|
|
764
769
|
| GetCurrentMetricDataCommandInput
|
|
765
770
|
| GetCurrentUserDataCommandInput
|
|
@@ -922,6 +927,7 @@ export declare type ServiceOutputTypes =
|
|
|
922
927
|
| DisassociateQueueQuickConnectsCommandOutput
|
|
923
928
|
| DisassociateRoutingProfileQueuesCommandOutput
|
|
924
929
|
| DisassociateSecurityKeyCommandOutput
|
|
930
|
+
| DismissUserContactCommandOutput
|
|
925
931
|
| GetContactAttributesCommandOutput
|
|
926
932
|
| GetCurrentMetricDataCommandOutput
|
|
927
933
|
| GetCurrentUserDataCommandOutput
|