@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
|
@@ -1034,6 +1034,16 @@ export const se_DescribeAgentStatusCommand = async (input, context) => {
|
|
|
1034
1034
|
b.m("GET").h(headers).b(body);
|
|
1035
1035
|
return b.build();
|
|
1036
1036
|
};
|
|
1037
|
+
export const se_DescribeAuthenticationProfileCommand = async (input, context) => {
|
|
1038
|
+
const b = rb(input, context);
|
|
1039
|
+
const headers = {};
|
|
1040
|
+
b.bp("/authentication-profiles/{InstanceId}/{AuthenticationProfileId}");
|
|
1041
|
+
b.p("AuthenticationProfileId", () => input.AuthenticationProfileId, "{AuthenticationProfileId}", false);
|
|
1042
|
+
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
1043
|
+
let body;
|
|
1044
|
+
b.m("GET").h(headers).b(body);
|
|
1045
|
+
return b.build();
|
|
1046
|
+
};
|
|
1037
1047
|
export const se_DescribeContactCommand = async (input, context) => {
|
|
1038
1048
|
const b = rb(input, context);
|
|
1039
1049
|
const headers = {};
|
|
@@ -1662,6 +1672,19 @@ export const se_ListApprovedOriginsCommand = async (input, context) => {
|
|
|
1662
1672
|
b.m("GET").h(headers).q(query).b(body);
|
|
1663
1673
|
return b.build();
|
|
1664
1674
|
};
|
|
1675
|
+
export const se_ListAuthenticationProfilesCommand = async (input, context) => {
|
|
1676
|
+
const b = rb(input, context);
|
|
1677
|
+
const headers = {};
|
|
1678
|
+
b.bp("/authentication-profiles-summary/{InstanceId}");
|
|
1679
|
+
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
1680
|
+
const query = map({
|
|
1681
|
+
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
1682
|
+
[_nT]: [, input[_NT]],
|
|
1683
|
+
});
|
|
1684
|
+
let body;
|
|
1685
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
1686
|
+
return b.build();
|
|
1687
|
+
};
|
|
1665
1688
|
export const se_ListBotsCommand = async (input, context) => {
|
|
1666
1689
|
const b = rb(input, context);
|
|
1667
1690
|
const headers = {};
|
|
@@ -2936,6 +2959,25 @@ export const se_UpdateAgentStatusCommand = async (input, context) => {
|
|
|
2936
2959
|
b.m("POST").h(headers).b(body);
|
|
2937
2960
|
return b.build();
|
|
2938
2961
|
};
|
|
2962
|
+
export const se_UpdateAuthenticationProfileCommand = async (input, context) => {
|
|
2963
|
+
const b = rb(input, context);
|
|
2964
|
+
const headers = {
|
|
2965
|
+
"content-type": "application/json",
|
|
2966
|
+
};
|
|
2967
|
+
b.bp("/authentication-profiles/{InstanceId}/{AuthenticationProfileId}");
|
|
2968
|
+
b.p("AuthenticationProfileId", () => input.AuthenticationProfileId, "{AuthenticationProfileId}", false);
|
|
2969
|
+
b.p("InstanceId", () => input.InstanceId, "{InstanceId}", false);
|
|
2970
|
+
let body;
|
|
2971
|
+
body = JSON.stringify(take(input, {
|
|
2972
|
+
AllowedIps: (_) => _json(_),
|
|
2973
|
+
BlockedIps: (_) => _json(_),
|
|
2974
|
+
Description: [],
|
|
2975
|
+
Name: [],
|
|
2976
|
+
PeriodicSessionDuration: [],
|
|
2977
|
+
}));
|
|
2978
|
+
b.m("POST").h(headers).b(body);
|
|
2979
|
+
return b.build();
|
|
2980
|
+
};
|
|
2939
2981
|
export const se_UpdateContactCommand = async (input, context) => {
|
|
2940
2982
|
const b = rb(input, context);
|
|
2941
2983
|
const headers = {
|
|
@@ -4544,6 +4586,20 @@ export const de_DescribeAgentStatusCommand = async (output, context) => {
|
|
|
4544
4586
|
Object.assign(contents, doc);
|
|
4545
4587
|
return contents;
|
|
4546
4588
|
};
|
|
4589
|
+
export const de_DescribeAuthenticationProfileCommand = async (output, context) => {
|
|
4590
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4591
|
+
return de_CommandError(output, context);
|
|
4592
|
+
}
|
|
4593
|
+
const contents = map({
|
|
4594
|
+
$metadata: deserializeMetadata(output),
|
|
4595
|
+
});
|
|
4596
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
4597
|
+
const doc = take(data, {
|
|
4598
|
+
AuthenticationProfile: (_) => de_AuthenticationProfile(_, context),
|
|
4599
|
+
});
|
|
4600
|
+
Object.assign(contents, doc);
|
|
4601
|
+
return contents;
|
|
4602
|
+
};
|
|
4547
4603
|
export const de_DescribeContactCommand = async (output, context) => {
|
|
4548
4604
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4549
4605
|
return de_CommandError(output, context);
|
|
@@ -5261,6 +5317,21 @@ export const de_ListApprovedOriginsCommand = async (output, context) => {
|
|
|
5261
5317
|
Object.assign(contents, doc);
|
|
5262
5318
|
return contents;
|
|
5263
5319
|
};
|
|
5320
|
+
export const de_ListAuthenticationProfilesCommand = async (output, context) => {
|
|
5321
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5322
|
+
return de_CommandError(output, context);
|
|
5323
|
+
}
|
|
5324
|
+
const contents = map({
|
|
5325
|
+
$metadata: deserializeMetadata(output),
|
|
5326
|
+
});
|
|
5327
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
5328
|
+
const doc = take(data, {
|
|
5329
|
+
AuthenticationProfileSummaryList: (_) => de_AuthenticationProfileSummaryList(_, context),
|
|
5330
|
+
NextToken: __expectString,
|
|
5331
|
+
});
|
|
5332
|
+
Object.assign(contents, doc);
|
|
5333
|
+
return contents;
|
|
5334
|
+
};
|
|
5264
5335
|
export const de_ListBotsCommand = async (output, context) => {
|
|
5265
5336
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5266
5337
|
return de_CommandError(output, context);
|
|
@@ -6443,6 +6514,16 @@ export const de_UpdateAgentStatusCommand = async (output, context) => {
|
|
|
6443
6514
|
await collectBody(output.body, context);
|
|
6444
6515
|
return contents;
|
|
6445
6516
|
};
|
|
6517
|
+
export const de_UpdateAuthenticationProfileCommand = async (output, context) => {
|
|
6518
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6519
|
+
return de_CommandError(output, context);
|
|
6520
|
+
}
|
|
6521
|
+
const contents = map({
|
|
6522
|
+
$metadata: deserializeMetadata(output),
|
|
6523
|
+
});
|
|
6524
|
+
await collectBody(output.body, context);
|
|
6525
|
+
return contents;
|
|
6526
|
+
};
|
|
6446
6527
|
export const de_UpdateContactCommand = async (output, context) => {
|
|
6447
6528
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6448
6529
|
return de_CommandError(output, context);
|
|
@@ -7764,6 +7845,40 @@ const de_AudioQualityMetricsInfo = (output, context) => {
|
|
|
7764
7845
|
QualityScore: __limitedParseFloat32,
|
|
7765
7846
|
});
|
|
7766
7847
|
};
|
|
7848
|
+
const de_AuthenticationProfile = (output, context) => {
|
|
7849
|
+
return take(output, {
|
|
7850
|
+
AllowedIps: _json,
|
|
7851
|
+
Arn: __expectString,
|
|
7852
|
+
BlockedIps: _json,
|
|
7853
|
+
CreatedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
7854
|
+
Description: __expectString,
|
|
7855
|
+
Id: __expectString,
|
|
7856
|
+
IsDefault: __expectBoolean,
|
|
7857
|
+
LastModifiedRegion: __expectString,
|
|
7858
|
+
LastModifiedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
7859
|
+
MaxSessionDuration: __expectInt32,
|
|
7860
|
+
Name: __expectString,
|
|
7861
|
+
PeriodicSessionDuration: __expectInt32,
|
|
7862
|
+
});
|
|
7863
|
+
};
|
|
7864
|
+
const de_AuthenticationProfileSummary = (output, context) => {
|
|
7865
|
+
return take(output, {
|
|
7866
|
+
Arn: __expectString,
|
|
7867
|
+
Id: __expectString,
|
|
7868
|
+
IsDefault: __expectBoolean,
|
|
7869
|
+
LastModifiedRegion: __expectString,
|
|
7870
|
+
LastModifiedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
7871
|
+
Name: __expectString,
|
|
7872
|
+
});
|
|
7873
|
+
};
|
|
7874
|
+
const de_AuthenticationProfileSummaryList = (output, context) => {
|
|
7875
|
+
const retVal = (output || [])
|
|
7876
|
+
.filter((e) => e != null)
|
|
7877
|
+
.map((entry) => {
|
|
7878
|
+
return de_AuthenticationProfileSummary(entry, context);
|
|
7879
|
+
});
|
|
7880
|
+
return retVal;
|
|
7881
|
+
};
|
|
7767
7882
|
const de_Contact = (output, context) => {
|
|
7768
7883
|
return take(output, {
|
|
7769
7884
|
AgentInfo: (_) => de_AgentInfo(_, context),
|
package/dist-types/Connect.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ import { DeleteViewCommandInput, DeleteViewCommandOutput } from "./commands/Dele
|
|
|
70
70
|
import { DeleteViewVersionCommandInput, DeleteViewVersionCommandOutput } from "./commands/DeleteViewVersionCommand";
|
|
71
71
|
import { DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput } from "./commands/DeleteVocabularyCommand";
|
|
72
72
|
import { DescribeAgentStatusCommandInput, DescribeAgentStatusCommandOutput } from "./commands/DescribeAgentStatusCommand";
|
|
73
|
+
import { DescribeAuthenticationProfileCommandInput, DescribeAuthenticationProfileCommandOutput } from "./commands/DescribeAuthenticationProfileCommand";
|
|
73
74
|
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "./commands/DescribeContactCommand";
|
|
74
75
|
import { DescribeContactEvaluationCommandInput, DescribeContactEvaluationCommandOutput } from "./commands/DescribeContactEvaluationCommand";
|
|
75
76
|
import { DescribeContactFlowCommandInput, DescribeContactFlowCommandOutput } from "./commands/DescribeContactFlowCommand";
|
|
@@ -122,6 +123,7 @@ import { ImportPhoneNumberCommandInput, ImportPhoneNumberCommandOutput } from ".
|
|
|
122
123
|
import { ListAgentStatusesCommandInput, ListAgentStatusesCommandOutput } from "./commands/ListAgentStatusesCommand";
|
|
123
124
|
import { ListAnalyticsDataAssociationsCommandInput, ListAnalyticsDataAssociationsCommandOutput } from "./commands/ListAnalyticsDataAssociationsCommand";
|
|
124
125
|
import { ListApprovedOriginsCommandInput, ListApprovedOriginsCommandOutput } from "./commands/ListApprovedOriginsCommand";
|
|
126
|
+
import { ListAuthenticationProfilesCommandInput, ListAuthenticationProfilesCommandOutput } from "./commands/ListAuthenticationProfilesCommand";
|
|
125
127
|
import { ListBotsCommandInput, ListBotsCommandOutput } from "./commands/ListBotsCommand";
|
|
126
128
|
import { ListContactEvaluationsCommandInput, ListContactEvaluationsCommandOutput } from "./commands/ListContactEvaluationsCommand";
|
|
127
129
|
import { ListContactFlowModulesCommandInput, ListContactFlowModulesCommandOutput } from "./commands/ListContactFlowModulesCommand";
|
|
@@ -204,6 +206,7 @@ import { TransferContactCommandInput, TransferContactCommandOutput } from "./com
|
|
|
204
206
|
import { UntagContactCommandInput, UntagContactCommandOutput } from "./commands/UntagContactCommand";
|
|
205
207
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
206
208
|
import { UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput } from "./commands/UpdateAgentStatusCommand";
|
|
209
|
+
import { UpdateAuthenticationProfileCommandInput, UpdateAuthenticationProfileCommandOutput } from "./commands/UpdateAuthenticationProfileCommand";
|
|
207
210
|
import { UpdateContactAttributesCommandInput, UpdateContactAttributesCommandOutput } from "./commands/UpdateContactAttributesCommand";
|
|
208
211
|
import { UpdateContactCommandInput, UpdateContactCommandOutput } from "./commands/UpdateContactCommand";
|
|
209
212
|
import { UpdateContactEvaluationCommandInput, UpdateContactEvaluationCommandOutput } from "./commands/UpdateContactEvaluationCommand";
|
|
@@ -677,6 +680,12 @@ export interface Connect {
|
|
|
677
680
|
describeAgentStatus(args: DescribeAgentStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAgentStatusCommandOutput>;
|
|
678
681
|
describeAgentStatus(args: DescribeAgentStatusCommandInput, cb: (err: any, data?: DescribeAgentStatusCommandOutput) => void): void;
|
|
679
682
|
describeAgentStatus(args: DescribeAgentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAgentStatusCommandOutput) => void): void;
|
|
683
|
+
/**
|
|
684
|
+
* @see {@link DescribeAuthenticationProfileCommand}
|
|
685
|
+
*/
|
|
686
|
+
describeAuthenticationProfile(args: DescribeAuthenticationProfileCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAuthenticationProfileCommandOutput>;
|
|
687
|
+
describeAuthenticationProfile(args: DescribeAuthenticationProfileCommandInput, cb: (err: any, data?: DescribeAuthenticationProfileCommandOutput) => void): void;
|
|
688
|
+
describeAuthenticationProfile(args: DescribeAuthenticationProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAuthenticationProfileCommandOutput) => void): void;
|
|
680
689
|
/**
|
|
681
690
|
* @see {@link DescribeContactCommand}
|
|
682
691
|
*/
|
|
@@ -989,6 +998,12 @@ export interface Connect {
|
|
|
989
998
|
listApprovedOrigins(args: ListApprovedOriginsCommandInput, options?: __HttpHandlerOptions): Promise<ListApprovedOriginsCommandOutput>;
|
|
990
999
|
listApprovedOrigins(args: ListApprovedOriginsCommandInput, cb: (err: any, data?: ListApprovedOriginsCommandOutput) => void): void;
|
|
991
1000
|
listApprovedOrigins(args: ListApprovedOriginsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApprovedOriginsCommandOutput) => void): void;
|
|
1001
|
+
/**
|
|
1002
|
+
* @see {@link ListAuthenticationProfilesCommand}
|
|
1003
|
+
*/
|
|
1004
|
+
listAuthenticationProfiles(args: ListAuthenticationProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListAuthenticationProfilesCommandOutput>;
|
|
1005
|
+
listAuthenticationProfiles(args: ListAuthenticationProfilesCommandInput, cb: (err: any, data?: ListAuthenticationProfilesCommandOutput) => void): void;
|
|
1006
|
+
listAuthenticationProfiles(args: ListAuthenticationProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAuthenticationProfilesCommandOutput) => void): void;
|
|
992
1007
|
/**
|
|
993
1008
|
* @see {@link ListBotsCommand}
|
|
994
1009
|
*/
|
|
@@ -1484,6 +1499,12 @@ export interface Connect {
|
|
|
1484
1499
|
updateAgentStatus(args: UpdateAgentStatusCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAgentStatusCommandOutput>;
|
|
1485
1500
|
updateAgentStatus(args: UpdateAgentStatusCommandInput, cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void): void;
|
|
1486
1501
|
updateAgentStatus(args: UpdateAgentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAgentStatusCommandOutput) => void): void;
|
|
1502
|
+
/**
|
|
1503
|
+
* @see {@link UpdateAuthenticationProfileCommand}
|
|
1504
|
+
*/
|
|
1505
|
+
updateAuthenticationProfile(args: UpdateAuthenticationProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAuthenticationProfileCommandOutput>;
|
|
1506
|
+
updateAuthenticationProfile(args: UpdateAuthenticationProfileCommandInput, cb: (err: any, data?: UpdateAuthenticationProfileCommandOutput) => void): void;
|
|
1507
|
+
updateAuthenticationProfile(args: UpdateAuthenticationProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAuthenticationProfileCommandOutput) => void): void;
|
|
1487
1508
|
/**
|
|
1488
1509
|
* @see {@link UpdateContactCommand}
|
|
1489
1510
|
*/
|
|
@@ -1756,7 +1777,21 @@ export interface Connect {
|
|
|
1756
1777
|
updateViewMetadata(args: UpdateViewMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateViewMetadataCommandOutput) => void): void;
|
|
1757
1778
|
}
|
|
1758
1779
|
/**
|
|
1759
|
-
* <
|
|
1780
|
+
* <ul>
|
|
1781
|
+
* <li>
|
|
1782
|
+
* <p>
|
|
1783
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Service.html">Amazon Connect
|
|
1784
|
+
* actions</a>
|
|
1785
|
+
* </p>
|
|
1786
|
+
* </li>
|
|
1787
|
+
* <li>
|
|
1788
|
+
* <p>
|
|
1789
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Service.html">Amazon Connect
|
|
1790
|
+
* data types</a>
|
|
1791
|
+
* </p>
|
|
1792
|
+
* </li>
|
|
1793
|
+
* </ul>
|
|
1794
|
+
* <p>Amazon Connect is a cloud-based contact center solution that you use to set up and
|
|
1760
1795
|
* manage a customer contact center and provide reliable customer engagement at any scale.</p>
|
|
1761
1796
|
* <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize
|
|
1762
1797
|
* contact routing. You can also resolve customer issues more efficiently by getting customers in
|
|
@@ -78,6 +78,7 @@ import { DeleteViewCommandInput, DeleteViewCommandOutput } from "./commands/Dele
|
|
|
78
78
|
import { DeleteViewVersionCommandInput, DeleteViewVersionCommandOutput } from "./commands/DeleteViewVersionCommand";
|
|
79
79
|
import { DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput } from "./commands/DeleteVocabularyCommand";
|
|
80
80
|
import { DescribeAgentStatusCommandInput, DescribeAgentStatusCommandOutput } from "./commands/DescribeAgentStatusCommand";
|
|
81
|
+
import { DescribeAuthenticationProfileCommandInput, DescribeAuthenticationProfileCommandOutput } from "./commands/DescribeAuthenticationProfileCommand";
|
|
81
82
|
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "./commands/DescribeContactCommand";
|
|
82
83
|
import { DescribeContactEvaluationCommandInput, DescribeContactEvaluationCommandOutput } from "./commands/DescribeContactEvaluationCommand";
|
|
83
84
|
import { DescribeContactFlowCommandInput, DescribeContactFlowCommandOutput } from "./commands/DescribeContactFlowCommand";
|
|
@@ -130,6 +131,7 @@ import { ImportPhoneNumberCommandInput, ImportPhoneNumberCommandOutput } from ".
|
|
|
130
131
|
import { ListAgentStatusesCommandInput, ListAgentStatusesCommandOutput } from "./commands/ListAgentStatusesCommand";
|
|
131
132
|
import { ListAnalyticsDataAssociationsCommandInput, ListAnalyticsDataAssociationsCommandOutput } from "./commands/ListAnalyticsDataAssociationsCommand";
|
|
132
133
|
import { ListApprovedOriginsCommandInput, ListApprovedOriginsCommandOutput } from "./commands/ListApprovedOriginsCommand";
|
|
134
|
+
import { ListAuthenticationProfilesCommandInput, ListAuthenticationProfilesCommandOutput } from "./commands/ListAuthenticationProfilesCommand";
|
|
133
135
|
import { ListBotsCommandInput, ListBotsCommandOutput } from "./commands/ListBotsCommand";
|
|
134
136
|
import { ListContactEvaluationsCommandInput, ListContactEvaluationsCommandOutput } from "./commands/ListContactEvaluationsCommand";
|
|
135
137
|
import { ListContactFlowModulesCommandInput, ListContactFlowModulesCommandOutput } from "./commands/ListContactFlowModulesCommand";
|
|
@@ -212,6 +214,7 @@ import { TransferContactCommandInput, TransferContactCommandOutput } from "./com
|
|
|
212
214
|
import { UntagContactCommandInput, UntagContactCommandOutput } from "./commands/UntagContactCommand";
|
|
213
215
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
214
216
|
import { UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput } from "./commands/UpdateAgentStatusCommand";
|
|
217
|
+
import { UpdateAuthenticationProfileCommandInput, UpdateAuthenticationProfileCommandOutput } from "./commands/UpdateAuthenticationProfileCommand";
|
|
215
218
|
import { UpdateContactAttributesCommandInput, UpdateContactAttributesCommandOutput } from "./commands/UpdateContactAttributesCommand";
|
|
216
219
|
import { UpdateContactCommandInput, UpdateContactCommandOutput } from "./commands/UpdateContactCommand";
|
|
217
220
|
import { UpdateContactEvaluationCommandInput, UpdateContactEvaluationCommandOutput } from "./commands/UpdateContactEvaluationCommand";
|
|
@@ -263,11 +266,11 @@ export { __Client };
|
|
|
263
266
|
/**
|
|
264
267
|
* @public
|
|
265
268
|
*/
|
|
266
|
-
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateFlowCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetAttachedFileMetadataCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | ClaimPhoneNumberCommandInput | CompleteAttachedFileUploadCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateFlowCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DismissUserContactCommandInput | GetAttachedFileCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListApprovedOriginsCommandInput | ListBotsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput;
|
|
269
|
+
export type ServiceInputTypes = ActivateEvaluationFormCommandInput | AssociateAnalyticsDataSetCommandInput | AssociateApprovedOriginCommandInput | AssociateBotCommandInput | AssociateDefaultVocabularyCommandInput | AssociateFlowCommandInput | AssociateInstanceStorageConfigCommandInput | AssociateLambdaFunctionCommandInput | AssociateLexBotCommandInput | AssociatePhoneNumberContactFlowCommandInput | AssociateQueueQuickConnectsCommandInput | AssociateRoutingProfileQueuesCommandInput | AssociateSecurityKeyCommandInput | AssociateTrafficDistributionGroupUserCommandInput | AssociateUserProficienciesCommandInput | BatchAssociateAnalyticsDataSetCommandInput | BatchDisassociateAnalyticsDataSetCommandInput | BatchGetAttachedFileMetadataCommandInput | BatchGetFlowAssociationCommandInput | BatchPutContactCommandInput | ClaimPhoneNumberCommandInput | CompleteAttachedFileUploadCommandInput | CreateAgentStatusCommandInput | CreateContactFlowCommandInput | CreateContactFlowModuleCommandInput | CreateEvaluationFormCommandInput | CreateHoursOfOperationCommandInput | CreateInstanceCommandInput | CreateIntegrationAssociationCommandInput | CreateParticipantCommandInput | CreatePersistentContactAssociationCommandInput | CreatePredefinedAttributeCommandInput | CreatePromptCommandInput | CreateQueueCommandInput | CreateQuickConnectCommandInput | CreateRoutingProfileCommandInput | CreateRuleCommandInput | CreateSecurityProfileCommandInput | CreateTaskTemplateCommandInput | CreateTrafficDistributionGroupCommandInput | CreateUseCaseCommandInput | CreateUserCommandInput | CreateUserHierarchyGroupCommandInput | CreateViewCommandInput | CreateViewVersionCommandInput | CreateVocabularyCommandInput | DeactivateEvaluationFormCommandInput | DeleteAttachedFileCommandInput | DeleteContactEvaluationCommandInput | DeleteContactFlowCommandInput | DeleteContactFlowModuleCommandInput | DeleteEvaluationFormCommandInput | DeleteHoursOfOperationCommandInput | DeleteInstanceCommandInput | DeleteIntegrationAssociationCommandInput | DeletePredefinedAttributeCommandInput | DeletePromptCommandInput | DeleteQueueCommandInput | DeleteQuickConnectCommandInput | DeleteRoutingProfileCommandInput | DeleteRuleCommandInput | DeleteSecurityProfileCommandInput | DeleteTaskTemplateCommandInput | DeleteTrafficDistributionGroupCommandInput | DeleteUseCaseCommandInput | DeleteUserCommandInput | DeleteUserHierarchyGroupCommandInput | DeleteViewCommandInput | DeleteViewVersionCommandInput | DeleteVocabularyCommandInput | DescribeAgentStatusCommandInput | DescribeAuthenticationProfileCommandInput | DescribeContactCommandInput | DescribeContactEvaluationCommandInput | DescribeContactFlowCommandInput | DescribeContactFlowModuleCommandInput | DescribeEvaluationFormCommandInput | DescribeHoursOfOperationCommandInput | DescribeInstanceAttributeCommandInput | DescribeInstanceCommandInput | DescribeInstanceStorageConfigCommandInput | DescribePhoneNumberCommandInput | DescribePredefinedAttributeCommandInput | DescribePromptCommandInput | DescribeQueueCommandInput | DescribeQuickConnectCommandInput | DescribeRoutingProfileCommandInput | DescribeRuleCommandInput | DescribeSecurityProfileCommandInput | DescribeTrafficDistributionGroupCommandInput | DescribeUserCommandInput | DescribeUserHierarchyGroupCommandInput | DescribeUserHierarchyStructureCommandInput | DescribeViewCommandInput | DescribeVocabularyCommandInput | DisassociateAnalyticsDataSetCommandInput | DisassociateApprovedOriginCommandInput | DisassociateBotCommandInput | DisassociateFlowCommandInput | DisassociateInstanceStorageConfigCommandInput | DisassociateLambdaFunctionCommandInput | DisassociateLexBotCommandInput | DisassociatePhoneNumberContactFlowCommandInput | DisassociateQueueQuickConnectsCommandInput | DisassociateRoutingProfileQueuesCommandInput | DisassociateSecurityKeyCommandInput | DisassociateTrafficDistributionGroupUserCommandInput | DisassociateUserProficienciesCommandInput | DismissUserContactCommandInput | GetAttachedFileCommandInput | GetContactAttributesCommandInput | GetCurrentMetricDataCommandInput | GetCurrentUserDataCommandInput | GetFederationTokenCommandInput | GetFlowAssociationCommandInput | GetMetricDataCommandInput | GetMetricDataV2CommandInput | GetPromptFileCommandInput | GetTaskTemplateCommandInput | GetTrafficDistributionCommandInput | ImportPhoneNumberCommandInput | ListAgentStatusesCommandInput | ListAnalyticsDataAssociationsCommandInput | ListApprovedOriginsCommandInput | ListAuthenticationProfilesCommandInput | ListBotsCommandInput | ListContactEvaluationsCommandInput | ListContactFlowModulesCommandInput | ListContactFlowsCommandInput | ListContactReferencesCommandInput | ListDefaultVocabulariesCommandInput | ListEvaluationFormVersionsCommandInput | ListEvaluationFormsCommandInput | ListFlowAssociationsCommandInput | ListHoursOfOperationsCommandInput | ListInstanceAttributesCommandInput | ListInstanceStorageConfigsCommandInput | ListInstancesCommandInput | ListIntegrationAssociationsCommandInput | ListLambdaFunctionsCommandInput | ListLexBotsCommandInput | ListPhoneNumbersCommandInput | ListPhoneNumbersV2CommandInput | ListPredefinedAttributesCommandInput | ListPromptsCommandInput | ListQueueQuickConnectsCommandInput | ListQueuesCommandInput | ListQuickConnectsCommandInput | ListRealtimeContactAnalysisSegmentsV2CommandInput | ListRoutingProfileQueuesCommandInput | ListRoutingProfilesCommandInput | ListRulesCommandInput | ListSecurityKeysCommandInput | ListSecurityProfileApplicationsCommandInput | ListSecurityProfilePermissionsCommandInput | ListSecurityProfilesCommandInput | ListTagsForResourceCommandInput | ListTaskTemplatesCommandInput | ListTrafficDistributionGroupUsersCommandInput | ListTrafficDistributionGroupsCommandInput | ListUseCasesCommandInput | ListUserHierarchyGroupsCommandInput | ListUserProficienciesCommandInput | ListUsersCommandInput | ListViewVersionsCommandInput | ListViewsCommandInput | MonitorContactCommandInput | PauseContactCommandInput | PutUserStatusCommandInput | ReleasePhoneNumberCommandInput | ReplicateInstanceCommandInput | ResumeContactCommandInput | ResumeContactRecordingCommandInput | SearchAvailablePhoneNumbersCommandInput | SearchContactFlowModulesCommandInput | SearchContactFlowsCommandInput | SearchContactsCommandInput | SearchHoursOfOperationsCommandInput | SearchPredefinedAttributesCommandInput | SearchPromptsCommandInput | SearchQueuesCommandInput | SearchQuickConnectsCommandInput | SearchResourceTagsCommandInput | SearchRoutingProfilesCommandInput | SearchSecurityProfilesCommandInput | SearchUsersCommandInput | SearchVocabulariesCommandInput | SendChatIntegrationEventCommandInput | StartAttachedFileUploadCommandInput | StartChatContactCommandInput | StartContactEvaluationCommandInput | StartContactRecordingCommandInput | StartContactStreamingCommandInput | StartOutboundVoiceContactCommandInput | StartTaskContactCommandInput | StartWebRTCContactCommandInput | StopContactCommandInput | StopContactRecordingCommandInput | StopContactStreamingCommandInput | SubmitContactEvaluationCommandInput | SuspendContactRecordingCommandInput | TagContactCommandInput | TagResourceCommandInput | TransferContactCommandInput | UntagContactCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateAuthenticationProfileCommandInput | UpdateContactAttributesCommandInput | UpdateContactCommandInput | UpdateContactEvaluationCommandInput | UpdateContactFlowContentCommandInput | UpdateContactFlowMetadataCommandInput | UpdateContactFlowModuleContentCommandInput | UpdateContactFlowModuleMetadataCommandInput | UpdateContactFlowNameCommandInput | UpdateContactRoutingDataCommandInput | UpdateContactScheduleCommandInput | UpdateEvaluationFormCommandInput | UpdateHoursOfOperationCommandInput | UpdateInstanceAttributeCommandInput | UpdateInstanceStorageConfigCommandInput | UpdateParticipantRoleConfigCommandInput | UpdatePhoneNumberCommandInput | UpdatePhoneNumberMetadataCommandInput | UpdatePredefinedAttributeCommandInput | UpdatePromptCommandInput | UpdateQueueHoursOfOperationCommandInput | UpdateQueueMaxContactsCommandInput | UpdateQueueNameCommandInput | UpdateQueueOutboundCallerConfigCommandInput | UpdateQueueStatusCommandInput | UpdateQuickConnectConfigCommandInput | UpdateQuickConnectNameCommandInput | UpdateRoutingProfileAgentAvailabilityTimerCommandInput | UpdateRoutingProfileConcurrencyCommandInput | UpdateRoutingProfileDefaultOutboundQueueCommandInput | UpdateRoutingProfileNameCommandInput | UpdateRoutingProfileQueuesCommandInput | UpdateRuleCommandInput | UpdateSecurityProfileCommandInput | UpdateTaskTemplateCommandInput | UpdateTrafficDistributionCommandInput | UpdateUserHierarchyCommandInput | UpdateUserHierarchyGroupNameCommandInput | UpdateUserHierarchyStructureCommandInput | UpdateUserIdentityInfoCommandInput | UpdateUserPhoneConfigCommandInput | UpdateUserProficienciesCommandInput | UpdateUserRoutingProfileCommandInput | UpdateUserSecurityProfilesCommandInput | UpdateViewContentCommandInput | UpdateViewMetadataCommandInput;
|
|
267
270
|
/**
|
|
268
271
|
* @public
|
|
269
272
|
*/
|
|
270
|
-
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateFlowCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetAttachedFileMetadataCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | ClaimPhoneNumberCommandOutput | CompleteAttachedFileUploadCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateFlowCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DismissUserContactCommandOutput | GetAttachedFileCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListApprovedOriginsCommandOutput | ListBotsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput;
|
|
273
|
+
export type ServiceOutputTypes = ActivateEvaluationFormCommandOutput | AssociateAnalyticsDataSetCommandOutput | AssociateApprovedOriginCommandOutput | AssociateBotCommandOutput | AssociateDefaultVocabularyCommandOutput | AssociateFlowCommandOutput | AssociateInstanceStorageConfigCommandOutput | AssociateLambdaFunctionCommandOutput | AssociateLexBotCommandOutput | AssociatePhoneNumberContactFlowCommandOutput | AssociateQueueQuickConnectsCommandOutput | AssociateRoutingProfileQueuesCommandOutput | AssociateSecurityKeyCommandOutput | AssociateTrafficDistributionGroupUserCommandOutput | AssociateUserProficienciesCommandOutput | BatchAssociateAnalyticsDataSetCommandOutput | BatchDisassociateAnalyticsDataSetCommandOutput | BatchGetAttachedFileMetadataCommandOutput | BatchGetFlowAssociationCommandOutput | BatchPutContactCommandOutput | ClaimPhoneNumberCommandOutput | CompleteAttachedFileUploadCommandOutput | CreateAgentStatusCommandOutput | CreateContactFlowCommandOutput | CreateContactFlowModuleCommandOutput | CreateEvaluationFormCommandOutput | CreateHoursOfOperationCommandOutput | CreateInstanceCommandOutput | CreateIntegrationAssociationCommandOutput | CreateParticipantCommandOutput | CreatePersistentContactAssociationCommandOutput | CreatePredefinedAttributeCommandOutput | CreatePromptCommandOutput | CreateQueueCommandOutput | CreateQuickConnectCommandOutput | CreateRoutingProfileCommandOutput | CreateRuleCommandOutput | CreateSecurityProfileCommandOutput | CreateTaskTemplateCommandOutput | CreateTrafficDistributionGroupCommandOutput | CreateUseCaseCommandOutput | CreateUserCommandOutput | CreateUserHierarchyGroupCommandOutput | CreateViewCommandOutput | CreateViewVersionCommandOutput | CreateVocabularyCommandOutput | DeactivateEvaluationFormCommandOutput | DeleteAttachedFileCommandOutput | DeleteContactEvaluationCommandOutput | DeleteContactFlowCommandOutput | DeleteContactFlowModuleCommandOutput | DeleteEvaluationFormCommandOutput | DeleteHoursOfOperationCommandOutput | DeleteInstanceCommandOutput | DeleteIntegrationAssociationCommandOutput | DeletePredefinedAttributeCommandOutput | DeletePromptCommandOutput | DeleteQueueCommandOutput | DeleteQuickConnectCommandOutput | DeleteRoutingProfileCommandOutput | DeleteRuleCommandOutput | DeleteSecurityProfileCommandOutput | DeleteTaskTemplateCommandOutput | DeleteTrafficDistributionGroupCommandOutput | DeleteUseCaseCommandOutput | DeleteUserCommandOutput | DeleteUserHierarchyGroupCommandOutput | DeleteViewCommandOutput | DeleteViewVersionCommandOutput | DeleteVocabularyCommandOutput | DescribeAgentStatusCommandOutput | DescribeAuthenticationProfileCommandOutput | DescribeContactCommandOutput | DescribeContactEvaluationCommandOutput | DescribeContactFlowCommandOutput | DescribeContactFlowModuleCommandOutput | DescribeEvaluationFormCommandOutput | DescribeHoursOfOperationCommandOutput | DescribeInstanceAttributeCommandOutput | DescribeInstanceCommandOutput | DescribeInstanceStorageConfigCommandOutput | DescribePhoneNumberCommandOutput | DescribePredefinedAttributeCommandOutput | DescribePromptCommandOutput | DescribeQueueCommandOutput | DescribeQuickConnectCommandOutput | DescribeRoutingProfileCommandOutput | DescribeRuleCommandOutput | DescribeSecurityProfileCommandOutput | DescribeTrafficDistributionGroupCommandOutput | DescribeUserCommandOutput | DescribeUserHierarchyGroupCommandOutput | DescribeUserHierarchyStructureCommandOutput | DescribeViewCommandOutput | DescribeVocabularyCommandOutput | DisassociateAnalyticsDataSetCommandOutput | DisassociateApprovedOriginCommandOutput | DisassociateBotCommandOutput | DisassociateFlowCommandOutput | DisassociateInstanceStorageConfigCommandOutput | DisassociateLambdaFunctionCommandOutput | DisassociateLexBotCommandOutput | DisassociatePhoneNumberContactFlowCommandOutput | DisassociateQueueQuickConnectsCommandOutput | DisassociateRoutingProfileQueuesCommandOutput | DisassociateSecurityKeyCommandOutput | DisassociateTrafficDistributionGroupUserCommandOutput | DisassociateUserProficienciesCommandOutput | DismissUserContactCommandOutput | GetAttachedFileCommandOutput | GetContactAttributesCommandOutput | GetCurrentMetricDataCommandOutput | GetCurrentUserDataCommandOutput | GetFederationTokenCommandOutput | GetFlowAssociationCommandOutput | GetMetricDataCommandOutput | GetMetricDataV2CommandOutput | GetPromptFileCommandOutput | GetTaskTemplateCommandOutput | GetTrafficDistributionCommandOutput | ImportPhoneNumberCommandOutput | ListAgentStatusesCommandOutput | ListAnalyticsDataAssociationsCommandOutput | ListApprovedOriginsCommandOutput | ListAuthenticationProfilesCommandOutput | ListBotsCommandOutput | ListContactEvaluationsCommandOutput | ListContactFlowModulesCommandOutput | ListContactFlowsCommandOutput | ListContactReferencesCommandOutput | ListDefaultVocabulariesCommandOutput | ListEvaluationFormVersionsCommandOutput | ListEvaluationFormsCommandOutput | ListFlowAssociationsCommandOutput | ListHoursOfOperationsCommandOutput | ListInstanceAttributesCommandOutput | ListInstanceStorageConfigsCommandOutput | ListInstancesCommandOutput | ListIntegrationAssociationsCommandOutput | ListLambdaFunctionsCommandOutput | ListLexBotsCommandOutput | ListPhoneNumbersCommandOutput | ListPhoneNumbersV2CommandOutput | ListPredefinedAttributesCommandOutput | ListPromptsCommandOutput | ListQueueQuickConnectsCommandOutput | ListQueuesCommandOutput | ListQuickConnectsCommandOutput | ListRealtimeContactAnalysisSegmentsV2CommandOutput | ListRoutingProfileQueuesCommandOutput | ListRoutingProfilesCommandOutput | ListRulesCommandOutput | ListSecurityKeysCommandOutput | ListSecurityProfileApplicationsCommandOutput | ListSecurityProfilePermissionsCommandOutput | ListSecurityProfilesCommandOutput | ListTagsForResourceCommandOutput | ListTaskTemplatesCommandOutput | ListTrafficDistributionGroupUsersCommandOutput | ListTrafficDistributionGroupsCommandOutput | ListUseCasesCommandOutput | ListUserHierarchyGroupsCommandOutput | ListUserProficienciesCommandOutput | ListUsersCommandOutput | ListViewVersionsCommandOutput | ListViewsCommandOutput | MonitorContactCommandOutput | PauseContactCommandOutput | PutUserStatusCommandOutput | ReleasePhoneNumberCommandOutput | ReplicateInstanceCommandOutput | ResumeContactCommandOutput | ResumeContactRecordingCommandOutput | SearchAvailablePhoneNumbersCommandOutput | SearchContactFlowModulesCommandOutput | SearchContactFlowsCommandOutput | SearchContactsCommandOutput | SearchHoursOfOperationsCommandOutput | SearchPredefinedAttributesCommandOutput | SearchPromptsCommandOutput | SearchQueuesCommandOutput | SearchQuickConnectsCommandOutput | SearchResourceTagsCommandOutput | SearchRoutingProfilesCommandOutput | SearchSecurityProfilesCommandOutput | SearchUsersCommandOutput | SearchVocabulariesCommandOutput | SendChatIntegrationEventCommandOutput | StartAttachedFileUploadCommandOutput | StartChatContactCommandOutput | StartContactEvaluationCommandOutput | StartContactRecordingCommandOutput | StartContactStreamingCommandOutput | StartOutboundVoiceContactCommandOutput | StartTaskContactCommandOutput | StartWebRTCContactCommandOutput | StopContactCommandOutput | StopContactRecordingCommandOutput | StopContactStreamingCommandOutput | SubmitContactEvaluationCommandOutput | SuspendContactRecordingCommandOutput | TagContactCommandOutput | TagResourceCommandOutput | TransferContactCommandOutput | UntagContactCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateAuthenticationProfileCommandOutput | UpdateContactAttributesCommandOutput | UpdateContactCommandOutput | UpdateContactEvaluationCommandOutput | UpdateContactFlowContentCommandOutput | UpdateContactFlowMetadataCommandOutput | UpdateContactFlowModuleContentCommandOutput | UpdateContactFlowModuleMetadataCommandOutput | UpdateContactFlowNameCommandOutput | UpdateContactRoutingDataCommandOutput | UpdateContactScheduleCommandOutput | UpdateEvaluationFormCommandOutput | UpdateHoursOfOperationCommandOutput | UpdateInstanceAttributeCommandOutput | UpdateInstanceStorageConfigCommandOutput | UpdateParticipantRoleConfigCommandOutput | UpdatePhoneNumberCommandOutput | UpdatePhoneNumberMetadataCommandOutput | UpdatePredefinedAttributeCommandOutput | UpdatePromptCommandOutput | UpdateQueueHoursOfOperationCommandOutput | UpdateQueueMaxContactsCommandOutput | UpdateQueueNameCommandOutput | UpdateQueueOutboundCallerConfigCommandOutput | UpdateQueueStatusCommandOutput | UpdateQuickConnectConfigCommandOutput | UpdateQuickConnectNameCommandOutput | UpdateRoutingProfileAgentAvailabilityTimerCommandOutput | UpdateRoutingProfileConcurrencyCommandOutput | UpdateRoutingProfileDefaultOutboundQueueCommandOutput | UpdateRoutingProfileNameCommandOutput | UpdateRoutingProfileQueuesCommandOutput | UpdateRuleCommandOutput | UpdateSecurityProfileCommandOutput | UpdateTaskTemplateCommandOutput | UpdateTrafficDistributionCommandOutput | UpdateUserHierarchyCommandOutput | UpdateUserHierarchyGroupNameCommandOutput | UpdateUserHierarchyStructureCommandOutput | UpdateUserIdentityInfoCommandOutput | UpdateUserPhoneConfigCommandOutput | UpdateUserProficienciesCommandOutput | UpdateUserRoutingProfileCommandOutput | UpdateUserSecurityProfilesCommandOutput | UpdateViewContentCommandOutput | UpdateViewMetadataCommandOutput;
|
|
271
274
|
/**
|
|
272
275
|
* @public
|
|
273
276
|
*/
|
|
@@ -401,7 +404,21 @@ export type ConnectClientResolvedConfigType = __SmithyResolvedConfiguration<__Ht
|
|
|
401
404
|
export interface ConnectClientResolvedConfig extends ConnectClientResolvedConfigType {
|
|
402
405
|
}
|
|
403
406
|
/**
|
|
404
|
-
* <
|
|
407
|
+
* <ul>
|
|
408
|
+
* <li>
|
|
409
|
+
* <p>
|
|
410
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Service.html">Amazon Connect
|
|
411
|
+
* actions</a>
|
|
412
|
+
* </p>
|
|
413
|
+
* </li>
|
|
414
|
+
* <li>
|
|
415
|
+
* <p>
|
|
416
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Service.html">Amazon Connect
|
|
417
|
+
* data types</a>
|
|
418
|
+
* </p>
|
|
419
|
+
* </li>
|
|
420
|
+
* </ul>
|
|
421
|
+
* <p>Amazon Connect is a cloud-based contact center solution that you use to set up and
|
|
405
422
|
* manage a customer contact center and provide reliable customer engagement at any scale.</p>
|
|
406
423
|
* <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize
|
|
407
424
|
* contact routing. You can also resolve customer issues more efficiently by getting customers in
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
+
import { DescribeAuthenticationProfileRequest, DescribeAuthenticationProfileResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeAuthenticationProfileCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeAuthenticationProfileCommandInput extends DescribeAuthenticationProfileRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeAuthenticationProfileCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeAuthenticationProfileCommandOutput extends DescribeAuthenticationProfileResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DescribeAuthenticationProfileCommand_base: {
|
|
25
|
+
new (input: DescribeAuthenticationProfileCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAuthenticationProfileCommandInput, DescribeAuthenticationProfileCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DescribeAuthenticationProfileCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAuthenticationProfileCommandInput, DescribeAuthenticationProfileCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>This API is in preview release for Amazon Connect and is subject to change. To
|
|
31
|
+
* request access to this API, contact Amazon Web Services Support.</p>
|
|
32
|
+
* <p>Describes the target authentication profile.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ConnectClient, DescribeAuthenticationProfileCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
37
|
+
* // const { ConnectClient, DescribeAuthenticationProfileCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
38
|
+
* const client = new ConnectClient(config);
|
|
39
|
+
* const input = { // DescribeAuthenticationProfileRequest
|
|
40
|
+
* AuthenticationProfileId: "STRING_VALUE", // required
|
|
41
|
+
* InstanceId: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
43
|
+
* const command = new DescribeAuthenticationProfileCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // DescribeAuthenticationProfileResponse
|
|
46
|
+
* // AuthenticationProfile: { // AuthenticationProfile
|
|
47
|
+
* // Id: "STRING_VALUE",
|
|
48
|
+
* // Arn: "STRING_VALUE",
|
|
49
|
+
* // Name: "STRING_VALUE",
|
|
50
|
+
* // Description: "STRING_VALUE",
|
|
51
|
+
* // AllowedIps: [ // IpCidrList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // BlockedIps: [
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // IsDefault: true || false,
|
|
58
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
59
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
60
|
+
* // LastModifiedRegion: "STRING_VALUE",
|
|
61
|
+
* // PeriodicSessionDuration: Number("int"),
|
|
62
|
+
* // MaxSessionDuration: Number("int"),
|
|
63
|
+
* // },
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* @param DescribeAuthenticationProfileCommandInput - {@link DescribeAuthenticationProfileCommandInput}
|
|
69
|
+
* @returns {@link DescribeAuthenticationProfileCommandOutput}
|
|
70
|
+
* @see {@link DescribeAuthenticationProfileCommandInput} for command's `input` shape.
|
|
71
|
+
* @see {@link DescribeAuthenticationProfileCommandOutput} for command's `response` shape.
|
|
72
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
75
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
78
|
+
* <p>One or more of the specified parameters are not valid.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
81
|
+
* <p>The request is not valid.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
84
|
+
* <p>The specified resource was not found.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
87
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ConnectServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
91
|
+
*
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export declare class DescribeAuthenticationProfileCommand extends DescribeAuthenticationProfileCommand_base {
|
|
95
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
+
import { ListAuthenticationProfilesRequest, ListAuthenticationProfilesResponse } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListAuthenticationProfilesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListAuthenticationProfilesCommandInput extends ListAuthenticationProfilesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListAuthenticationProfilesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListAuthenticationProfilesCommandOutput extends ListAuthenticationProfilesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListAuthenticationProfilesCommand_base: {
|
|
25
|
+
new (input: ListAuthenticationProfilesCommandInput): import("@smithy/smithy-client").CommandImpl<ListAuthenticationProfilesCommandInput, ListAuthenticationProfilesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ListAuthenticationProfilesCommandInput): import("@smithy/smithy-client").CommandImpl<ListAuthenticationProfilesCommandInput, ListAuthenticationProfilesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>This API is in preview release for Amazon Connect and is subject to change. To
|
|
31
|
+
* request access to this API, contact Amazon Web Services Support.</p>
|
|
32
|
+
* <p>Provides summary information about the authentication profiles in a specified Amazon Connect instance.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ConnectClient, ListAuthenticationProfilesCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
37
|
+
* // const { ConnectClient, ListAuthenticationProfilesCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
38
|
+
* const client = new ConnectClient(config);
|
|
39
|
+
* const input = { // ListAuthenticationProfilesRequest
|
|
40
|
+
* InstanceId: "STRING_VALUE", // required
|
|
41
|
+
* MaxResults: Number("int"),
|
|
42
|
+
* NextToken: "STRING_VALUE",
|
|
43
|
+
* };
|
|
44
|
+
* const command = new ListAuthenticationProfilesCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // ListAuthenticationProfilesResponse
|
|
47
|
+
* // AuthenticationProfileSummaryList: [ // AuthenticationProfileSummaryList
|
|
48
|
+
* // { // AuthenticationProfileSummary
|
|
49
|
+
* // Id: "STRING_VALUE",
|
|
50
|
+
* // Arn: "STRING_VALUE",
|
|
51
|
+
* // Name: "STRING_VALUE",
|
|
52
|
+
* // IsDefault: true || false,
|
|
53
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
54
|
+
* // LastModifiedRegion: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // NextToken: "STRING_VALUE",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* @param ListAuthenticationProfilesCommandInput - {@link ListAuthenticationProfilesCommandInput}
|
|
63
|
+
* @returns {@link ListAuthenticationProfilesCommandOutput}
|
|
64
|
+
* @see {@link ListAuthenticationProfilesCommandInput} for command's `input` shape.
|
|
65
|
+
* @see {@link ListAuthenticationProfilesCommandOutput} for command's `response` shape.
|
|
66
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
69
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
72
|
+
* <p>One or more of the specified parameters are not valid.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
75
|
+
* <p>The request is not valid.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
78
|
+
* <p>The specified resource was not found.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
81
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ConnectServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
85
|
+
*
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export declare class ListAuthenticationProfilesCommand extends ListAuthenticationProfilesCommand_base {
|
|
89
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import { ListUserHierarchyGroupsRequest, ListUserHierarchyGroupsResponse } from "../models/
|
|
4
|
+
import { ListUserHierarchyGroupsRequest, ListUserHierarchyGroupsResponse } 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 { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import { ListUserProficienciesRequest, ListUserProficienciesResponse } from "../models/
|
|
4
|
+
import { ListUserProficienciesRequest, ListUserProficienciesResponse } 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 { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import { ListUsersRequest } from "../models/
|
|
5
|
-
import { ListUsersResponse } from "../models/models_2";
|
|
4
|
+
import { ListUsersRequest, ListUsersResponse } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -29,8 +29,7 @@ declare const StartAttachedFileUploadCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Provides a pre-signed Amazon S3 URL in response for uploading your content.</p>
|
|
31
31
|
* <important>
|
|
32
|
-
* <p>You may only use this API to upload attachments to
|
|
33
|
-
* Case</a>.</p>
|
|
32
|
+
* <p>You may only use this API to upload attachments to an <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html">Amazon Connect Case</a>.</p>
|
|
34
33
|
* </important>
|
|
35
34
|
* @example
|
|
36
35
|
* Use a bare-bones client and the command you need to make an API call.
|