@aws-sdk/client-connect 3.1121.0 → 3.1122.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 +14 -0
- package/dist-cjs/index.js +59 -9
- package/dist-es/Connect.js +4 -0
- package/dist-es/commands/GetCrossRegionRoutingCommand.js +4 -0
- package/dist-es/commands/UpdateCrossRegionRoutingCommand.js +4 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +43 -8
- package/dist-types/Connect.d.ts +14 -0
- package/dist-types/ConnectClient.d.ts +4 -2
- package/dist-types/commands/DescribeContactCommand.d.ts +1 -0
- package/dist-types/commands/GetCrossRegionRoutingCommand.d.ts +93 -0
- package/dist-types/commands/UpdateCrossRegionRoutingCommand.d.ts +95 -0
- package/dist-types/commands/UpdateUserProficienciesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserRoutingProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserSecurityProfilesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateViewContentCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +7 -0
- package/dist-types/models/models_1.d.ts +23 -64
- package/dist-types/models/models_2.d.ts +66 -45
- package/dist-types/models/models_3.d.ts +66 -94
- package/dist-types/models/models_4.d.ts +94 -4
- package/dist-types/schemas/schemas_0.d.ts +6 -0
- package/dist-types/ts3.4/Connect.d.ts +34 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetCrossRegionRoutingCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateCrossRegionRoutingCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateUserProficienciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserRoutingProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserSecurityProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateViewContentCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +6 -14
- package/dist-types/ts3.4/models/models_2.d.ts +15 -14
- package/dist-types/ts3.4/models/models_3.d.ts +17 -24
- package/dist-types/ts3.4/models/models_4.d.ts +25 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
- package/package.json +1 -1
|
@@ -1,6 +1,69 @@
|
|
|
1
|
-
import type { AgentStatusType, ArtifactStatus, AttachmentScope, AutoEvaluationStatus,
|
|
1
|
+
import type { AgentStatusType, ArtifactStatus, AttachmentScope, AutoEvaluationStatus, Channel, Comparison, ContactFlowModuleState, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactRecordingType, ContactState, CurrentMetricName, DataTableAttributeValueType, DirectoryType, EntityType, EvaluationFormValidationFindingSeverity, EvaluationFormValidationStatus, EvaluationFormVersionStatus, EvaluationStatus, EvaluationType, EventSourceName, ExecutionRecordStatus, FilterV2StringConditionComparisonOperator, FlowAssociationResourceType, Grouping, HistoricalMetricName, InstanceStatus, InstanceStorageResourceType, IntegrationType, IntervalPeriod, LexVersion, ListFlowAssociationResourceType, LocaleCode, MediaType, MetricStatus, MetricType, MonitorCapability, NotificationPriority, NotificationSource, NotificationStatus, OperationalStatus, ParticipantRole, PhoneNumberCountryCode, PhoneNumberType, QueueType, QuickConnectType, RealTimeContactAnalysisExtractedInformationFailureCode, RealTimeContactAnalysisOutputType, RealTimeContactAnalysisPostContactSummaryFailureCode, RealTimeContactAnalysisPostContactSummaryStatus, RealTimeContactAnalysisSegmentType, RealTimeContactAnalysisSentimentLabel, RealTimeContactAnalysisStatus, RealTimeContactAnalysisSupportedChannel, ReferenceStatus, ReferenceType, RuleCapabilityTier, RulePublishStatus, SortOrder, SourceType, Statistic, TaskTemplateStatus, TestCaseExecutionStatus, TestCaseStatus, TrafficDistributionGroupStatus, Unit, UseCaseType, ViewStatus, ViewType, VocabularyLanguageCode } from "./enums";
|
|
2
2
|
import type { ActionSummary, AgentConfig, AgentContactReference, AgentStatus, AgentStatusIdentifier, AgentStatusReference, AgentStatusSummary, AnalyticsDataAssociationResult, Application, DataTableLockVersion, Distribution, FlowAssociationSummary, FlowModule, InstanceStorageConfig, LexBot, LexV2Bot, OverrideTimeSlice, PrimaryValueResponse, QueueReference, SecurityProfileItem, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, UserProficiency } from "./models_0";
|
|
3
|
-
import type { Attribute, CurrentMetric,
|
|
3
|
+
import type { Attribute, CurrentMetric, DataTableAttribute, EvaluationContactParticipant, EvaluationScore, ExtensionConfiguration, HierarchyGroupSummary, HoursOfOperationOverride, HoursOfOperationsIdentifier, Notification } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Contains the filter to apply when retrieving metrics.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface Filters {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The queues to use to filter the metrics. You should specify at least one queue, and can specify up to 100 queues
|
|
11
|
+
* per request. The <code>GetCurrentMetricsData</code> API in particular requires a queue when you include a
|
|
12
|
+
* <code>Filter</code> in your request. </p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
Queues?: string[] | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The channel to use to filter the metrics.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
Channels?: Channel[] | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>A list of up to 100 routing profile IDs or ARNs.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
RoutingProfiles?: string[] | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>A list of expressions as a filter, in which an expression is an object of a step in a routing
|
|
28
|
+
* criteria. Accepts filter values up to 3,000 characters in length. Filter values are case-sensitive.
|
|
29
|
+
* JSON object key order and whitespace may be arbitrary; array order and tree structure must be preserved.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
RoutingStepExpressions?: string[] | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>A list of up to 50 agent status IDs or ARNs.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
AgentStatuses?: string[] | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>A list of up to 10 subtypes can be provided.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
Subtypes?: string[] | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>A list of up to 10 validationTestTypes can be provided.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
ValidationTestTypes?: string[] | undefined;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* <p>The way to sort the resulting response based on metrics. By default resources are sorted based on
|
|
51
|
+
* <code>AGENTS_ONLINE</code>, <code>DESCENDING</code>. The metric collection is sorted based on the input
|
|
52
|
+
* metrics.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export interface CurrentMetricSortCriteria {
|
|
56
|
+
/**
|
|
57
|
+
* <p>The current metric names.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
SortByMetric?: CurrentMetricName | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The way to sort.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
SortOrder?: SortOrder | undefined;
|
|
66
|
+
}
|
|
4
67
|
/**
|
|
5
68
|
* @public
|
|
6
69
|
*/
|
|
@@ -8777,7 +8840,7 @@ export interface TrafficDistributionGroupSummary {
|
|
|
8777
8840
|
*/
|
|
8778
8841
|
Name?: string | undefined;
|
|
8779
8842
|
/**
|
|
8780
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
8843
|
+
* <p>The Amazon Resource Name (ARN) of the instance.</p>
|
|
8781
8844
|
* @public
|
|
8782
8845
|
*/
|
|
8783
8846
|
InstanceArn?: string | undefined;
|
|
@@ -9865,45 +9928,3 @@ export interface SearchAvailablePhoneNumbersResponse {
|
|
|
9865
9928
|
*/
|
|
9866
9929
|
AvailableNumbersList?: AvailableNumberSummary[] | undefined;
|
|
9867
9930
|
}
|
|
9868
|
-
/**
|
|
9869
|
-
* <p>A boolean search condition for Search APIs.</p>
|
|
9870
|
-
* @public
|
|
9871
|
-
*/
|
|
9872
|
-
export interface BooleanCondition {
|
|
9873
|
-
/**
|
|
9874
|
-
* <p>A name of the property to be searched.</p>
|
|
9875
|
-
* @public
|
|
9876
|
-
*/
|
|
9877
|
-
FieldName?: string | undefined;
|
|
9878
|
-
/**
|
|
9879
|
-
* <p>Boolean property comparison type.</p>
|
|
9880
|
-
* @public
|
|
9881
|
-
*/
|
|
9882
|
-
ComparisonType?: BooleanComparisonType | undefined;
|
|
9883
|
-
}
|
|
9884
|
-
/**
|
|
9885
|
-
* <p>A datetime search condition for Search APIs.</p>
|
|
9886
|
-
* @public
|
|
9887
|
-
*/
|
|
9888
|
-
export interface DateTimeCondition {
|
|
9889
|
-
/**
|
|
9890
|
-
* <p>A name of the datetime property to be searched</p>
|
|
9891
|
-
* @public
|
|
9892
|
-
*/
|
|
9893
|
-
FieldName?: string | undefined;
|
|
9894
|
-
/**
|
|
9895
|
-
* <p>A minimum value of the property.</p>
|
|
9896
|
-
* @public
|
|
9897
|
-
*/
|
|
9898
|
-
MinValue?: string | undefined;
|
|
9899
|
-
/**
|
|
9900
|
-
* <p>A maximum value of the property.</p>
|
|
9901
|
-
* @public
|
|
9902
|
-
*/
|
|
9903
|
-
MaxValue?: string | undefined;
|
|
9904
|
-
/**
|
|
9905
|
-
* <p>Datetime property comparison type.</p>
|
|
9906
|
-
* @public
|
|
9907
|
-
*/
|
|
9908
|
-
ComparisonType?: DateTimeComparisonType | undefined;
|
|
9909
|
-
}
|
|
@@ -1,7 +1,49 @@
|
|
|
1
|
-
import type { AgentAvailabilityTimer, AgentStatusState, AiUseCase, AnalyticsMode, AttachmentScope, AutoEvaluationStatus, Behavior, Channel, ChatEventType, ContactEvaluationAttributeComparisonType, ContactEvaluationAttributeKey, ContactFlowModuleState, ContactFlowState, ContactFlowType, ContactInitiationMethod, ContactInteractionType, ContactMediaProcessingFailureMode, ContactParticipantRole, ContactRecordingType, DataTableAttributeValueType, DataTableLockLevel, DateComparisonType, DecimalComparisonType, EmailHeaderType, EvaluationFormLanguageCode, EvaluationFormVersionStatus, EvaluationStatus, EvaluationType, FileStatusType, FileUseCaseType, HierarchyGroupMatchType, InboundMessageSourceType, InstanceAttributeType, InstanceStorageResourceType, IvrRecordingTrack, LocaleCode, MaskMode, MeetingFeatureStatus, MetricUnit, NotificationPriority, NotificationStatus, NotificationType, NumberComparisonType, OutboundMessageSourceType, OverrideType, ParticipantRole, ParticipantTimerAction, ParticipantTimerType, PerformanceCategoryName, Policy, QueueStatus, RehydrationType, ResponseMode, RuleCapabilityTier, RulePublishStatus, SearchContactsMatchType, SearchContactsTimeRangeConditionType, SearchContactsTimeRangeType, SortableFieldName, SortOrder, StringComparisonType, SummaryMode, TargetListType, TaskTemplateStatus, TestCaseExecutionStatus, TestCaseStatus, TimerEligibleParticipantRoles, TrafficType, TrendIndicator,
|
|
2
|
-
import type { ActionSummary, AfterContactWorkConfigPerChannel, AgentConfig, AgentHierarchyGroups, AiAgentInput, AiAgentsCriteria, AliasConfiguration, Application, ControlPlaneAttributeFilter, CreatedByInfo, DataTableLockVersion, ExtractionConfiguration, ExtractionDefinitionDisplay, FlowModule, GranularAccessControlConfiguration, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InputPredefinedAttributeConfiguration, InstanceStorageConfig, MediaConcurrency, MetricCalculation, OutboundCallerConfig, OutboundEmailConfig, OutboundStrategy, PredefinedAttributeValues, PrimaryValue, QuickConnectConfig, RecurrenceConfig, Reference, RoutingProfileQueueConfig, RuleAction, RuleTriggerEventSource, StringCondition, TagCondition, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField,
|
|
3
|
-
import type { AutoAcceptConfig, ContactFlow, ContactFlowModule, DataTable, EvaluationAnswerData, EvaluationNote, ExtensionConfiguration, HierarchyGroup, HoursOfOperation, HoursOfOperationOverride, MetricDefinition, PersistentConnectionConfig, PhoneNumberConfig, PredefinedAttribute, Prompt, Queue, QuickConnect, RoutingProfile, TestCase, TestCaseEntryPoint, UserIdentityInfo, UserPhoneConfig, View,
|
|
1
|
+
import type { AgentAvailabilityTimer, AgentStatusState, AiUseCase, AnalyticsMode, AttachmentScope, AutoEvaluationStatus, Behavior, BooleanComparisonType, Channel, ChatEventType, ContactEvaluationAttributeComparisonType, ContactEvaluationAttributeKey, ContactFlowModuleState, ContactFlowState, ContactFlowType, ContactInitiationMethod, ContactInteractionType, ContactMediaProcessingFailureMode, ContactParticipantRole, ContactRecordingType, DataTableAttributeValueType, DataTableLockLevel, DateComparisonType, DateTimeComparisonType, DecimalComparisonType, EmailHeaderType, EvaluationFormLanguageCode, EvaluationFormVersionStatus, EvaluationStatus, EvaluationType, FileStatusType, FileUseCaseType, HierarchyGroupMatchType, InboundMessageSourceType, InstanceAttributeType, InstanceStorageResourceType, IvrRecordingTrack, LocaleCode, MaskMode, MeetingFeatureStatus, MetricUnit, NotificationPriority, NotificationStatus, NotificationType, NumberComparisonType, OutboundMessageSourceType, OverrideType, ParticipantRole, ParticipantTimerAction, ParticipantTimerType, PerformanceCategoryName, Policy, QueueStatus, RehydrationType, ResponseMode, RuleCapabilityTier, RulePublishStatus, SearchContactsMatchType, SearchContactsTimeRangeConditionType, SearchContactsTimeRangeType, SortableFieldName, SortOrder, StringComparisonType, SummaryMode, TargetListType, TaskTemplateStatus, TestCaseExecutionStatus, TestCaseStatus, TimerEligibleParticipantRoles, TrafficType, TrendIndicator, Visibility, VocabularyLanguageCode, VocabularyState, VoiceRecordingTrack } from "./enums";
|
|
2
|
+
import type { ActionSummary, AfterContactWorkConfigPerChannel, AgentConfig, AgentHierarchyGroups, AiAgentInput, AiAgentsCriteria, AliasConfiguration, Application, ControlPlaneAttributeFilter, CreatedByInfo, DataTableLockVersion, ExtractionConfiguration, ExtractionDefinitionDisplay, FlowModule, GranularAccessControlConfiguration, HoursOfOperationConfig, HoursOfOperationOverrideConfig, InputPredefinedAttributeConfiguration, InstanceStorageConfig, MediaConcurrency, MetricCalculation, OutboundCallerConfig, OutboundEmailConfig, OutboundStrategy, PredefinedAttributeValues, PrimaryValue, QuickConnectConfig, RecurrenceConfig, Reference, RoutingProfileQueueConfig, RuleAction, RuleTriggerEventSource, StringCondition, TagCondition, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, Validation } from "./models_0";
|
|
3
|
+
import type { AutoAcceptConfig, ContactFlow, ContactFlowModule, DataTable, EvaluationAnswerData, EvaluationNote, ExtensionConfiguration, HierarchyGroup, HoursOfOperation, HoursOfOperationOverride, MetricDefinition, PersistentConnectionConfig, PhoneNumberConfig, PredefinedAttribute, Prompt, Queue, QuickConnect, RoutingProfile, TestCase, TestCaseEntryPoint, UserIdentityInfo, UserPhoneConfig, View, VoiceEnhancementConfig } from "./models_1";
|
|
4
4
|
import type { SignInConfig, TelephonyConfig } from "./models_2";
|
|
5
|
+
/**
|
|
6
|
+
* <p>A boolean search condition for Search APIs.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface BooleanCondition {
|
|
10
|
+
/**
|
|
11
|
+
* <p>A name of the property to be searched.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
FieldName?: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>Boolean property comparison type.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
ComparisonType?: BooleanComparisonType | undefined;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* <p>A datetime search condition for Search APIs.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export interface DateTimeCondition {
|
|
26
|
+
/**
|
|
27
|
+
* <p>A name of the datetime property to be searched</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
FieldName?: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>A minimum value of the property.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
MinValue?: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>A maximum value of the property.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
MaxValue?: string | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>Datetime property comparison type.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
ComparisonType?: DateTimeComparisonType | undefined;
|
|
46
|
+
}
|
|
5
47
|
/**
|
|
6
48
|
* <p>A decimal search condition for Search APIs.</p>
|
|
7
49
|
* @public
|
|
@@ -5214,6 +5256,27 @@ export interface UpdateContactTaskTemplateRequest {
|
|
|
5214
5256
|
*/
|
|
5215
5257
|
export interface UpdateContactTaskTemplateResponse {
|
|
5216
5258
|
}
|
|
5259
|
+
/**
|
|
5260
|
+
* @public
|
|
5261
|
+
*/
|
|
5262
|
+
export interface UpdateCrossRegionRoutingRequest {
|
|
5263
|
+
/**
|
|
5264
|
+
* <p>The identifier of the Connect Customer instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
5265
|
+
* @public
|
|
5266
|
+
*/
|
|
5267
|
+
InstanceId: string | undefined;
|
|
5268
|
+
/**
|
|
5269
|
+
* <p>Set to <code>true</code> to disable cross-region routing for all Regions associated with this instance.
|
|
5270
|
+
* Set to <code>false</code> to re-enable cross-region routing.</p>
|
|
5271
|
+
* @public
|
|
5272
|
+
*/
|
|
5273
|
+
IsolatedAll: boolean | undefined;
|
|
5274
|
+
}
|
|
5275
|
+
/**
|
|
5276
|
+
* @public
|
|
5277
|
+
*/
|
|
5278
|
+
export interface UpdateCrossRegionRoutingResponse {
|
|
5279
|
+
}
|
|
5217
5280
|
/**
|
|
5218
5281
|
* @public
|
|
5219
5282
|
*/
|
|
@@ -6890,94 +6953,3 @@ export interface UpdateUserPhoneConfigRequest {
|
|
|
6890
6953
|
*/
|
|
6891
6954
|
InstanceId: string | undefined;
|
|
6892
6955
|
}
|
|
6893
|
-
/**
|
|
6894
|
-
* @public
|
|
6895
|
-
*/
|
|
6896
|
-
export interface UpdateUserProficienciesRequest {
|
|
6897
|
-
/**
|
|
6898
|
-
* <p> The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the
|
|
6899
|
-
* instance.</p>
|
|
6900
|
-
* @public
|
|
6901
|
-
*/
|
|
6902
|
-
InstanceId: string | undefined;
|
|
6903
|
-
/**
|
|
6904
|
-
* <p>The identifier of the user account.</p>
|
|
6905
|
-
* @public
|
|
6906
|
-
*/
|
|
6907
|
-
UserId: string | undefined;
|
|
6908
|
-
/**
|
|
6909
|
-
* <p>The proficiencies to be updated for the user. Proficiencies must first be associated to the user. You can do
|
|
6910
|
-
* this using AssociateUserProficiencies API.</p>
|
|
6911
|
-
* @public
|
|
6912
|
-
*/
|
|
6913
|
-
UserProficiencies: UserProficiency[] | undefined;
|
|
6914
|
-
}
|
|
6915
|
-
/**
|
|
6916
|
-
* @public
|
|
6917
|
-
*/
|
|
6918
|
-
export interface UpdateUserRoutingProfileRequest {
|
|
6919
|
-
/**
|
|
6920
|
-
* <p>The identifier of the routing profile for the user.</p>
|
|
6921
|
-
* @public
|
|
6922
|
-
*/
|
|
6923
|
-
RoutingProfileId: string | undefined;
|
|
6924
|
-
/**
|
|
6925
|
-
* <p>The identifier of the user account.</p>
|
|
6926
|
-
* @public
|
|
6927
|
-
*/
|
|
6928
|
-
UserId: string | undefined;
|
|
6929
|
-
/**
|
|
6930
|
-
* <p>The identifier of the Connect Customer instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
6931
|
-
* @public
|
|
6932
|
-
*/
|
|
6933
|
-
InstanceId: string | undefined;
|
|
6934
|
-
}
|
|
6935
|
-
/**
|
|
6936
|
-
* @public
|
|
6937
|
-
*/
|
|
6938
|
-
export interface UpdateUserSecurityProfilesRequest {
|
|
6939
|
-
/**
|
|
6940
|
-
* <p>The identifiers of the security profiles for the user.</p>
|
|
6941
|
-
* @public
|
|
6942
|
-
*/
|
|
6943
|
-
SecurityProfileIds: string[] | undefined;
|
|
6944
|
-
/**
|
|
6945
|
-
* <p>The identifier of the user account.</p>
|
|
6946
|
-
* @public
|
|
6947
|
-
*/
|
|
6948
|
-
UserId: string | undefined;
|
|
6949
|
-
/**
|
|
6950
|
-
* <p>The identifier of the Connect Customer instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
6951
|
-
* @public
|
|
6952
|
-
*/
|
|
6953
|
-
InstanceId: string | undefined;
|
|
6954
|
-
}
|
|
6955
|
-
/**
|
|
6956
|
-
* @public
|
|
6957
|
-
*/
|
|
6958
|
-
export interface UpdateViewContentRequest {
|
|
6959
|
-
/**
|
|
6960
|
-
* <p>The identifier of the Connect Customer instance. You can find the instanceId in the ARN of the
|
|
6961
|
-
* instance.</p>
|
|
6962
|
-
* @public
|
|
6963
|
-
*/
|
|
6964
|
-
InstanceId: string | undefined;
|
|
6965
|
-
/**
|
|
6966
|
-
* <p>The identifier of the view. Both <code>ViewArn</code> and <code>ViewId</code> can be used.</p>
|
|
6967
|
-
* @public
|
|
6968
|
-
*/
|
|
6969
|
-
ViewId: string | undefined;
|
|
6970
|
-
/**
|
|
6971
|
-
* <p>Indicates the view status as either <code>SAVED</code> or <code>PUBLISHED</code>. The <code>PUBLISHED</code>
|
|
6972
|
-
* status will initiate validation on the content.</p>
|
|
6973
|
-
* @public
|
|
6974
|
-
*/
|
|
6975
|
-
Status: ViewStatus | undefined;
|
|
6976
|
-
/**
|
|
6977
|
-
* <p>View content containing all content necessary to render a view except for runtime input data and the runtime
|
|
6978
|
-
* input schema, which is auto-generated by this operation.</p>
|
|
6979
|
-
* <p>The total uncompressed content has a maximum file size of 400kB.</p>
|
|
6980
|
-
* @public
|
|
6981
|
-
*/
|
|
6982
|
-
Content: ViewInputContent | undefined;
|
|
6983
|
-
}
|
|
@@ -1,8 +1,98 @@
|
|
|
1
1
|
import type { AnsweringMachineDetectionStatus, Channel, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, DisconnectOnCustomerExitParticipantType, EvaluationFormItemEnablementAction, EvaluationFormItemEnablementOperator, EvaluationFormQuestionType, EvaluationFormValidationStatus, EvaluationFormVersionStatus, InitiateAs, RoutingCriteriaStepStatus, SearchableQueueType, TestCaseStatus, ViewStatus, ViewType, Visibility } from "./enums";
|
|
2
|
-
import type { AdditionalEmailRecipients, AgentInfo, AgentStatusSearchFilter, AllowedCapabilities, Campaign, Endpoint, EvaluationFormAutoEvaluationConfiguration, EvaluationFormItemEnablementExpression, EvaluationFormLanguageConfiguration, EvaluationFormQuestionScoringConfiguration, EvaluationFormQuestionTypeProperties, EvaluationFormScoreThreshold, EvaluationFormScoringStrategy, EvaluationFormTargetConfiguration, EvaluationReviewConfiguration, OutboundStrategy, Reference, StringCondition, UserInfo } from "./models_0";
|
|
3
|
-
import type { AttributeCondition, ChatMetrics, ContactDetails, ContactEvaluation, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, Expiry, GlobalResiliencyMetadata, NextContactEntry, QualityMetrics, QueueInfo, RecordingInfo, TaskTemplateInfoV2, View, WisdomInfo, WorkspaceTheme } from "./models_1";
|
|
4
|
-
import type { BooleanCondition, DateTimeCondition } from "./
|
|
5
|
-
|
|
2
|
+
import type { AdditionalEmailRecipients, AgentInfo, AgentStatusSearchFilter, AllowedCapabilities, Campaign, Endpoint, EvaluationFormAutoEvaluationConfiguration, EvaluationFormItemEnablementExpression, EvaluationFormLanguageConfiguration, EvaluationFormQuestionScoringConfiguration, EvaluationFormQuestionTypeProperties, EvaluationFormScoreThreshold, EvaluationFormScoringStrategy, EvaluationFormTargetConfiguration, EvaluationReviewConfiguration, OutboundStrategy, Reference, StringCondition, UserInfo, UserProficiency } from "./models_0";
|
|
3
|
+
import type { AttributeCondition, ChatMetrics, ContactDetails, ContactEvaluation, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, Expiry, GlobalResiliencyMetadata, NextContactEntry, QualityMetrics, QueueInfo, RecordingInfo, TaskTemplateInfoV2, View, ViewInputContent, WisdomInfo, WorkspaceTheme } from "./models_1";
|
|
4
|
+
import type { BooleanCondition, ChatMessage, ContactFlowModuleSearchFilter, ContactFlowSearchFilter, ContactSearchSummaryAgentInfo, ContactSearchSummaryAiAgentInfo, ContactSearchSummaryQueueInfo, DataTableSearchFilter, DateCondition, DateTimeCondition, DecimalCondition, EmailAddressInfo, EmailAddressSearchFilter, EmailAttachment, EvaluationFormSearchFilter, EvaluationSearchFilter, HierarchyGroupCondition, HoursOfOperationSearchFilter, InboundAdditionalRecipients, InboundEmailContent, ListCondition, MetricSearchFilter, NotificationSearchFilter, NumberCondition, ParticipantConfiguration, ParticipantDetails, PersistentChat, PromptSearchFilter, QueueInfoInput, QueueSearchFilter, QuickConnectSearchFilter, RoutingCriteriaInputStepExpiry, RoutingProfileSearchFilter, RulesSearchFilter, SecurityProfilesSearchFilter, TaskAttachment, TemplatedMessageConfig, TestCaseSearchFilter, UserHierarchyGroupSearchFilter, UserSearchFilter, ViewSearchFilter, WorkspaceAssociationSearchFilter, WorkspaceSearchFilter } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface UpdateUserProficienciesRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p> The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the
|
|
11
|
+
* instance.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
InstanceId: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The identifier of the user account.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
UserId: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The proficiencies to be updated for the user. Proficiencies must first be associated to the user. You can do
|
|
22
|
+
* this using AssociateUserProficiencies API.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
UserProficiencies: UserProficiency[] | undefined;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export interface UpdateUserRoutingProfileRequest {
|
|
31
|
+
/**
|
|
32
|
+
* <p>The identifier of the routing profile for the user.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
RoutingProfileId: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The identifier of the user account.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
UserId: string | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>The identifier of the Connect Customer instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
InstanceId: string | undefined;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export interface UpdateUserSecurityProfilesRequest {
|
|
51
|
+
/**
|
|
52
|
+
* <p>The identifiers of the security profiles for the user.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
SecurityProfileIds: string[] | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The identifier of the user account.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
UserId: string | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The identifier of the Connect Customer instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
InstanceId: string | undefined;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export interface UpdateViewContentRequest {
|
|
71
|
+
/**
|
|
72
|
+
* <p>The identifier of the Connect Customer instance. You can find the instanceId in the ARN of the
|
|
73
|
+
* instance.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
InstanceId: string | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* <p>The identifier of the view. Both <code>ViewArn</code> and <code>ViewId</code> can be used.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
ViewId: string | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* <p>Indicates the view status as either <code>SAVED</code> or <code>PUBLISHED</code>. The <code>PUBLISHED</code>
|
|
84
|
+
* status will initiate validation on the content.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
Status: ViewStatus | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* <p>View content containing all content necessary to render a view except for runtime input data and the runtime
|
|
90
|
+
* input schema, which is auto-generated by this operation.</p>
|
|
91
|
+
* <p>The total uncompressed content has a maximum file size of 400kB.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
Content: ViewInputContent | undefined;
|
|
95
|
+
}
|
|
6
96
|
/**
|
|
7
97
|
* @public
|
|
8
98
|
*/
|
|
@@ -587,6 +587,8 @@ export declare var GetContactAttributesRequest$: StaticStructureSchema;
|
|
|
587
587
|
export declare var GetContactAttributesResponse$: StaticStructureSchema;
|
|
588
588
|
export declare var GetContactMetricsRequest$: StaticStructureSchema;
|
|
589
589
|
export declare var GetContactMetricsResponse$: StaticStructureSchema;
|
|
590
|
+
export declare var GetCrossRegionRoutingRequest$: StaticStructureSchema;
|
|
591
|
+
export declare var GetCrossRegionRoutingResponse$: StaticStructureSchema;
|
|
590
592
|
export declare var GetCurrentMetricDataRequest$: StaticStructureSchema;
|
|
591
593
|
export declare var GetCurrentMetricDataResponse$: StaticStructureSchema;
|
|
592
594
|
export declare var GetCurrentUserDataRequest$: StaticStructureSchema;
|
|
@@ -1177,6 +1179,8 @@ export declare var UpdateContactScheduleRequest$: StaticStructureSchema;
|
|
|
1177
1179
|
export declare var UpdateContactScheduleResponse$: StaticStructureSchema;
|
|
1178
1180
|
export declare var UpdateContactTaskTemplateRequest$: StaticStructureSchema;
|
|
1179
1181
|
export declare var UpdateContactTaskTemplateResponse$: StaticStructureSchema;
|
|
1182
|
+
export declare var UpdateCrossRegionRoutingRequest$: StaticStructureSchema;
|
|
1183
|
+
export declare var UpdateCrossRegionRoutingResponse$: StaticStructureSchema;
|
|
1180
1184
|
export declare var UpdateDataTableAttributeRequest$: StaticStructureSchema;
|
|
1181
1185
|
export declare var UpdateDataTableAttributeResponse$: StaticStructureSchema;
|
|
1182
1186
|
export declare var UpdateDataTableMetadataRequest$: StaticStructureSchema;
|
|
@@ -1499,6 +1503,7 @@ export declare var EvaluateDataTableValues$: StaticOperationSchema;
|
|
|
1499
1503
|
export declare var GetAttachedFile$: StaticOperationSchema;
|
|
1500
1504
|
export declare var GetContactAttributes$: StaticOperationSchema;
|
|
1501
1505
|
export declare var GetContactMetrics$: StaticOperationSchema;
|
|
1506
|
+
export declare var GetCrossRegionRouting$: StaticOperationSchema;
|
|
1502
1507
|
export declare var GetCurrentMetricData$: StaticOperationSchema;
|
|
1503
1508
|
export declare var GetCurrentUserData$: StaticOperationSchema;
|
|
1504
1509
|
export declare var GetEffectiveHoursOfOperations$: StaticOperationSchema;
|
|
@@ -1666,6 +1671,7 @@ export declare var UpdateContactFlowName$: StaticOperationSchema;
|
|
|
1666
1671
|
export declare var UpdateContactRoutingData$: StaticOperationSchema;
|
|
1667
1672
|
export declare var UpdateContactSchedule$: StaticOperationSchema;
|
|
1668
1673
|
export declare var UpdateContactTaskTemplate$: StaticOperationSchema;
|
|
1674
|
+
export declare var UpdateCrossRegionRouting$: StaticOperationSchema;
|
|
1669
1675
|
export declare var UpdateDataTableAttribute$: StaticOperationSchema;
|
|
1670
1676
|
export declare var UpdateDataTableMetadata$: StaticOperationSchema;
|
|
1671
1677
|
export declare var UpdateDataTablePrimaryValues$: StaticOperationSchema;
|
|
@@ -671,6 +671,10 @@ import {
|
|
|
671
671
|
GetContactMetricsCommandInput,
|
|
672
672
|
GetContactMetricsCommandOutput,
|
|
673
673
|
} from "./commands/GetContactMetricsCommand";
|
|
674
|
+
import {
|
|
675
|
+
GetCrossRegionRoutingCommandInput,
|
|
676
|
+
GetCrossRegionRoutingCommandOutput,
|
|
677
|
+
} from "./commands/GetCrossRegionRoutingCommand";
|
|
674
678
|
import {
|
|
675
679
|
GetCurrentMetricDataCommandInput,
|
|
676
680
|
GetCurrentMetricDataCommandOutput,
|
|
@@ -1297,6 +1301,10 @@ import {
|
|
|
1297
1301
|
UpdateContactTaskTemplateCommandInput,
|
|
1298
1302
|
UpdateContactTaskTemplateCommandOutput,
|
|
1299
1303
|
} from "./commands/UpdateContactTaskTemplateCommand";
|
|
1304
|
+
import {
|
|
1305
|
+
UpdateCrossRegionRoutingCommandInput,
|
|
1306
|
+
UpdateCrossRegionRoutingCommandOutput,
|
|
1307
|
+
} from "./commands/UpdateCrossRegionRoutingCommand";
|
|
1300
1308
|
import {
|
|
1301
1309
|
UpdateDataTableAttributeCommandInput,
|
|
1302
1310
|
UpdateDataTableAttributeCommandOutput,
|
|
@@ -3757,6 +3765,19 @@ export interface Connect {
|
|
|
3757
3765
|
options: __HttpHandlerOptions,
|
|
3758
3766
|
cb: (err: any, data?: GetContactMetricsCommandOutput) => void,
|
|
3759
3767
|
): void;
|
|
3768
|
+
getCrossRegionRouting(
|
|
3769
|
+
args: GetCrossRegionRoutingCommandInput,
|
|
3770
|
+
options?: __HttpHandlerOptions,
|
|
3771
|
+
): Promise<GetCrossRegionRoutingCommandOutput>;
|
|
3772
|
+
getCrossRegionRouting(
|
|
3773
|
+
args: GetCrossRegionRoutingCommandInput,
|
|
3774
|
+
cb: (err: any, data?: GetCrossRegionRoutingCommandOutput) => void,
|
|
3775
|
+
): void;
|
|
3776
|
+
getCrossRegionRouting(
|
|
3777
|
+
args: GetCrossRegionRoutingCommandInput,
|
|
3778
|
+
options: __HttpHandlerOptions,
|
|
3779
|
+
cb: (err: any, data?: GetCrossRegionRoutingCommandOutput) => void,
|
|
3780
|
+
): void;
|
|
3760
3781
|
getCurrentMetricData(
|
|
3761
3782
|
args: GetCurrentMetricDataCommandInput,
|
|
3762
3783
|
options?: __HttpHandlerOptions,
|
|
@@ -5930,6 +5951,19 @@ export interface Connect {
|
|
|
5930
5951
|
options: __HttpHandlerOptions,
|
|
5931
5952
|
cb: (err: any, data?: UpdateContactTaskTemplateCommandOutput) => void,
|
|
5932
5953
|
): void;
|
|
5954
|
+
updateCrossRegionRouting(
|
|
5955
|
+
args: UpdateCrossRegionRoutingCommandInput,
|
|
5956
|
+
options?: __HttpHandlerOptions,
|
|
5957
|
+
): Promise<UpdateCrossRegionRoutingCommandOutput>;
|
|
5958
|
+
updateCrossRegionRouting(
|
|
5959
|
+
args: UpdateCrossRegionRoutingCommandInput,
|
|
5960
|
+
cb: (err: any, data?: UpdateCrossRegionRoutingCommandOutput) => void,
|
|
5961
|
+
): void;
|
|
5962
|
+
updateCrossRegionRouting(
|
|
5963
|
+
args: UpdateCrossRegionRoutingCommandInput,
|
|
5964
|
+
options: __HttpHandlerOptions,
|
|
5965
|
+
cb: (err: any, data?: UpdateCrossRegionRoutingCommandOutput) => void,
|
|
5966
|
+
): void;
|
|
5933
5967
|
updateDataTableAttribute(
|
|
5934
5968
|
args: UpdateDataTableAttributeCommandInput,
|
|
5935
5969
|
options?: __HttpHandlerOptions,
|
|
@@ -701,6 +701,10 @@ import {
|
|
|
701
701
|
GetContactMetricsCommandInput,
|
|
702
702
|
GetContactMetricsCommandOutput,
|
|
703
703
|
} from "./commands/GetContactMetricsCommand";
|
|
704
|
+
import {
|
|
705
|
+
GetCrossRegionRoutingCommandInput,
|
|
706
|
+
GetCrossRegionRoutingCommandOutput,
|
|
707
|
+
} from "./commands/GetCrossRegionRoutingCommand";
|
|
704
708
|
import {
|
|
705
709
|
GetCurrentMetricDataCommandInput,
|
|
706
710
|
GetCurrentMetricDataCommandOutput,
|
|
@@ -1327,6 +1331,10 @@ import {
|
|
|
1327
1331
|
UpdateContactTaskTemplateCommandInput,
|
|
1328
1332
|
UpdateContactTaskTemplateCommandOutput,
|
|
1329
1333
|
} from "./commands/UpdateContactTaskTemplateCommand";
|
|
1334
|
+
import {
|
|
1335
|
+
UpdateCrossRegionRoutingCommandInput,
|
|
1336
|
+
UpdateCrossRegionRoutingCommandOutput,
|
|
1337
|
+
} from "./commands/UpdateCrossRegionRoutingCommand";
|
|
1330
1338
|
import {
|
|
1331
1339
|
UpdateDataTableAttributeCommandInput,
|
|
1332
1340
|
UpdateDataTableAttributeCommandOutput,
|
|
@@ -1717,6 +1725,7 @@ export type ServiceInputTypes =
|
|
|
1717
1725
|
| GetAttachedFileCommandInput
|
|
1718
1726
|
| GetContactAttributesCommandInput
|
|
1719
1727
|
| GetContactMetricsCommandInput
|
|
1728
|
+
| GetCrossRegionRoutingCommandInput
|
|
1720
1729
|
| GetCurrentMetricDataCommandInput
|
|
1721
1730
|
| GetCurrentUserDataCommandInput
|
|
1722
1731
|
| GetEffectiveHoursOfOperationsCommandInput
|
|
@@ -1884,6 +1893,7 @@ export type ServiceInputTypes =
|
|
|
1884
1893
|
| UpdateContactRoutingDataCommandInput
|
|
1885
1894
|
| UpdateContactScheduleCommandInput
|
|
1886
1895
|
| UpdateContactTaskTemplateCommandInput
|
|
1896
|
+
| UpdateCrossRegionRoutingCommandInput
|
|
1887
1897
|
| UpdateDataTableAttributeCommandInput
|
|
1888
1898
|
| UpdateDataTableMetadataCommandInput
|
|
1889
1899
|
| UpdateDataTablePrimaryValuesCommandInput
|
|
@@ -2111,6 +2121,7 @@ export type ServiceOutputTypes =
|
|
|
2111
2121
|
| GetAttachedFileCommandOutput
|
|
2112
2122
|
| GetContactAttributesCommandOutput
|
|
2113
2123
|
| GetContactMetricsCommandOutput
|
|
2124
|
+
| GetCrossRegionRoutingCommandOutput
|
|
2114
2125
|
| GetCurrentMetricDataCommandOutput
|
|
2115
2126
|
| GetCurrentUserDataCommandOutput
|
|
2116
2127
|
| GetEffectiveHoursOfOperationsCommandOutput
|
|
@@ -2278,6 +2289,7 @@ export type ServiceOutputTypes =
|
|
|
2278
2289
|
| UpdateContactRoutingDataCommandOutput
|
|
2279
2290
|
| UpdateContactScheduleCommandOutput
|
|
2280
2291
|
| UpdateContactTaskTemplateCommandOutput
|
|
2292
|
+
| UpdateCrossRegionRoutingCommandOutput
|
|
2281
2293
|
| UpdateDataTableAttributeCommandOutput
|
|
2282
2294
|
| UpdateDataTableMetadataCommandOutput
|
|
2283
2295
|
| UpdateDataTablePrimaryValuesCommandOutput
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { GetCrossRegionRoutingRequest, GetCrossRegionRoutingResponse } from "../models/models_1";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface GetCrossRegionRoutingCommandInput extends GetCrossRegionRoutingRequest {}
|
|
5
|
+
export interface GetCrossRegionRoutingCommandOutput
|
|
6
|
+
extends GetCrossRegionRoutingResponse, __MetadataBearer {}
|
|
7
|
+
declare const GetCrossRegionRoutingCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: GetCrossRegionRoutingCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
GetCrossRegionRoutingCommandInput,
|
|
12
|
+
GetCrossRegionRoutingCommandOutput,
|
|
13
|
+
import("..").ConnectClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: GetCrossRegionRoutingCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
GetCrossRegionRoutingCommandInput,
|
|
21
|
+
GetCrossRegionRoutingCommandOutput,
|
|
22
|
+
import("..").ConnectClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class GetCrossRegionRoutingCommand extends GetCrossRegionRoutingCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: GetCrossRegionRoutingRequest;
|
|
32
|
+
output: GetCrossRegionRoutingResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: GetCrossRegionRoutingCommandInput;
|
|
36
|
+
output: GetCrossRegionRoutingCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
UpdateCrossRegionRoutingRequest,
|
|
4
|
+
UpdateCrossRegionRoutingResponse,
|
|
5
|
+
} from "../models/models_3";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface UpdateCrossRegionRoutingCommandInput extends UpdateCrossRegionRoutingRequest {}
|
|
8
|
+
export interface UpdateCrossRegionRoutingCommandOutput
|
|
9
|
+
extends UpdateCrossRegionRoutingResponse, __MetadataBearer {}
|
|
10
|
+
declare const UpdateCrossRegionRoutingCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: UpdateCrossRegionRoutingCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
UpdateCrossRegionRoutingCommandInput,
|
|
15
|
+
UpdateCrossRegionRoutingCommandOutput,
|
|
16
|
+
import("..").ConnectClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateCrossRegionRoutingCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
UpdateCrossRegionRoutingCommandInput,
|
|
24
|
+
UpdateCrossRegionRoutingCommandOutput,
|
|
25
|
+
import("..").ConnectClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class UpdateCrossRegionRoutingCommand extends UpdateCrossRegionRoutingCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: UpdateCrossRegionRoutingRequest;
|
|
35
|
+
output: {};
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: UpdateCrossRegionRoutingCommandInput;
|
|
39
|
+
output: UpdateCrossRegionRoutingCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { UpdateUserProficienciesRequest } from "../models/
|
|
2
|
+
import { UpdateUserProficienciesRequest } from "../models/models_4";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateUserProficienciesCommandInput extends UpdateUserProficienciesRequest {}
|
|
5
5
|
export interface UpdateUserProficienciesCommandOutput extends __MetadataBearer {}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import { UpdateUserRoutingProfileRequest } from "../models/
|
|
2
|
+
import { UpdateUserRoutingProfileRequest } from "../models/models_4";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateUserRoutingProfileCommandInput extends UpdateUserRoutingProfileRequest {}
|
|
5
5
|
export interface UpdateUserRoutingProfileCommandOutput extends __MetadataBearer {}
|