@aws-sdk/client-connect 3.607.0 → 3.609.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 +38 -0
- package/dist-cjs/index.js +178 -0
- package/dist-es/Connect.js +6 -0
- package/dist-es/commands/DescribeAuthenticationProfileCommand.js +24 -0
- package/dist-es/commands/ListAuthenticationProfilesCommand.js +24 -0
- package/dist-es/commands/UpdateAuthenticationProfileCommand.js +24 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/pagination/ListAuthenticationProfilesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +115 -0
- package/dist-types/Connect.d.ts +36 -1
- package/dist-types/ConnectClient.d.ts +20 -3
- package/dist-types/commands/DescribeAuthenticationProfileCommand.d.ts +95 -0
- package/dist-types/commands/ListAuthenticationProfilesCommand.d.ts +89 -0
- package/dist-types/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserProficienciesCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersCommand.d.ts +1 -2
- package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +1 -2
- package/dist-types/commands/UpdateAuthenticationProfileCommand.d.ts +85 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +15 -1
- package/dist-types/models/models_0.d.ts +114 -69
- package/dist-types/models/models_1.d.ts +143 -141
- package/dist-types/models/models_2.d.ts +194 -6
- package/dist-types/pagination/ListAuthenticationProfilesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/Connect.d.ts +51 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DescribeAuthenticationProfileCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListAuthenticationProfilesCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUserProficienciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UpdateAuthenticationProfileCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +21 -14
- package/dist-types/ts3.4/models/models_1.d.ts +31 -37
- package/dist-types/ts3.4/models/models_2.d.ts +44 -2
- package/dist-types/ts3.4/pagination/ListAuthenticationProfilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +35 -35
|
@@ -1,7 +1,147 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { AgentAvailabilityTimer, AgentConfig, AgentHierarchyGroups, AgentInfo, AgentStatusState, AllowedCapabilities, AnsweringMachineDetectionStatus, Application, AttributeCondition, Campaign, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, CreatedByInfo, Customer, CustomerVoiceActivity, DisconnectDetails, EvaluationAnswerData, EvaluationFormQuestion, EvaluationFormScoringStrategy,
|
|
4
|
-
import { ContactFlow, ContactFlowModule, ContactFlowModuleState, ContactFlowState, Evaluation, EvaluationFormVersionStatus, HoursOfOperation, InstanceAttributeType, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue, QueueStatus, QuickConnect, RoutingProfile, SignInConfig, SortOrder, TelephonyConfig
|
|
3
|
+
import { AgentAvailabilityTimer, AgentConfig, AgentHierarchyGroups, AgentInfo, AgentStatusState, AllowedCapabilities, AnsweringMachineDetectionStatus, Application, AttributeCondition, Campaign, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, CreatedByInfo, Customer, CustomerVoiceActivity, DisconnectDetails, EvaluationAnswerData, EvaluationFormQuestion, EvaluationFormScoringStrategy, Expiry, FileStatusType, FileUseCaseType, HoursOfOperationConfig, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, MonitorCapability, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QualityMetrics, QueueInfo, QuickConnectConfig, Reference, RehydrationType, RoutingCriteriaStepStatus, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, SegmentAttributeValue, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, UserProficiency, View, ViewInputContent, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState, WisdomInfo } from "./models_0";
|
|
4
|
+
import { ContactFlow, ContactFlowModule, ContactFlowModuleState, ContactFlowState, Evaluation, EvaluationFormVersionStatus, EvaluationNote, HierarchyGroupSummary, HoursOfOperation, InstanceAttributeType, PhoneNumberCountryCode, PhoneNumberType, PredefinedAttribute, Prompt, Queue, QueueStatus, QuickConnect, RoutingProfile, SignInConfig, SortOrder, TelephonyConfig } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface ListUserHierarchyGroupsRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The identifier of the Amazon Connect 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>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
InstanceId: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
16
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
NextToken?: string;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
MaxResults?: number;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export interface ListUserHierarchyGroupsResponse {
|
|
30
|
+
/**
|
|
31
|
+
* <p>Information about the hierarchy groups.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
|
|
35
|
+
/**
|
|
36
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
NextToken?: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export interface ListUserProficienciesRequest {
|
|
45
|
+
/**
|
|
46
|
+
* <p>The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource
|
|
47
|
+
* Name (ARN) of the instance.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
InstanceId: string | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The identifier of the user account.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
UserId: string | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in
|
|
58
|
+
* the next request to retrieve the next set of results.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
NextToken?: string;
|
|
62
|
+
/**
|
|
63
|
+
* <p>The maximum number of results to return per page.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
MaxResults?: number;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export interface ListUserProficienciesResponse {
|
|
72
|
+
/**
|
|
73
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
NextToken?: string;
|
|
77
|
+
/**
|
|
78
|
+
* <p>Information about the user proficiencies.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
UserProficiencyList?: UserProficiency[];
|
|
82
|
+
/**
|
|
83
|
+
* <p>The last time that the user's proficiencies are were modified.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
LastModifiedTime?: Date;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The region in which a user's proficiencies were last modified.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
LastModifiedRegion?: string;
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export interface ListUsersRequest {
|
|
97
|
+
/**
|
|
98
|
+
* <p>The identifier of the Amazon Connect 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>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
InstanceId: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
104
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
NextToken?: string;
|
|
108
|
+
/**
|
|
109
|
+
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
MaxResults?: number;
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* <p>Contains summary information about a user.</p>
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export interface UserSummary {
|
|
119
|
+
/**
|
|
120
|
+
* <p>The identifier of the user account.</p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
Id?: string;
|
|
124
|
+
/**
|
|
125
|
+
* <p>The Amazon Resource Name (ARN) of the user account.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
Arn?: string;
|
|
129
|
+
/**
|
|
130
|
+
* <p>The Amazon Connect user name of the user account.</p>
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
Username?: string;
|
|
134
|
+
/**
|
|
135
|
+
* <p>The timestamp when this resource was last modified.</p>
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
LastModifiedTime?: Date;
|
|
139
|
+
/**
|
|
140
|
+
* <p>The Amazon Web Services Region where this resource was last modified.</p>
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
LastModifiedRegion?: string;
|
|
144
|
+
}
|
|
5
145
|
/**
|
|
6
146
|
* @public
|
|
7
147
|
*/
|
|
@@ -650,7 +790,7 @@ export interface ContactFlowSearchFilter {
|
|
|
650
790
|
*/
|
|
651
791
|
export interface SearchContactFlowsResponse {
|
|
652
792
|
/**
|
|
653
|
-
* <p>Information about the
|
|
793
|
+
* <p>Information about the flows.</p>
|
|
654
794
|
* @public
|
|
655
795
|
*/
|
|
656
796
|
ContactFlows?: ContactFlow[];
|
|
@@ -1991,7 +2131,7 @@ export interface StartAttachedFileUploadRequest {
|
|
|
1991
2131
|
*/
|
|
1992
2132
|
ClientToken?: string;
|
|
1993
2133
|
/**
|
|
1994
|
-
* <p>The unique identifier of the Connect instance.</p>
|
|
2134
|
+
* <p>The unique identifier of the Amazon Connect instance.</p>
|
|
1995
2135
|
* @public
|
|
1996
2136
|
*/
|
|
1997
2137
|
InstanceId: string | undefined;
|
|
@@ -2734,8 +2874,7 @@ export interface StartWebRTCContactRequest {
|
|
|
2734
2874
|
ClientToken?: string;
|
|
2735
2875
|
/**
|
|
2736
2876
|
* <p>The identifier of the flow for the call. To see the ContactFlowId in the Amazon Connect admin website, on the
|
|
2737
|
-
* navigation menu go to <b>Routing</b>, <b>
|
|
2738
|
-
* Flows</b>. Choose the flow. On the flow page, under the name of the flow, choose
|
|
2877
|
+
* navigation menu go to <b>Routing</b>, <b>Flows</b>. Choose the flow. On the flow page, under the name of the flow, choose
|
|
2739
2878
|
* <b>Show additional flow information</b>. The ContactFlowId is the last
|
|
2740
2879
|
* part of the ARN, shown here in bold: </p>
|
|
2741
2880
|
* <p>arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/<b>846ec553-a005-41c0-8341-xxxxxxxxxxxx</b>
|
|
@@ -3294,6 +3433,55 @@ export interface UpdateAgentStatusRequest {
|
|
|
3294
3433
|
*/
|
|
3295
3434
|
ResetOrderNumber?: boolean;
|
|
3296
3435
|
}
|
|
3436
|
+
/**
|
|
3437
|
+
* @public
|
|
3438
|
+
*/
|
|
3439
|
+
export interface UpdateAuthenticationProfileRequest {
|
|
3440
|
+
/**
|
|
3441
|
+
* <p>A unique identifier for the authentication profile. </p>
|
|
3442
|
+
* @public
|
|
3443
|
+
*/
|
|
3444
|
+
AuthenticationProfileId: string | undefined;
|
|
3445
|
+
/**
|
|
3446
|
+
* <p>The identifier of the Amazon Connect 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>
|
|
3447
|
+
* @public
|
|
3448
|
+
*/
|
|
3449
|
+
InstanceId: string | undefined;
|
|
3450
|
+
/**
|
|
3451
|
+
* <p>The name for the authentication profile.</p>
|
|
3452
|
+
* @public
|
|
3453
|
+
*/
|
|
3454
|
+
Name?: string;
|
|
3455
|
+
/**
|
|
3456
|
+
* <p>The description for the authentication profile.</p>
|
|
3457
|
+
* @public
|
|
3458
|
+
*/
|
|
3459
|
+
Description?: string;
|
|
3460
|
+
/**
|
|
3461
|
+
* <p>A list of IP address range strings that are allowed to access the instance. For more
|
|
3462
|
+
* information on how to configure IP addresses, see<a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts">Configure session timeouts</a> in the <i>Amazon Connect Administrator
|
|
3463
|
+
* Guide</i>.</p>
|
|
3464
|
+
* @public
|
|
3465
|
+
*/
|
|
3466
|
+
AllowedIps?: string[];
|
|
3467
|
+
/**
|
|
3468
|
+
* <p>A list of IP address range strings that are blocked from accessing the instance. For more
|
|
3469
|
+
* information on how to configure IP addresses, For more information on how to configure IP
|
|
3470
|
+
* addresses, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-ip-based-ac">Configure
|
|
3471
|
+
* IP-based access control</a> in the <i>Amazon Connect Administrator
|
|
3472
|
+
* Guide</i>. </p>
|
|
3473
|
+
* @public
|
|
3474
|
+
*/
|
|
3475
|
+
BlockedIps?: string[];
|
|
3476
|
+
/**
|
|
3477
|
+
* <p>The short lived session duration configuration for users logged in to Amazon Connect, in
|
|
3478
|
+
* minutes. This value determines the maximum possible time before an agent is authenticated. For
|
|
3479
|
+
* more information, For more information on how to configure IP addresses, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/authentication-profiles.html#configure-session-timeouts">Configure session timeouts</a> in the <i>Amazon Connect Administrator
|
|
3480
|
+
* Guide</i>. </p>
|
|
3481
|
+
* @public
|
|
3482
|
+
*/
|
|
3483
|
+
PeriodicSessionDuration?: number;
|
|
3484
|
+
}
|
|
3297
3485
|
/**
|
|
3298
3486
|
* @public
|
|
3299
3487
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAuthenticationProfilesCommandInput, ListAuthenticationProfilesCommandOutput } from "../commands/ListAuthenticationProfilesCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAuthenticationProfiles: (config: ConnectPaginationConfiguration, input: ListAuthenticationProfilesCommandInput, ...rest: any[]) => Paginator<ListAuthenticationProfilesCommandOutput>;
|
|
@@ -5,6 +5,7 @@ export * from "./GetMetricDataV2Paginator";
|
|
|
5
5
|
export * from "./Interfaces";
|
|
6
6
|
export * from "./ListAgentStatusesPaginator";
|
|
7
7
|
export * from "./ListApprovedOriginsPaginator";
|
|
8
|
+
export * from "./ListAuthenticationProfilesPaginator";
|
|
8
9
|
export * from "./ListBotsPaginator";
|
|
9
10
|
export * from "./ListContactEvaluationsPaginator";
|
|
10
11
|
export * from "./ListContactFlowModulesPaginator";
|
|
@@ -71,6 +71,7 @@ import { DeleteViewCommandInput, DeleteViewCommandOutput } from "../commands/Del
|
|
|
71
71
|
import { DeleteViewVersionCommandInput, DeleteViewVersionCommandOutput } from "../commands/DeleteViewVersionCommand";
|
|
72
72
|
import { DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput } from "../commands/DeleteVocabularyCommand";
|
|
73
73
|
import { DescribeAgentStatusCommandInput, DescribeAgentStatusCommandOutput } from "../commands/DescribeAgentStatusCommand";
|
|
74
|
+
import { DescribeAuthenticationProfileCommandInput, DescribeAuthenticationProfileCommandOutput } from "../commands/DescribeAuthenticationProfileCommand";
|
|
74
75
|
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "../commands/DescribeContactCommand";
|
|
75
76
|
import { DescribeContactEvaluationCommandInput, DescribeContactEvaluationCommandOutput } from "../commands/DescribeContactEvaluationCommand";
|
|
76
77
|
import { DescribeContactFlowCommandInput, DescribeContactFlowCommandOutput } from "../commands/DescribeContactFlowCommand";
|
|
@@ -123,6 +124,7 @@ import { ImportPhoneNumberCommandInput, ImportPhoneNumberCommandOutput } from ".
|
|
|
123
124
|
import { ListAgentStatusesCommandInput, ListAgentStatusesCommandOutput } from "../commands/ListAgentStatusesCommand";
|
|
124
125
|
import { ListAnalyticsDataAssociationsCommandInput, ListAnalyticsDataAssociationsCommandOutput } from "../commands/ListAnalyticsDataAssociationsCommand";
|
|
125
126
|
import { ListApprovedOriginsCommandInput, ListApprovedOriginsCommandOutput } from "../commands/ListApprovedOriginsCommand";
|
|
127
|
+
import { ListAuthenticationProfilesCommandInput, ListAuthenticationProfilesCommandOutput } from "../commands/ListAuthenticationProfilesCommand";
|
|
126
128
|
import { ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBotsCommand";
|
|
127
129
|
import { ListContactEvaluationsCommandInput, ListContactEvaluationsCommandOutput } from "../commands/ListContactEvaluationsCommand";
|
|
128
130
|
import { ListContactFlowModulesCommandInput, ListContactFlowModulesCommandOutput } from "../commands/ListContactFlowModulesCommand";
|
|
@@ -205,6 +207,7 @@ import { TransferContactCommandInput, TransferContactCommandOutput } from "../co
|
|
|
205
207
|
import { UntagContactCommandInput, UntagContactCommandOutput } from "../commands/UntagContactCommand";
|
|
206
208
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
207
209
|
import { UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput } from "../commands/UpdateAgentStatusCommand";
|
|
210
|
+
import { UpdateAuthenticationProfileCommandInput, UpdateAuthenticationProfileCommandOutput } from "../commands/UpdateAuthenticationProfileCommand";
|
|
208
211
|
import { UpdateContactAttributesCommandInput, UpdateContactAttributesCommandOutput } from "../commands/UpdateContactAttributesCommand";
|
|
209
212
|
import { UpdateContactCommandInput, UpdateContactCommandOutput } from "../commands/UpdateContactCommand";
|
|
210
213
|
import { UpdateContactEvaluationCommandInput, UpdateContactEvaluationCommandOutput } from "../commands/UpdateContactEvaluationCommand";
|
|
@@ -534,6 +537,10 @@ export declare const se_DeleteVocabularyCommand: (input: DeleteVocabularyCommand
|
|
|
534
537
|
* serializeAws_restJson1DescribeAgentStatusCommand
|
|
535
538
|
*/
|
|
536
539
|
export declare const se_DescribeAgentStatusCommand: (input: DescribeAgentStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
540
|
+
/**
|
|
541
|
+
* serializeAws_restJson1DescribeAuthenticationProfileCommand
|
|
542
|
+
*/
|
|
543
|
+
export declare const se_DescribeAuthenticationProfileCommand: (input: DescribeAuthenticationProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
537
544
|
/**
|
|
538
545
|
* serializeAws_restJson1DescribeContactCommand
|
|
539
546
|
*/
|
|
@@ -742,6 +749,10 @@ export declare const se_ListAnalyticsDataAssociationsCommand: (input: ListAnalyt
|
|
|
742
749
|
* serializeAws_restJson1ListApprovedOriginsCommand
|
|
743
750
|
*/
|
|
744
751
|
export declare const se_ListApprovedOriginsCommand: (input: ListApprovedOriginsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
752
|
+
/**
|
|
753
|
+
* serializeAws_restJson1ListAuthenticationProfilesCommand
|
|
754
|
+
*/
|
|
755
|
+
export declare const se_ListAuthenticationProfilesCommand: (input: ListAuthenticationProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
745
756
|
/**
|
|
746
757
|
* serializeAws_restJson1ListBotsCommand
|
|
747
758
|
*/
|
|
@@ -1070,6 +1081,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
|
|
|
1070
1081
|
* serializeAws_restJson1UpdateAgentStatusCommand
|
|
1071
1082
|
*/
|
|
1072
1083
|
export declare const se_UpdateAgentStatusCommand: (input: UpdateAgentStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1084
|
+
/**
|
|
1085
|
+
* serializeAws_restJson1UpdateAuthenticationProfileCommand
|
|
1086
|
+
*/
|
|
1087
|
+
export declare const se_UpdateAuthenticationProfileCommand: (input: UpdateAuthenticationProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
1073
1088
|
/**
|
|
1074
1089
|
* serializeAws_restJson1UpdateContactCommand
|
|
1075
1090
|
*/
|
|
@@ -1534,6 +1549,10 @@ export declare const de_DeleteVocabularyCommand: (output: __HttpResponse, contex
|
|
|
1534
1549
|
* deserializeAws_restJson1DescribeAgentStatusCommand
|
|
1535
1550
|
*/
|
|
1536
1551
|
export declare const de_DescribeAgentStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAgentStatusCommandOutput>;
|
|
1552
|
+
/**
|
|
1553
|
+
* deserializeAws_restJson1DescribeAuthenticationProfileCommand
|
|
1554
|
+
*/
|
|
1555
|
+
export declare const de_DescribeAuthenticationProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAuthenticationProfileCommandOutput>;
|
|
1537
1556
|
/**
|
|
1538
1557
|
* deserializeAws_restJson1DescribeContactCommand
|
|
1539
1558
|
*/
|
|
@@ -1742,6 +1761,10 @@ export declare const de_ListAnalyticsDataAssociationsCommand: (output: __HttpRes
|
|
|
1742
1761
|
* deserializeAws_restJson1ListApprovedOriginsCommand
|
|
1743
1762
|
*/
|
|
1744
1763
|
export declare const de_ListApprovedOriginsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApprovedOriginsCommandOutput>;
|
|
1764
|
+
/**
|
|
1765
|
+
* deserializeAws_restJson1ListAuthenticationProfilesCommand
|
|
1766
|
+
*/
|
|
1767
|
+
export declare const de_ListAuthenticationProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAuthenticationProfilesCommandOutput>;
|
|
1745
1768
|
/**
|
|
1746
1769
|
* deserializeAws_restJson1ListBotsCommand
|
|
1747
1770
|
*/
|
|
@@ -2070,6 +2093,10 @@ export declare const de_UntagResourceCommand: (output: __HttpResponse, context:
|
|
|
2070
2093
|
* deserializeAws_restJson1UpdateAgentStatusCommand
|
|
2071
2094
|
*/
|
|
2072
2095
|
export declare const de_UpdateAgentStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAgentStatusCommandOutput>;
|
|
2096
|
+
/**
|
|
2097
|
+
* deserializeAws_restJson1UpdateAuthenticationProfileCommand
|
|
2098
|
+
*/
|
|
2099
|
+
export declare const de_UpdateAuthenticationProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAuthenticationProfileCommandOutput>;
|
|
2073
2100
|
/**
|
|
2074
2101
|
* deserializeAws_restJson1UpdateContactCommand
|
|
2075
2102
|
*/
|
|
@@ -283,6 +283,10 @@ import {
|
|
|
283
283
|
DescribeAgentStatusCommandInput,
|
|
284
284
|
DescribeAgentStatusCommandOutput,
|
|
285
285
|
} from "./commands/DescribeAgentStatusCommand";
|
|
286
|
+
import {
|
|
287
|
+
DescribeAuthenticationProfileCommandInput,
|
|
288
|
+
DescribeAuthenticationProfileCommandOutput,
|
|
289
|
+
} from "./commands/DescribeAuthenticationProfileCommand";
|
|
286
290
|
import {
|
|
287
291
|
DescribeContactCommandInput,
|
|
288
292
|
DescribeContactCommandOutput,
|
|
@@ -491,6 +495,10 @@ import {
|
|
|
491
495
|
ListApprovedOriginsCommandInput,
|
|
492
496
|
ListApprovedOriginsCommandOutput,
|
|
493
497
|
} from "./commands/ListApprovedOriginsCommand";
|
|
498
|
+
import {
|
|
499
|
+
ListAuthenticationProfilesCommandInput,
|
|
500
|
+
ListAuthenticationProfilesCommandOutput,
|
|
501
|
+
} from "./commands/ListAuthenticationProfilesCommand";
|
|
494
502
|
import {
|
|
495
503
|
ListBotsCommandInput,
|
|
496
504
|
ListBotsCommandOutput,
|
|
@@ -819,6 +827,10 @@ import {
|
|
|
819
827
|
UpdateAgentStatusCommandInput,
|
|
820
828
|
UpdateAgentStatusCommandOutput,
|
|
821
829
|
} from "./commands/UpdateAgentStatusCommand";
|
|
830
|
+
import {
|
|
831
|
+
UpdateAuthenticationProfileCommandInput,
|
|
832
|
+
UpdateAuthenticationProfileCommandOutput,
|
|
833
|
+
} from "./commands/UpdateAuthenticationProfileCommand";
|
|
822
834
|
import {
|
|
823
835
|
UpdateContactAttributesCommandInput,
|
|
824
836
|
UpdateContactAttributesCommandOutput,
|
|
@@ -1942,6 +1954,19 @@ export interface Connect {
|
|
|
1942
1954
|
options: __HttpHandlerOptions,
|
|
1943
1955
|
cb: (err: any, data?: DescribeAgentStatusCommandOutput) => void
|
|
1944
1956
|
): void;
|
|
1957
|
+
describeAuthenticationProfile(
|
|
1958
|
+
args: DescribeAuthenticationProfileCommandInput,
|
|
1959
|
+
options?: __HttpHandlerOptions
|
|
1960
|
+
): Promise<DescribeAuthenticationProfileCommandOutput>;
|
|
1961
|
+
describeAuthenticationProfile(
|
|
1962
|
+
args: DescribeAuthenticationProfileCommandInput,
|
|
1963
|
+
cb: (err: any, data?: DescribeAuthenticationProfileCommandOutput) => void
|
|
1964
|
+
): void;
|
|
1965
|
+
describeAuthenticationProfile(
|
|
1966
|
+
args: DescribeAuthenticationProfileCommandInput,
|
|
1967
|
+
options: __HttpHandlerOptions,
|
|
1968
|
+
cb: (err: any, data?: DescribeAuthenticationProfileCommandOutput) => void
|
|
1969
|
+
): void;
|
|
1945
1970
|
describeContact(
|
|
1946
1971
|
args: DescribeContactCommandInput,
|
|
1947
1972
|
options?: __HttpHandlerOptions
|
|
@@ -2636,6 +2661,19 @@ export interface Connect {
|
|
|
2636
2661
|
options: __HttpHandlerOptions,
|
|
2637
2662
|
cb: (err: any, data?: ListApprovedOriginsCommandOutput) => void
|
|
2638
2663
|
): void;
|
|
2664
|
+
listAuthenticationProfiles(
|
|
2665
|
+
args: ListAuthenticationProfilesCommandInput,
|
|
2666
|
+
options?: __HttpHandlerOptions
|
|
2667
|
+
): Promise<ListAuthenticationProfilesCommandOutput>;
|
|
2668
|
+
listAuthenticationProfiles(
|
|
2669
|
+
args: ListAuthenticationProfilesCommandInput,
|
|
2670
|
+
cb: (err: any, data?: ListAuthenticationProfilesCommandOutput) => void
|
|
2671
|
+
): void;
|
|
2672
|
+
listAuthenticationProfiles(
|
|
2673
|
+
args: ListAuthenticationProfilesCommandInput,
|
|
2674
|
+
options: __HttpHandlerOptions,
|
|
2675
|
+
cb: (err: any, data?: ListAuthenticationProfilesCommandOutput) => void
|
|
2676
|
+
): void;
|
|
2639
2677
|
listBots(
|
|
2640
2678
|
args: ListBotsCommandInput,
|
|
2641
2679
|
options?: __HttpHandlerOptions
|
|
@@ -3717,6 +3755,19 @@ export interface Connect {
|
|
|
3717
3755
|
options: __HttpHandlerOptions,
|
|
3718
3756
|
cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void
|
|
3719
3757
|
): void;
|
|
3758
|
+
updateAuthenticationProfile(
|
|
3759
|
+
args: UpdateAuthenticationProfileCommandInput,
|
|
3760
|
+
options?: __HttpHandlerOptions
|
|
3761
|
+
): Promise<UpdateAuthenticationProfileCommandOutput>;
|
|
3762
|
+
updateAuthenticationProfile(
|
|
3763
|
+
args: UpdateAuthenticationProfileCommandInput,
|
|
3764
|
+
cb: (err: any, data?: UpdateAuthenticationProfileCommandOutput) => void
|
|
3765
|
+
): void;
|
|
3766
|
+
updateAuthenticationProfile(
|
|
3767
|
+
args: UpdateAuthenticationProfileCommandInput,
|
|
3768
|
+
options: __HttpHandlerOptions,
|
|
3769
|
+
cb: (err: any, data?: UpdateAuthenticationProfileCommandOutput) => void
|
|
3770
|
+
): void;
|
|
3720
3771
|
updateContact(
|
|
3721
3772
|
args: UpdateContactCommandInput,
|
|
3722
3773
|
options?: __HttpHandlerOptions
|
|
@@ -329,6 +329,10 @@ import {
|
|
|
329
329
|
DescribeAgentStatusCommandInput,
|
|
330
330
|
DescribeAgentStatusCommandOutput,
|
|
331
331
|
} from "./commands/DescribeAgentStatusCommand";
|
|
332
|
+
import {
|
|
333
|
+
DescribeAuthenticationProfileCommandInput,
|
|
334
|
+
DescribeAuthenticationProfileCommandOutput,
|
|
335
|
+
} from "./commands/DescribeAuthenticationProfileCommand";
|
|
332
336
|
import {
|
|
333
337
|
DescribeContactCommandInput,
|
|
334
338
|
DescribeContactCommandOutput,
|
|
@@ -537,6 +541,10 @@ import {
|
|
|
537
541
|
ListApprovedOriginsCommandInput,
|
|
538
542
|
ListApprovedOriginsCommandOutput,
|
|
539
543
|
} from "./commands/ListApprovedOriginsCommand";
|
|
544
|
+
import {
|
|
545
|
+
ListAuthenticationProfilesCommandInput,
|
|
546
|
+
ListAuthenticationProfilesCommandOutput,
|
|
547
|
+
} from "./commands/ListAuthenticationProfilesCommand";
|
|
540
548
|
import {
|
|
541
549
|
ListBotsCommandInput,
|
|
542
550
|
ListBotsCommandOutput,
|
|
@@ -865,6 +873,10 @@ import {
|
|
|
865
873
|
UpdateAgentStatusCommandInput,
|
|
866
874
|
UpdateAgentStatusCommandOutput,
|
|
867
875
|
} from "./commands/UpdateAgentStatusCommand";
|
|
876
|
+
import {
|
|
877
|
+
UpdateAuthenticationProfileCommandInput,
|
|
878
|
+
UpdateAuthenticationProfileCommandOutput,
|
|
879
|
+
} from "./commands/UpdateAuthenticationProfileCommand";
|
|
868
880
|
import {
|
|
869
881
|
UpdateContactAttributesCommandInput,
|
|
870
882
|
UpdateContactAttributesCommandOutput,
|
|
@@ -1124,6 +1136,7 @@ export type ServiceInputTypes =
|
|
|
1124
1136
|
| DeleteViewVersionCommandInput
|
|
1125
1137
|
| DeleteVocabularyCommandInput
|
|
1126
1138
|
| DescribeAgentStatusCommandInput
|
|
1139
|
+
| DescribeAuthenticationProfileCommandInput
|
|
1127
1140
|
| DescribeContactCommandInput
|
|
1128
1141
|
| DescribeContactEvaluationCommandInput
|
|
1129
1142
|
| DescribeContactFlowCommandInput
|
|
@@ -1176,6 +1189,7 @@ export type ServiceInputTypes =
|
|
|
1176
1189
|
| ListAgentStatusesCommandInput
|
|
1177
1190
|
| ListAnalyticsDataAssociationsCommandInput
|
|
1178
1191
|
| ListApprovedOriginsCommandInput
|
|
1192
|
+
| ListAuthenticationProfilesCommandInput
|
|
1179
1193
|
| ListBotsCommandInput
|
|
1180
1194
|
| ListContactEvaluationsCommandInput
|
|
1181
1195
|
| ListContactFlowModulesCommandInput
|
|
@@ -1258,6 +1272,7 @@ export type ServiceInputTypes =
|
|
|
1258
1272
|
| UntagContactCommandInput
|
|
1259
1273
|
| UntagResourceCommandInput
|
|
1260
1274
|
| UpdateAgentStatusCommandInput
|
|
1275
|
+
| UpdateAuthenticationProfileCommandInput
|
|
1261
1276
|
| UpdateContactAttributesCommandInput
|
|
1262
1277
|
| UpdateContactCommandInput
|
|
1263
1278
|
| UpdateContactEvaluationCommandInput
|
|
@@ -1375,6 +1390,7 @@ export type ServiceOutputTypes =
|
|
|
1375
1390
|
| DeleteViewVersionCommandOutput
|
|
1376
1391
|
| DeleteVocabularyCommandOutput
|
|
1377
1392
|
| DescribeAgentStatusCommandOutput
|
|
1393
|
+
| DescribeAuthenticationProfileCommandOutput
|
|
1378
1394
|
| DescribeContactCommandOutput
|
|
1379
1395
|
| DescribeContactEvaluationCommandOutput
|
|
1380
1396
|
| DescribeContactFlowCommandOutput
|
|
@@ -1427,6 +1443,7 @@ export type ServiceOutputTypes =
|
|
|
1427
1443
|
| ListAgentStatusesCommandOutput
|
|
1428
1444
|
| ListAnalyticsDataAssociationsCommandOutput
|
|
1429
1445
|
| ListApprovedOriginsCommandOutput
|
|
1446
|
+
| ListAuthenticationProfilesCommandOutput
|
|
1430
1447
|
| ListBotsCommandOutput
|
|
1431
1448
|
| ListContactEvaluationsCommandOutput
|
|
1432
1449
|
| ListContactFlowModulesCommandOutput
|
|
@@ -1509,6 +1526,7 @@ export type ServiceOutputTypes =
|
|
|
1509
1526
|
| UntagContactCommandOutput
|
|
1510
1527
|
| UntagResourceCommandOutput
|
|
1511
1528
|
| UpdateAgentStatusCommandOutput
|
|
1529
|
+
| UpdateAuthenticationProfileCommandOutput
|
|
1512
1530
|
| UpdateContactAttributesCommandOutput
|
|
1513
1531
|
| UpdateContactCommandOutput
|
|
1514
1532
|
| UpdateContactEvaluationCommandOutput
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeAuthenticationProfileRequest,
|
|
10
|
+
DescribeAuthenticationProfileResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeAuthenticationProfileCommandInput
|
|
15
|
+
extends DescribeAuthenticationProfileRequest {}
|
|
16
|
+
export interface DescribeAuthenticationProfileCommandOutput
|
|
17
|
+
extends DescribeAuthenticationProfileResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeAuthenticationProfileCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeAuthenticationProfileCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeAuthenticationProfileCommandInput,
|
|
24
|
+
DescribeAuthenticationProfileCommandOutput,
|
|
25
|
+
ConnectClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeAuthenticationProfileCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeAuthenticationProfileCommandInput,
|
|
33
|
+
DescribeAuthenticationProfileCommandOutput,
|
|
34
|
+
ConnectClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeAuthenticationProfileCommand extends DescribeAuthenticationProfileCommand_base {}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectClient";
|
|
8
|
+
import {
|
|
9
|
+
ListAuthenticationProfilesRequest,
|
|
10
|
+
ListAuthenticationProfilesResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAuthenticationProfilesCommandInput
|
|
15
|
+
extends ListAuthenticationProfilesRequest {}
|
|
16
|
+
export interface ListAuthenticationProfilesCommandOutput
|
|
17
|
+
extends ListAuthenticationProfilesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAuthenticationProfilesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAuthenticationProfilesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAuthenticationProfilesCommandInput,
|
|
24
|
+
ListAuthenticationProfilesCommandOutput,
|
|
25
|
+
ConnectClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListAuthenticationProfilesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAuthenticationProfilesCommandInput,
|
|
33
|
+
ListAuthenticationProfilesCommandOutput,
|
|
34
|
+
ConnectClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAuthenticationProfilesCommand extends ListAuthenticationProfilesCommand_base {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListUserHierarchyGroupsRequest,
|
|
10
10
|
ListUserHierarchyGroupsResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListUserHierarchyGroupsCommandInput
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import { ListUsersRequest } from "../models/
|
|
9
|
-
import { ListUsersResponse } from "../models/models_2";
|
|
8
|
+
import { ListUsersRequest, ListUsersResponse } from "../models/models_2";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface ListUsersCommandInput extends ListUsersRequest {}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ConnectClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ConnectClient";
|
|
8
|
+
import { UpdateAuthenticationProfileRequest } from "../models/models_2";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateAuthenticationProfileCommandInput
|
|
12
|
+
extends UpdateAuthenticationProfileRequest {}
|
|
13
|
+
export interface UpdateAuthenticationProfileCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const UpdateAuthenticationProfileCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateAuthenticationProfileCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdateAuthenticationProfileCommandInput,
|
|
20
|
+
UpdateAuthenticationProfileCommandOutput,
|
|
21
|
+
ConnectClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: UpdateAuthenticationProfileCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdateAuthenticationProfileCommandInput,
|
|
29
|
+
UpdateAuthenticationProfileCommandOutput,
|
|
30
|
+
ConnectClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdateAuthenticationProfileCommand extends UpdateAuthenticationProfileCommand_base {}
|