@aws-sdk/client-connect 3.986.0 → 3.988.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 +7 -0
- package/dist-cjs/index.js +400 -12758
- package/dist-cjs/models/ConnectServiceException.js +12 -0
- package/dist-cjs/models/errors.js +434 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +10615 -0
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/UpdateUserConfigCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +11 -6
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +296 -218
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/CreateUserCommand.d.ts +64 -1
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserCommand.d.ts +38 -1
- package/dist-types/commands/ListAgentStatusesCommand.d.ts +1 -1
- package/dist-types/commands/ListAnalyticsDataAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListAnalyticsDataLakeDataSetsCommand.d.ts +1 -2
- package/dist-types/commands/SearchUsersCommand.d.ts +38 -1
- package/dist-types/commands/SearchWorkspaceAssociationsCommand.d.ts +1 -2
- package/dist-types/commands/SearchWorkspacesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateUserConfigCommand.d.ts +131 -0
- package/dist-types/commands/UpdateUserPhoneConfigCommand.d.ts +4 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +27 -14
- package/dist-types/models/models_0.d.ts +138 -115
- package/dist-types/models/models_1.d.ts +138 -124
- package/dist-types/models/models_2.d.ts +150 -166
- package/dist-types/models/models_3.d.ts +206 -3
- package/dist-types/schemas/schemas_0.d.ts +43 -28
- 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/CreateWorkspaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAgentStatusesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAnalyticsDataAssociationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAnalyticsDataLakeDataSetsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchWorkspaceAssociationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchWorkspacesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateUserConfigCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +14 -7
- package/dist-types/ts3.4/models/models_0.d.ts +34 -30
- package/dist-types/ts3.4/models/models_1.d.ts +40 -33
- package/dist-types/ts3.4/models/models_2.d.ts +42 -36
- package/dist-types/ts3.4/models/models_3.d.ts +50 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +38 -28
- package/package.json +13 -13
package/dist-types/Connect.d.ts
CHANGED
|
@@ -340,6 +340,7 @@ import { UpdateSecurityProfileCommandInput, UpdateSecurityProfileCommandOutput }
|
|
|
340
340
|
import { UpdateTaskTemplateCommandInput, UpdateTaskTemplateCommandOutput } from "./commands/UpdateTaskTemplateCommand";
|
|
341
341
|
import { UpdateTestCaseCommandInput, UpdateTestCaseCommandOutput } from "./commands/UpdateTestCaseCommand";
|
|
342
342
|
import { UpdateTrafficDistributionCommandInput, UpdateTrafficDistributionCommandOutput } from "./commands/UpdateTrafficDistributionCommand";
|
|
343
|
+
import { UpdateUserConfigCommandInput, UpdateUserConfigCommandOutput } from "./commands/UpdateUserConfigCommand";
|
|
343
344
|
import { UpdateUserHierarchyCommandInput, UpdateUserHierarchyCommandOutput } from "./commands/UpdateUserHierarchyCommand";
|
|
344
345
|
import { UpdateUserHierarchyGroupNameCommandInput, UpdateUserHierarchyGroupNameCommandOutput } from "./commands/UpdateUserHierarchyGroupNameCommand";
|
|
345
346
|
import { UpdateUserHierarchyStructureCommandInput, UpdateUserHierarchyStructureCommandOutput } from "./commands/UpdateUserHierarchyStructureCommand";
|
|
@@ -2407,6 +2408,12 @@ export interface Connect {
|
|
|
2407
2408
|
updateTrafficDistribution(args: UpdateTrafficDistributionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrafficDistributionCommandOutput>;
|
|
2408
2409
|
updateTrafficDistribution(args: UpdateTrafficDistributionCommandInput, cb: (err: any, data?: UpdateTrafficDistributionCommandOutput) => void): void;
|
|
2409
2410
|
updateTrafficDistribution(args: UpdateTrafficDistributionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrafficDistributionCommandOutput) => void): void;
|
|
2411
|
+
/**
|
|
2412
|
+
* @see {@link UpdateUserConfigCommand}
|
|
2413
|
+
*/
|
|
2414
|
+
updateUserConfig(args: UpdateUserConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserConfigCommandOutput>;
|
|
2415
|
+
updateUserConfig(args: UpdateUserConfigCommandInput, cb: (err: any, data?: UpdateUserConfigCommandOutput) => void): void;
|
|
2416
|
+
updateUserConfig(args: UpdateUserConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserConfigCommandOutput) => void): void;
|
|
2410
2417
|
/**
|
|
2411
2418
|
* @see {@link UpdateUserHierarchyCommand}
|
|
2412
2419
|
*/
|
|
@@ -348,6 +348,7 @@ import { UpdateSecurityProfileCommandInput, UpdateSecurityProfileCommandOutput }
|
|
|
348
348
|
import { UpdateTaskTemplateCommandInput, UpdateTaskTemplateCommandOutput } from "./commands/UpdateTaskTemplateCommand";
|
|
349
349
|
import { UpdateTestCaseCommandInput, UpdateTestCaseCommandOutput } from "./commands/UpdateTestCaseCommand";
|
|
350
350
|
import { UpdateTrafficDistributionCommandInput, UpdateTrafficDistributionCommandOutput } from "./commands/UpdateTrafficDistributionCommand";
|
|
351
|
+
import { UpdateUserConfigCommandInput, UpdateUserConfigCommandOutput } from "./commands/UpdateUserConfigCommand";
|
|
351
352
|
import { UpdateUserHierarchyCommandInput, UpdateUserHierarchyCommandOutput } from "./commands/UpdateUserHierarchyCommand";
|
|
352
353
|
import { UpdateUserHierarchyGroupNameCommandInput, UpdateUserHierarchyGroupNameCommandOutput } from "./commands/UpdateUserHierarchyGroupNameCommand";
|
|
353
354
|
import { UpdateUserHierarchyStructureCommandInput, UpdateUserHierarchyStructureCommandOutput } from "./commands/UpdateUserHierarchyStructureCommand";
|
|
@@ -368,11 +369,11 @@ export { __Client };
|
|
|
368
369
|
/**
|
|
369
370
|
* @public
|
|
370
371
|
*/
|
|
371
|
-
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateContactWithUserCommandInput | AssociateDefaultVocabularyCommandInput | AssociateEmailAddressAliasCommandInput | AssociateFlowCommandInput | AssociateHoursOfOperationsCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateSecurityProfilesCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | AssociateWorkspaceCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchCreateDataTableValueCommandInput | BatchDeleteDataTableValueCommandInput | BatchDescribeDataTableValueCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetAttachedFileMetadataCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | BatchUpdateDataTableValueCommandInput | ClaimPhoneNumberCommandInput | CompleteAttachedFileUploadCommandInput | CreateAgentStatusCommandInput | CreateContactCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleAliasCommandInput | CreateContactFlowModuleCommandInput | CreateContactFlowModuleVersionCommandInput | CreateContactFlowVersionCommandInput | CreateDataTableAttributeCommandInput | CreateDataTableCommandInput | CreateEmailAddressCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateHoursOfOperationOverrideCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreatePushNotificationRegistrationCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTestCaseCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | CreateWorkspaceCommandInput | CreateWorkspacePageCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleAliasCommandInput | DeleteContactFlowModuleCommandInput | DeleteContactFlowModuleVersionCommandInput | DeleteContactFlowVersionCommandInput | DeleteDataTableAttributeCommandInput | DeleteDataTableCommandInput | DeleteEmailAddressCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteHoursOfOperationOverrideCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeletePushNotificationRegistrationCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTestCaseCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DeleteWorkspaceCommandInput | DeleteWorkspaceMediaCommandInput | DeleteWorkspacePageCommandInput | DescribeAgentStatusCommandInput | DescribeAuthenticationProfileCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleAliasCommandInput | DescribeContactFlowModuleCommandInput | DescribeDataTableAttributeCommandInput | DescribeDataTableCommandInput | DescribeEmailAddressCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeHoursOfOperationOverrideCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTestCaseCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DescribeWorkspaceCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateEmailAddressAliasCommandInput | DisassociateFlowCommandInput | DisassociateHoursOfOperationsCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateSecurityProfilesCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DisassociateWorkspaceCommandInput | DismissUserContactCommandInput | EvaluateDataTableValuesCommandInput | GetAttachedFileCommandInput | GetContactAttributesCommandInput | GetContactMetricsCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetEffectiveHoursOfOperationsCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTestCaseExecutionSummaryCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ImportWorkspaceMediaCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListAnalyticsDataLakeDataSetsCommandInput | ListApprovedOriginsCommandInput | ListAssociatedContactsCommandInput | ListAuthenticationProfilesCommandInput | ListBotsCommandInput | ListChildHoursOfOperationsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModuleAliasesCommandInput | ListContactFlowModuleVersionsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowVersionsCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDataTableAttributesCommandInput | ListDataTablePrimaryValuesCommandInput | ListDataTableValuesCommandInput | ListDataTablesCommandInput | ListDefaultVocabulariesCommandInput | ListEntitySecurityProfilesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationOverridesCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileManualAssignmentQueuesCommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfileFlowModulesCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTestCaseExecutionRecordsCommandInput | ListTestCaseExecutionsCommandInput | ListTestCasesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | ListWorkspaceMediaCommandInput | ListWorkspacePagesCommandInput | ListWorkspacesCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAgentStatusesCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactEvaluationsCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchDataTablesCommandInput | SearchEmailAddressesCommandInput | SearchEvaluationFormsCommandInput | SearchHoursOfOperationOverridesCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchTestCasesCommandInput | SearchUserHierarchyGroupsCommandInput | SearchUsersCommandInput | SearchViewsCommandInput | SearchVocabulariesCommandInput | SearchWorkspaceAssociationsCommandInput | SearchWorkspacesCommandInput | SendChatIntegrationEventCommandInput | SendOutboundEmailCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactMediaProcessingCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartEmailContactCommandInput | StartOutboundChatContactCommandInput | StartOutboundEmailContactCommandInput | StartOutboundVoiceContactCommandInput | StartScreenSharingCommandInput | StartTaskContactCommandInput | StartTestCaseExecutionCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactMediaProcessingCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | StopTestCaseExecutionCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateAuthenticationProfileCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleAliasCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateDataTableAttributeCommandInput | UpdateDataTableMetadataCommandInput | UpdateDataTablePrimaryValuesCommandInput | UpdateEmailAddressMetadataCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateHoursOfOperationOverrideCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantAuthenticationCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueOutboundEmailConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTestCaseCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput | UpdateWorkspaceMetadataCommandInput | UpdateWorkspacePageCommandInput | UpdateWorkspaceThemeCommandInput | UpdateWorkspaceVisibilityCommandInput;
|
|
372
|
+
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateContactWithUserCommandInput | AssociateDefaultVocabularyCommandInput | AssociateEmailAddressAliasCommandInput | AssociateFlowCommandInput | AssociateHoursOfOperationsCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateSecurityProfilesCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | AssociateWorkspaceCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchCreateDataTableValueCommandInput | BatchDeleteDataTableValueCommandInput | BatchDescribeDataTableValueCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetAttachedFileMetadataCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | BatchUpdateDataTableValueCommandInput | ClaimPhoneNumberCommandInput | CompleteAttachedFileUploadCommandInput | CreateAgentStatusCommandInput | CreateContactCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleAliasCommandInput | CreateContactFlowModuleCommandInput | CreateContactFlowModuleVersionCommandInput | CreateContactFlowVersionCommandInput | CreateDataTableAttributeCommandInput | CreateDataTableCommandInput | CreateEmailAddressCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateHoursOfOperationOverrideCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreatePushNotificationRegistrationCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTestCaseCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | CreateWorkspaceCommandInput | CreateWorkspacePageCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleAliasCommandInput | DeleteContactFlowModuleCommandInput | DeleteContactFlowModuleVersionCommandInput | DeleteContactFlowVersionCommandInput | DeleteDataTableAttributeCommandInput | DeleteDataTableCommandInput | DeleteEmailAddressCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteHoursOfOperationOverrideCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeletePushNotificationRegistrationCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTestCaseCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DeleteWorkspaceCommandInput | DeleteWorkspaceMediaCommandInput | DeleteWorkspacePageCommandInput | DescribeAgentStatusCommandInput | DescribeAuthenticationProfileCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleAliasCommandInput | DescribeContactFlowModuleCommandInput | DescribeDataTableAttributeCommandInput | DescribeDataTableCommandInput | DescribeEmailAddressCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeHoursOfOperationOverrideCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTestCaseCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DescribeWorkspaceCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateEmailAddressAliasCommandInput | DisassociateFlowCommandInput | DisassociateHoursOfOperationsCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateSecurityProfilesCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DisassociateWorkspaceCommandInput | DismissUserContactCommandInput | EvaluateDataTableValuesCommandInput | GetAttachedFileCommandInput | GetContactAttributesCommandInput | GetContactMetricsCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetEffectiveHoursOfOperationsCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTestCaseExecutionSummaryCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ImportWorkspaceMediaCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListAnalyticsDataLakeDataSetsCommandInput | ListApprovedOriginsCommandInput | ListAssociatedContactsCommandInput | ListAuthenticationProfilesCommandInput | ListBotsCommandInput | ListChildHoursOfOperationsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModuleAliasesCommandInput | ListContactFlowModuleVersionsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowVersionsCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDataTableAttributesCommandInput | ListDataTablePrimaryValuesCommandInput | ListDataTableValuesCommandInput | ListDataTablesCommandInput | ListDefaultVocabulariesCommandInput | ListEntitySecurityProfilesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationOverridesCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileManualAssignmentQueuesCommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfileFlowModulesCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTestCaseExecutionRecordsCommandInput | ListTestCaseExecutionsCommandInput | ListTestCasesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | ListWorkspaceMediaCommandInput | ListWorkspacePagesCommandInput | ListWorkspacesCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAgentStatusesCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactEvaluationsCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchDataTablesCommandInput | SearchEmailAddressesCommandInput | SearchEvaluationFormsCommandInput | SearchHoursOfOperationOverridesCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchTestCasesCommandInput | SearchUserHierarchyGroupsCommandInput | SearchUsersCommandInput | SearchViewsCommandInput | SearchVocabulariesCommandInput | SearchWorkspaceAssociationsCommandInput | SearchWorkspacesCommandInput | SendChatIntegrationEventCommandInput | SendOutboundEmailCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactMediaProcessingCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartEmailContactCommandInput | StartOutboundChatContactCommandInput | StartOutboundEmailContactCommandInput | StartOutboundVoiceContactCommandInput | StartScreenSharingCommandInput | StartTaskContactCommandInput | StartTestCaseExecutionCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactMediaProcessingCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | StopTestCaseExecutionCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateAuthenticationProfileCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleAliasCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateDataTableAttributeCommandInput | UpdateDataTableMetadataCommandInput | UpdateDataTablePrimaryValuesCommandInput | UpdateEmailAddressMetadataCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateHoursOfOperationOverrideCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantAuthenticationCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueOutboundEmailConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTestCaseCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserConfigCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput | UpdateWorkspaceMetadataCommandInput | UpdateWorkspacePageCommandInput | UpdateWorkspaceThemeCommandInput | UpdateWorkspaceVisibilityCommandInput;
|
|
372
373
|
/**
|
|
373
374
|
* @public
|
|
374
375
|
*/
|
|
375
|
-
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateContactWithUserCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateEmailAddressAliasCommandOutput | AssociateFlowCommandOutput | AssociateHoursOfOperationsCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateSecurityProfilesCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | AssociateWorkspaceCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchCreateDataTableValueCommandOutput | BatchDeleteDataTableValueCommandOutput | BatchDescribeDataTableValueCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetAttachedFileMetadataCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | BatchUpdateDataTableValueCommandOutput | ClaimPhoneNumberCommandOutput | CompleteAttachedFileUploadCommandOutput | CreateAgentStatusCommandOutput | CreateContactCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleAliasCommandOutput | CreateContactFlowModuleCommandOutput | CreateContactFlowModuleVersionCommandOutput | CreateContactFlowVersionCommandOutput | CreateDataTableAttributeCommandOutput | CreateDataTableCommandOutput | CreateEmailAddressCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateHoursOfOperationOverrideCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreatePushNotificationRegistrationCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTestCaseCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | CreateWorkspaceCommandOutput | CreateWorkspacePageCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleAliasCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteContactFlowModuleVersionCommandOutput | DeleteContactFlowVersionCommandOutput | DeleteDataTableAttributeCommandOutput | DeleteDataTableCommandOutput | DeleteEmailAddressCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteHoursOfOperationOverrideCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeletePushNotificationRegistrationCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTestCaseCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DeleteWorkspaceCommandOutput | DeleteWorkspaceMediaCommandOutput | DeleteWorkspacePageCommandOutput | DescribeAgentStatusCommandOutput | DescribeAuthenticationProfileCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleAliasCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeDataTableAttributeCommandOutput | DescribeDataTableCommandOutput | DescribeEmailAddressCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeHoursOfOperationOverrideCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTestCaseCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DescribeWorkspaceCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateEmailAddressAliasCommandOutput | DisassociateFlowCommandOutput | DisassociateHoursOfOperationsCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateSecurityProfilesCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DisassociateWorkspaceCommandOutput | DismissUserContactCommandOutput | EvaluateDataTableValuesCommandOutput | GetAttachedFileCommandOutput | GetContactAttributesCommandOutput | GetContactMetricsCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetEffectiveHoursOfOperationsCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTestCaseExecutionSummaryCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ImportWorkspaceMediaCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListAnalyticsDataLakeDataSetsCommandOutput | ListApprovedOriginsCommandOutput | ListAssociatedContactsCommandOutput | ListAuthenticationProfilesCommandOutput | ListBotsCommandOutput | ListChildHoursOfOperationsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModuleAliasesCommandOutput | ListContactFlowModuleVersionsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowVersionsCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDataTableAttributesCommandOutput | ListDataTablePrimaryValuesCommandOutput | ListDataTableValuesCommandOutput | ListDataTablesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEntitySecurityProfilesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationOverridesCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileManualAssignmentQueuesCommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfileFlowModulesCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTestCaseExecutionRecordsCommandOutput | ListTestCaseExecutionsCommandOutput | ListTestCasesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | ListWorkspaceMediaCommandOutput | ListWorkspacePagesCommandOutput | ListWorkspacesCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAgentStatusesCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactEvaluationsCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchDataTablesCommandOutput | SearchEmailAddressesCommandOutput | SearchEvaluationFormsCommandOutput | SearchHoursOfOperationOverridesCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchTestCasesCommandOutput | SearchUserHierarchyGroupsCommandOutput | SearchUsersCommandOutput | SearchViewsCommandOutput | SearchVocabulariesCommandOutput | SearchWorkspaceAssociationsCommandOutput | SearchWorkspacesCommandOutput | SendChatIntegrationEventCommandOutput | SendOutboundEmailCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactMediaProcessingCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartEmailContactCommandOutput | StartOutboundChatContactCommandOutput | StartOutboundEmailContactCommandOutput | StartOutboundVoiceContactCommandOutput | StartScreenSharingCommandOutput | StartTaskContactCommandOutput | StartTestCaseExecutionCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactMediaProcessingCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | StopTestCaseExecutionCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateAuthenticationProfileCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleAliasCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateDataTableAttributeCommandOutput | UpdateDataTableMetadataCommandOutput | UpdateDataTablePrimaryValuesCommandOutput | UpdateEmailAddressMetadataCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateHoursOfOperationOverrideCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantAuthenticationCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueOutboundEmailConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTestCaseCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput | UpdateWorkspaceMetadataCommandOutput | UpdateWorkspacePageCommandOutput | UpdateWorkspaceThemeCommandOutput | UpdateWorkspaceVisibilityCommandOutput;
|
|
376
|
+
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateContactWithUserCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateEmailAddressAliasCommandOutput | AssociateFlowCommandOutput | AssociateHoursOfOperationsCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateSecurityProfilesCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | AssociateWorkspaceCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchCreateDataTableValueCommandOutput | BatchDeleteDataTableValueCommandOutput | BatchDescribeDataTableValueCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetAttachedFileMetadataCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | BatchUpdateDataTableValueCommandOutput | ClaimPhoneNumberCommandOutput | CompleteAttachedFileUploadCommandOutput | CreateAgentStatusCommandOutput | CreateContactCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleAliasCommandOutput | CreateContactFlowModuleCommandOutput | CreateContactFlowModuleVersionCommandOutput | CreateContactFlowVersionCommandOutput | CreateDataTableAttributeCommandOutput | CreateDataTableCommandOutput | CreateEmailAddressCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateHoursOfOperationOverrideCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreatePushNotificationRegistrationCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTestCaseCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | CreateWorkspaceCommandOutput | CreateWorkspacePageCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleAliasCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteContactFlowModuleVersionCommandOutput | DeleteContactFlowVersionCommandOutput | DeleteDataTableAttributeCommandOutput | DeleteDataTableCommandOutput | DeleteEmailAddressCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteHoursOfOperationOverrideCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeletePushNotificationRegistrationCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTestCaseCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DeleteWorkspaceCommandOutput | DeleteWorkspaceMediaCommandOutput | DeleteWorkspacePageCommandOutput | DescribeAgentStatusCommandOutput | DescribeAuthenticationProfileCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleAliasCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeDataTableAttributeCommandOutput | DescribeDataTableCommandOutput | DescribeEmailAddressCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeHoursOfOperationOverrideCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTestCaseCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DescribeWorkspaceCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateEmailAddressAliasCommandOutput | DisassociateFlowCommandOutput | DisassociateHoursOfOperationsCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateSecurityProfilesCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DisassociateWorkspaceCommandOutput | DismissUserContactCommandOutput | EvaluateDataTableValuesCommandOutput | GetAttachedFileCommandOutput | GetContactAttributesCommandOutput | GetContactMetricsCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetEffectiveHoursOfOperationsCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTestCaseExecutionSummaryCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ImportWorkspaceMediaCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListAnalyticsDataLakeDataSetsCommandOutput | ListApprovedOriginsCommandOutput | ListAssociatedContactsCommandOutput | ListAuthenticationProfilesCommandOutput | ListBotsCommandOutput | ListChildHoursOfOperationsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModuleAliasesCommandOutput | ListContactFlowModuleVersionsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowVersionsCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDataTableAttributesCommandOutput | ListDataTablePrimaryValuesCommandOutput | ListDataTableValuesCommandOutput | ListDataTablesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEntitySecurityProfilesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationOverridesCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileManualAssignmentQueuesCommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfileFlowModulesCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTestCaseExecutionRecordsCommandOutput | ListTestCaseExecutionsCommandOutput | ListTestCasesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | ListWorkspaceMediaCommandOutput | ListWorkspacePagesCommandOutput | ListWorkspacesCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAgentStatusesCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactEvaluationsCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchDataTablesCommandOutput | SearchEmailAddressesCommandOutput | SearchEvaluationFormsCommandOutput | SearchHoursOfOperationOverridesCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchTestCasesCommandOutput | SearchUserHierarchyGroupsCommandOutput | SearchUsersCommandOutput | SearchViewsCommandOutput | SearchVocabulariesCommandOutput | SearchWorkspaceAssociationsCommandOutput | SearchWorkspacesCommandOutput | SendChatIntegrationEventCommandOutput | SendOutboundEmailCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactMediaProcessingCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartEmailContactCommandOutput | StartOutboundChatContactCommandOutput | StartOutboundEmailContactCommandOutput | StartOutboundVoiceContactCommandOutput | StartScreenSharingCommandOutput | StartTaskContactCommandOutput | StartTestCaseExecutionCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactMediaProcessingCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | StopTestCaseExecutionCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateAuthenticationProfileCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleAliasCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateDataTableAttributeCommandOutput | UpdateDataTableMetadataCommandOutput | UpdateDataTablePrimaryValuesCommandOutput | UpdateEmailAddressMetadataCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateHoursOfOperationOverrideCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantAuthenticationCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueOutboundEmailConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTestCaseCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserConfigCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput | UpdateWorkspaceMetadataCommandOutput | UpdateWorkspacePageCommandOutput | UpdateWorkspaceThemeCommandOutput | UpdateWorkspaceVisibilityCommandOutput;
|
|
376
377
|
/**
|
|
377
378
|
* @public
|
|
378
379
|
*/
|
|
@@ -33,6 +33,32 @@ declare const CreateUserCommand_base: {
|
|
|
33
33
|
* <code>FirstName</code> and <code>LastName</code> are required if you are using Amazon Connect or SAML for
|
|
34
34
|
* identity management.</p>
|
|
35
35
|
* </important>
|
|
36
|
+
* <note>
|
|
37
|
+
* <p>Fields in <code>PhoneConfig</code> cannot be set simultaneously with their corresponding channel-specific configuration parameters. Specifically:</p>
|
|
38
|
+
* <ul>
|
|
39
|
+
* <li>
|
|
40
|
+
* <p>
|
|
41
|
+
* <code>PhoneConfig.AutoAccept</code> conflicts with <code>AutoAcceptConfigs</code>
|
|
42
|
+
* </p>
|
|
43
|
+
* </li>
|
|
44
|
+
* <li>
|
|
45
|
+
* <p>
|
|
46
|
+
* <code>PhoneConfig.AfterContactWorkTimeLimit</code> conflicts with <code>AfterContactWorkConfigs</code>
|
|
47
|
+
* </p>
|
|
48
|
+
* </li>
|
|
49
|
+
* <li>
|
|
50
|
+
* <p>
|
|
51
|
+
* <code>PhoneConfig.PhoneType</code> and <code>PhoneConfig.PhoneNumber</code> conflict with <code>PhoneNumberConfigs</code>
|
|
52
|
+
* </p>
|
|
53
|
+
* </li>
|
|
54
|
+
* <li>
|
|
55
|
+
* <p>
|
|
56
|
+
* <code>PhoneConfig.PersistentConnection</code> conflicts with <code>PersistentConnectionConfigs</code>
|
|
57
|
+
* </p>
|
|
58
|
+
* </li>
|
|
59
|
+
* </ul>
|
|
60
|
+
* <p>We recommend using channel-specific parameters such as <code>AutoAcceptConfigs</code>, <code>AfterContactWorkConfigs</code>, <code>PhoneNumberConfigs</code>, <code>PersistentConnectionConfigs</code>, and <code>VoiceEnhancementConfigs</code> for per-channel configuration.</p>
|
|
61
|
+
* </note>
|
|
36
62
|
* <p>For information about how to create users using the Amazon Connect admin website, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/user-management.html">Add Users</a> in the <i>Amazon Connect
|
|
37
63
|
* Administrator Guide</i>.</p>
|
|
38
64
|
* @example
|
|
@@ -54,7 +80,7 @@ declare const CreateUserCommand_base: {
|
|
|
54
80
|
* Mobile: "STRING_VALUE",
|
|
55
81
|
* },
|
|
56
82
|
* PhoneConfig: { // UserPhoneConfig
|
|
57
|
-
* PhoneType: "SOFT_PHONE" || "DESK_PHONE",
|
|
83
|
+
* PhoneType: "SOFT_PHONE" || "DESK_PHONE",
|
|
58
84
|
* AutoAccept: true || false,
|
|
59
85
|
* AfterContactWorkTimeLimit: Number("int"),
|
|
60
86
|
* DeskPhoneNumber: "STRING_VALUE",
|
|
@@ -67,6 +93,43 @@ declare const CreateUserCommand_base: {
|
|
|
67
93
|
* RoutingProfileId: "STRING_VALUE", // required
|
|
68
94
|
* HierarchyGroupId: "STRING_VALUE",
|
|
69
95
|
* InstanceId: "STRING_VALUE", // required
|
|
96
|
+
* AutoAcceptConfigs: [ // AutoAcceptConfigs
|
|
97
|
+
* { // AutoAcceptConfig
|
|
98
|
+
* Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
99
|
+
* AutoAccept: true || false, // required
|
|
100
|
+
* AgentFirstCallbackAutoAccept: true || false,
|
|
101
|
+
* },
|
|
102
|
+
* ],
|
|
103
|
+
* AfterContactWorkConfigs: [ // AfterContactWorkConfigs
|
|
104
|
+
* { // AfterContactWorkConfigPerChannel
|
|
105
|
+
* Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
106
|
+
* AfterContactWorkConfig: { // AfterContactWorkConfig
|
|
107
|
+
* AfterContactWorkTimeLimit: Number("int"),
|
|
108
|
+
* },
|
|
109
|
+
* AgentFirstCallbackAfterContactWorkConfig: {
|
|
110
|
+
* AfterContactWorkTimeLimit: Number("int"),
|
|
111
|
+
* },
|
|
112
|
+
* },
|
|
113
|
+
* ],
|
|
114
|
+
* PhoneNumberConfigs: [ // PhoneNumberConfigs
|
|
115
|
+
* { // PhoneNumberConfig
|
|
116
|
+
* Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
117
|
+
* PhoneType: "SOFT_PHONE" || "DESK_PHONE", // required
|
|
118
|
+
* PhoneNumber: "STRING_VALUE",
|
|
119
|
+
* },
|
|
120
|
+
* ],
|
|
121
|
+
* PersistentConnectionConfigs: [ // PersistentConnectionConfigs
|
|
122
|
+
* { // PersistentConnectionConfig
|
|
123
|
+
* Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
124
|
+
* PersistentConnection: true || false, // required
|
|
125
|
+
* },
|
|
126
|
+
* ],
|
|
127
|
+
* VoiceEnhancementConfigs: [ // VoiceEnhancementConfigs
|
|
128
|
+
* { // VoiceEnhancementConfig
|
|
129
|
+
* Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
130
|
+
* VoiceEnhancementMode: "VOICE_ISOLATION" || "NOISE_SUPPRESSION" || "NONE", // required
|
|
131
|
+
* },
|
|
132
|
+
* ],
|
|
70
133
|
* Tags: { // TagMap
|
|
71
134
|
* "<keys>": "STRING_VALUE",
|
|
72
135
|
* },
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import type { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/
|
|
4
|
+
import type { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -57,7 +57,7 @@ declare const DescribeUserCommand_base: {
|
|
|
57
57
|
* // Mobile: "STRING_VALUE",
|
|
58
58
|
* // },
|
|
59
59
|
* // PhoneConfig: { // UserPhoneConfig
|
|
60
|
-
* // PhoneType: "SOFT_PHONE" || "DESK_PHONE",
|
|
60
|
+
* // PhoneType: "SOFT_PHONE" || "DESK_PHONE",
|
|
61
61
|
* // AutoAccept: true || false,
|
|
62
62
|
* // AfterContactWorkTimeLimit: Number("int"),
|
|
63
63
|
* // DeskPhoneNumber: "STRING_VALUE",
|
|
@@ -72,6 +72,43 @@ declare const DescribeUserCommand_base: {
|
|
|
72
72
|
* // Tags: { // TagMap
|
|
73
73
|
* // "<keys>": "STRING_VALUE",
|
|
74
74
|
* // },
|
|
75
|
+
* // AutoAcceptConfigs: [ // AutoAcceptConfigs
|
|
76
|
+
* // { // AutoAcceptConfig
|
|
77
|
+
* // Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
78
|
+
* // AutoAccept: true || false, // required
|
|
79
|
+
* // AgentFirstCallbackAutoAccept: true || false,
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
82
|
+
* // AfterContactWorkConfigs: [ // AfterContactWorkConfigs
|
|
83
|
+
* // { // AfterContactWorkConfigPerChannel
|
|
84
|
+
* // Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
85
|
+
* // AfterContactWorkConfig: { // AfterContactWorkConfig
|
|
86
|
+
* // AfterContactWorkTimeLimit: Number("int"),
|
|
87
|
+
* // },
|
|
88
|
+
* // AgentFirstCallbackAfterContactWorkConfig: {
|
|
89
|
+
* // AfterContactWorkTimeLimit: Number("int"),
|
|
90
|
+
* // },
|
|
91
|
+
* // },
|
|
92
|
+
* // ],
|
|
93
|
+
* // PhoneNumberConfigs: [ // PhoneNumberConfigs
|
|
94
|
+
* // { // PhoneNumberConfig
|
|
95
|
+
* // Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
96
|
+
* // PhoneType: "SOFT_PHONE" || "DESK_PHONE", // required
|
|
97
|
+
* // PhoneNumber: "STRING_VALUE",
|
|
98
|
+
* // },
|
|
99
|
+
* // ],
|
|
100
|
+
* // PersistentConnectionConfigs: [ // PersistentConnectionConfigs
|
|
101
|
+
* // { // PersistentConnectionConfig
|
|
102
|
+
* // Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
103
|
+
* // PersistentConnection: true || false, // required
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // VoiceEnhancementConfigs: [ // VoiceEnhancementConfigs
|
|
107
|
+
* // { // VoiceEnhancementConfig
|
|
108
|
+
* // Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
109
|
+
* // VoiceEnhancementMode: "VOICE_ISOLATION" || "NOISE_SUPPRESSION" || "NONE", // required
|
|
110
|
+
* // },
|
|
111
|
+
* // ],
|
|
75
112
|
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
76
113
|
* // LastModifiedRegion: "STRING_VALUE",
|
|
77
114
|
* // },
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import type { ListAgentStatusRequest, ListAgentStatusResponse } from "../models/
|
|
4
|
+
import type { ListAgentStatusRequest, ListAgentStatusResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import type { ListAnalyticsDataAssociationsRequest, ListAnalyticsDataAssociationsResponse } from "../models/
|
|
4
|
+
import type { ListAnalyticsDataAssociationsRequest, ListAnalyticsDataAssociationsResponse } from "../models/models_2";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import type { ListAnalyticsDataLakeDataSetsRequest } from "../models/
|
|
5
|
-
import type { ListAnalyticsDataLakeDataSetsResponse } from "../models/models_2";
|
|
4
|
+
import type { ListAnalyticsDataLakeDataSetsRequest, ListAnalyticsDataLakeDataSetsResponse } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -154,7 +154,7 @@ declare const SearchUsersCommand_base: {
|
|
|
154
154
|
* // LastName: "STRING_VALUE",
|
|
155
155
|
* // },
|
|
156
156
|
* // PhoneConfig: { // UserPhoneConfig
|
|
157
|
-
* // PhoneType: "SOFT_PHONE" || "DESK_PHONE",
|
|
157
|
+
* // PhoneType: "SOFT_PHONE" || "DESK_PHONE",
|
|
158
158
|
* // AutoAccept: true || false,
|
|
159
159
|
* // AfterContactWorkTimeLimit: Number("int"),
|
|
160
160
|
* // DeskPhoneNumber: "STRING_VALUE",
|
|
@@ -168,6 +168,43 @@ declare const SearchUsersCommand_base: {
|
|
|
168
168
|
* // "<keys>": "STRING_VALUE",
|
|
169
169
|
* // },
|
|
170
170
|
* // Username: "STRING_VALUE",
|
|
171
|
+
* // AutoAcceptConfigs: [ // AutoAcceptConfigs
|
|
172
|
+
* // { // AutoAcceptConfig
|
|
173
|
+
* // Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
174
|
+
* // AutoAccept: true || false, // required
|
|
175
|
+
* // AgentFirstCallbackAutoAccept: true || false,
|
|
176
|
+
* // },
|
|
177
|
+
* // ],
|
|
178
|
+
* // AfterContactWorkConfigs: [ // AfterContactWorkConfigs
|
|
179
|
+
* // { // AfterContactWorkConfigPerChannel
|
|
180
|
+
* // Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
181
|
+
* // AfterContactWorkConfig: { // AfterContactWorkConfig
|
|
182
|
+
* // AfterContactWorkTimeLimit: Number("int"),
|
|
183
|
+
* // },
|
|
184
|
+
* // AgentFirstCallbackAfterContactWorkConfig: {
|
|
185
|
+
* // AfterContactWorkTimeLimit: Number("int"),
|
|
186
|
+
* // },
|
|
187
|
+
* // },
|
|
188
|
+
* // ],
|
|
189
|
+
* // PhoneNumberConfigs: [ // PhoneNumberConfigs
|
|
190
|
+
* // { // PhoneNumberConfig
|
|
191
|
+
* // Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
192
|
+
* // PhoneType: "SOFT_PHONE" || "DESK_PHONE", // required
|
|
193
|
+
* // PhoneNumber: "STRING_VALUE",
|
|
194
|
+
* // },
|
|
195
|
+
* // ],
|
|
196
|
+
* // PersistentConnectionConfigs: [ // PersistentConnectionConfigs
|
|
197
|
+
* // { // PersistentConnectionConfig
|
|
198
|
+
* // Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
199
|
+
* // PersistentConnection: true || false, // required
|
|
200
|
+
* // },
|
|
201
|
+
* // ],
|
|
202
|
+
* // VoiceEnhancementConfigs: [ // VoiceEnhancementConfigs
|
|
203
|
+
* // { // VoiceEnhancementConfig
|
|
204
|
+
* // Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
205
|
+
* // VoiceEnhancementMode: "VOICE_ISOLATION" || "NOISE_SUPPRESSION" || "NONE", // required
|
|
206
|
+
* // },
|
|
207
|
+
* // ],
|
|
171
208
|
* // },
|
|
172
209
|
* // ],
|
|
173
210
|
* // NextToken: "STRING_VALUE",
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import type { SearchWorkspaceAssociationsResponse } from "../models/
|
|
5
|
-
import type { SearchWorkspaceAssociationsRequest } from "../models/models_3";
|
|
4
|
+
import type { SearchWorkspaceAssociationsRequest, SearchWorkspaceAssociationsResponse } from "../models/models_3";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import type { SearchWorkspacesResponse } from "../models/
|
|
5
|
-
import type { SearchWorkspacesRequest } from "../models/models_3";
|
|
4
|
+
import type { SearchWorkspacesRequest, SearchWorkspacesResponse } from "../models/models_3";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
+
import type { UpdateUserConfigRequest } from "../models/models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateUserConfigCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateUserConfigCommandInput extends UpdateUserConfigRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateUserConfigCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateUserConfigCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateUserConfigCommand_base: {
|
|
25
|
+
new (input: UpdateUserConfigCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateUserConfigCommandInput, UpdateUserConfigCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateUserConfigCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateUserConfigCommandInput, UpdateUserConfigCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates the configuration settings for the specified user, including per-channel auto-accept and after contact work (ACW) timeout settings.</p>
|
|
31
|
+
* <note>
|
|
32
|
+
* <p>This operation replaces the UpdateUserPhoneConfig API. While UpdateUserPhoneConfig applies the same ACW timeout to all channels, UpdateUserConfig allows you to set different auto-accept and ACW timeout values for each channel type.</p>
|
|
33
|
+
* </note>
|
|
34
|
+
* @example
|
|
35
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
36
|
+
* ```javascript
|
|
37
|
+
* import { ConnectClient, UpdateUserConfigCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
38
|
+
* // const { ConnectClient, UpdateUserConfigCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
39
|
+
* // import type { ConnectClientConfig } from "@aws-sdk/client-connect";
|
|
40
|
+
* const config = {}; // type is ConnectClientConfig
|
|
41
|
+
* const client = new ConnectClient(config);
|
|
42
|
+
* const input = { // UpdateUserConfigRequest
|
|
43
|
+
* AutoAcceptConfigs: [ // AutoAcceptConfigs
|
|
44
|
+
* { // AutoAcceptConfig
|
|
45
|
+
* Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
46
|
+
* AutoAccept: true || false, // required
|
|
47
|
+
* AgentFirstCallbackAutoAccept: true || false,
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* AfterContactWorkConfigs: [ // AfterContactWorkConfigs
|
|
51
|
+
* { // AfterContactWorkConfigPerChannel
|
|
52
|
+
* Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
53
|
+
* AfterContactWorkConfig: { // AfterContactWorkConfig
|
|
54
|
+
* AfterContactWorkTimeLimit: Number("int"),
|
|
55
|
+
* },
|
|
56
|
+
* AgentFirstCallbackAfterContactWorkConfig: {
|
|
57
|
+
* AfterContactWorkTimeLimit: Number("int"),
|
|
58
|
+
* },
|
|
59
|
+
* },
|
|
60
|
+
* ],
|
|
61
|
+
* PhoneNumberConfigs: [ // PhoneNumberConfigs
|
|
62
|
+
* { // PhoneNumberConfig
|
|
63
|
+
* Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
64
|
+
* PhoneType: "SOFT_PHONE" || "DESK_PHONE", // required
|
|
65
|
+
* PhoneNumber: "STRING_VALUE",
|
|
66
|
+
* },
|
|
67
|
+
* ],
|
|
68
|
+
* PersistentConnectionConfigs: [ // PersistentConnectionConfigs
|
|
69
|
+
* { // PersistentConnectionConfig
|
|
70
|
+
* Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
71
|
+
* PersistentConnection: true || false, // required
|
|
72
|
+
* },
|
|
73
|
+
* ],
|
|
74
|
+
* VoiceEnhancementConfigs: [ // VoiceEnhancementConfigs
|
|
75
|
+
* { // VoiceEnhancementConfig
|
|
76
|
+
* Channel: "VOICE" || "CHAT" || "TASK" || "EMAIL", // required
|
|
77
|
+
* VoiceEnhancementMode: "VOICE_ISOLATION" || "NOISE_SUPPRESSION" || "NONE", // required
|
|
78
|
+
* },
|
|
79
|
+
* ],
|
|
80
|
+
* UserId: "STRING_VALUE", // required
|
|
81
|
+
* InstanceId: "STRING_VALUE", // required
|
|
82
|
+
* };
|
|
83
|
+
* const command = new UpdateUserConfigCommand(input);
|
|
84
|
+
* const response = await client.send(command);
|
|
85
|
+
* // {};
|
|
86
|
+
*
|
|
87
|
+
* ```
|
|
88
|
+
*
|
|
89
|
+
* @param UpdateUserConfigCommandInput - {@link UpdateUserConfigCommandInput}
|
|
90
|
+
* @returns {@link UpdateUserConfigCommandOutput}
|
|
91
|
+
* @see {@link UpdateUserConfigCommandInput} for command's `input` shape.
|
|
92
|
+
* @see {@link UpdateUserConfigCommandOutput} for command's `response` shape.
|
|
93
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link ConditionalOperationFailedException} (client fault)
|
|
96
|
+
* <p>Request processing failed because dependent condition failed.</p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
99
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
102
|
+
* <p>One or more of the specified parameters are not valid.</p>
|
|
103
|
+
*
|
|
104
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
105
|
+
* <p>The request is not valid.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
108
|
+
* <p>The specified resource was not found.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
111
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
112
|
+
*
|
|
113
|
+
* @throws {@link ConnectServiceException}
|
|
114
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
115
|
+
*
|
|
116
|
+
*
|
|
117
|
+
* @public
|
|
118
|
+
*/
|
|
119
|
+
export declare class UpdateUserConfigCommand extends UpdateUserConfigCommand_base {
|
|
120
|
+
/** @internal type navigation helper, not in runtime. */
|
|
121
|
+
protected static __types: {
|
|
122
|
+
api: {
|
|
123
|
+
input: UpdateUserConfigRequest;
|
|
124
|
+
output: {};
|
|
125
|
+
};
|
|
126
|
+
sdk: {
|
|
127
|
+
input: UpdateUserConfigCommandInput;
|
|
128
|
+
output: UpdateUserConfigCommandOutput;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
}
|
|
@@ -28,6 +28,9 @@ declare const UpdateUserPhoneConfigCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Updates the phone configuration settings for the specified user.</p>
|
|
31
|
+
* <note>
|
|
32
|
+
* <p>We recommend using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdateUserConfig.html">UpdateUserConfig</a> API, which supports additional functionality that is not available in the UpdateUserPhoneConfig API, such as voice enhancement settings and per-channel configuration for auto-accept and After Contact Work (ACW) timeouts. In comparison, the UpdateUserPhoneConfig API will always set the same ACW timeouts to all channels the user handles.</p>
|
|
33
|
+
* </note>
|
|
31
34
|
* @example
|
|
32
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
36
|
* ```javascript
|
|
@@ -38,7 +41,7 @@ declare const UpdateUserPhoneConfigCommand_base: {
|
|
|
38
41
|
* const client = new ConnectClient(config);
|
|
39
42
|
* const input = { // UpdateUserPhoneConfigRequest
|
|
40
43
|
* PhoneConfig: { // UserPhoneConfig
|
|
41
|
-
* PhoneType: "SOFT_PHONE" || "DESK_PHONE",
|
|
44
|
+
* PhoneType: "SOFT_PHONE" || "DESK_PHONE",
|
|
42
45
|
* AutoAccept: true || false,
|
|
43
46
|
* AfterContactWorkTimeLimit: Number("int"),
|
|
44
47
|
* DeskPhoneNumber: "STRING_VALUE",
|
|
@@ -339,6 +339,7 @@ export * from "./UpdateSecurityProfileCommand";
|
|
|
339
339
|
export * from "./UpdateTaskTemplateCommand";
|
|
340
340
|
export * from "./UpdateTestCaseCommand";
|
|
341
341
|
export * from "./UpdateTrafficDistributionCommand";
|
|
342
|
+
export * from "./UpdateUserConfigCommand";
|
|
342
343
|
export * from "./UpdateUserHierarchyCommand";
|
|
343
344
|
export * from "./UpdateUserHierarchyGroupNameCommand";
|
|
344
345
|
export * from "./UpdateUserHierarchyStructureCommand";
|