@aws-sdk/client-connect 3.418.0 → 3.421.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 +15 -7
- package/dist-cjs/Connect.js +2 -0
- package/dist-cjs/commands/ListSecurityProfileApplicationsCommand.js +51 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/pagination/ListSecurityProfileApplicationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +80 -7
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/ListSecurityProfileApplicationsCommand.js +47 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/ListSecurityProfileApplicationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +71 -0
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/CreateIntegrationAssociationCommand.d.ts +1 -1
- package/dist-types/commands/CreateSecurityProfileCommand.d.ts +8 -0
- package/dist-types/commands/DescribeVocabularyCommand.d.ts +1 -2
- package/dist-types/commands/ListIntegrationAssociationsCommand.d.ts +2 -2
- package/dist-types/commands/ListPhoneNumbersCommand.d.ts +3 -2
- package/dist-types/commands/ListSecurityProfileApplicationsCommand.d.ts +99 -0
- package/dist-types/commands/UpdatePhoneNumberCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePromptCommand.d.ts +1 -2
- package/dist-types/commands/UpdateSecurityProfileCommand.d.ts +8 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +42 -18
- package/dist-types/models/models_1.d.ts +64 -69
- package/dist-types/models/models_2.d.ts +75 -1
- package/dist-types/pagination/ListSecurityProfileApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeVocabularyCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListSecurityProfileApplicationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdatePhoneNumberCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePromptCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +6 -4
- package/dist-types/ts3.4/models/models_1.d.ts +15 -16
- package/dist-types/ts3.4/models/models_2.d.ts +18 -0
- package/dist-types/ts3.4/pagination/ListSecurityProfileApplicationsPaginator.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 +12 -0
- package/package.json +3 -3
|
@@ -1,5 +1,73 @@
|
|
|
1
|
-
import { AgentAvailabilityTimer, AgentConfig, Evaluation, EvaluationFormQuestion, EvaluationFormScoringStrategy, EvaluationFormVersionStatus, MediaConcurrency, OutboundCallerConfig, QueueStatus, QuickConnectConfig, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, View, ViewInputContent, ViewStatus } from "./models_0";
|
|
1
|
+
import { AgentAvailabilityTimer, AgentConfig, Application, Evaluation, EvaluationFormQuestion, EvaluationFormScoringStrategy, EvaluationFormVersionStatus, MediaConcurrency, OutboundCallerConfig, QueueStatus, QuickConnectConfig, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, View, ViewInputContent, ViewStatus } from "./models_0";
|
|
2
2
|
import { HierarchyGroupCondition, HoursOfOperationSearchFilter, PromptSearchFilter, QueueSearchFilter, QuickConnectSearchFilter, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, SignInConfig, StringCondition, TelephonyConfig, UserSearchFilter } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface UpdatePhoneNumberRequest {
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
* <p>A unique identifier for the phone number.</p>
|
|
10
|
+
*/
|
|
11
|
+
PhoneNumberId: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
* <p>The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution groups that phone numbers are claimed to.</p>
|
|
15
|
+
*/
|
|
16
|
+
TargetArn: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
20
|
+
* request. If not provided, the Amazon Web Services
|
|
21
|
+
* SDK populates this field. For more information about idempotency, see
|
|
22
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
23
|
+
*/
|
|
24
|
+
ClientToken?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export interface UpdatePhoneNumberResponse {
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* <p>A unique identifier for the phone number.</p>
|
|
33
|
+
*/
|
|
34
|
+
PhoneNumberId?: string;
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
* <p>The Amazon Resource Name (ARN) of the phone number.</p>
|
|
38
|
+
*/
|
|
39
|
+
PhoneNumberArn?: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export interface UpdatePromptRequest {
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* <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>
|
|
48
|
+
*/
|
|
49
|
+
InstanceId: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
* <p>A unique identifier for the prompt.</p>
|
|
53
|
+
*/
|
|
54
|
+
PromptId: string | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
* <p>The name of the prompt.</p>
|
|
58
|
+
*/
|
|
59
|
+
Name?: string;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
* <p>A description of the prompt.</p>
|
|
63
|
+
*/
|
|
64
|
+
Description?: string;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
* <p>The URI for the S3 bucket where the prompt is stored.</p>
|
|
68
|
+
*/
|
|
69
|
+
S3Uri?: string;
|
|
70
|
+
}
|
|
3
71
|
/**
|
|
4
72
|
* @public
|
|
5
73
|
*/
|
|
@@ -347,6 +415,12 @@ export interface UpdateSecurityProfileRequest {
|
|
|
347
415
|
* <p>The list of resources that a security profile applies tag restrictions to in Amazon Connect.</p>
|
|
348
416
|
*/
|
|
349
417
|
TagRestrictedResources?: string[];
|
|
418
|
+
/**
|
|
419
|
+
* @public
|
|
420
|
+
* <p>This API is in preview release for Amazon Connect and is subject to change.</p>
|
|
421
|
+
* <p>A list of the third party application's metadata.</p>
|
|
422
|
+
*/
|
|
423
|
+
Applications?: Application[];
|
|
350
424
|
}
|
|
351
425
|
/**
|
|
352
426
|
* @public
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListSecurityProfileApplicationsCommandInput, ListSecurityProfileApplicationsCommandOutput } from "../commands/ListSecurityProfileApplicationsCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListSecurityProfileApplications(config: ConnectPaginationConfiguration, input: ListSecurityProfileApplicationsCommandInput, ...additionalArguments: any): Paginator<ListSecurityProfileApplicationsCommandOutput>;
|
|
@@ -30,6 +30,7 @@ export * from "./ListRoutingProfileQueuesPaginator";
|
|
|
30
30
|
export * from "./ListRoutingProfilesPaginator";
|
|
31
31
|
export * from "./ListRulesPaginator";
|
|
32
32
|
export * from "./ListSecurityKeysPaginator";
|
|
33
|
+
export * from "./ListSecurityProfileApplicationsPaginator";
|
|
33
34
|
export * from "./ListSecurityProfilePermissionsPaginator";
|
|
34
35
|
export * from "./ListSecurityProfilesPaginator";
|
|
35
36
|
export * from "./ListTaskTemplatesPaginator";
|
|
@@ -127,6 +127,7 @@ import { ListRoutingProfileQueuesCommandInput, ListRoutingProfileQueuesCommandOu
|
|
|
127
127
|
import { ListRoutingProfilesCommandInput, ListRoutingProfilesCommandOutput } from "../commands/ListRoutingProfilesCommand";
|
|
128
128
|
import { ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand";
|
|
129
129
|
import { ListSecurityKeysCommandInput, ListSecurityKeysCommandOutput } from "../commands/ListSecurityKeysCommand";
|
|
130
|
+
import { ListSecurityProfileApplicationsCommandInput, ListSecurityProfileApplicationsCommandOutput } from "../commands/ListSecurityProfileApplicationsCommand";
|
|
130
131
|
import { ListSecurityProfilePermissionsCommandInput, ListSecurityProfilePermissionsCommandOutput } from "../commands/ListSecurityProfilePermissionsCommand";
|
|
131
132
|
import { ListSecurityProfilesCommandInput, ListSecurityProfilesCommandOutput } from "../commands/ListSecurityProfilesCommand";
|
|
132
133
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
@@ -717,6 +718,10 @@ export declare const se_ListRulesCommand: (input: ListRulesCommandInput, context
|
|
|
717
718
|
* serializeAws_restJson1ListSecurityKeysCommand
|
|
718
719
|
*/
|
|
719
720
|
export declare const se_ListSecurityKeysCommand: (input: ListSecurityKeysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
721
|
+
/**
|
|
722
|
+
* serializeAws_restJson1ListSecurityProfileApplicationsCommand
|
|
723
|
+
*/
|
|
724
|
+
export declare const se_ListSecurityProfileApplicationsCommand: (input: ListSecurityProfileApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
720
725
|
/**
|
|
721
726
|
* serializeAws_restJson1ListSecurityProfilePermissionsCommand
|
|
722
727
|
*/
|
|
@@ -1553,6 +1558,10 @@ export declare const de_ListRulesCommand: (output: __HttpResponse, context: __Se
|
|
|
1553
1558
|
* deserializeAws_restJson1ListSecurityKeysCommand
|
|
1554
1559
|
*/
|
|
1555
1560
|
export declare const de_ListSecurityKeysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSecurityKeysCommandOutput>;
|
|
1561
|
+
/**
|
|
1562
|
+
* deserializeAws_restJson1ListSecurityProfileApplicationsCommand
|
|
1563
|
+
*/
|
|
1564
|
+
export declare const de_ListSecurityProfileApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSecurityProfileApplicationsCommandOutput>;
|
|
1556
1565
|
/**
|
|
1557
1566
|
* deserializeAws_restJson1ListSecurityProfilePermissionsCommand
|
|
1558
1567
|
*/
|
|
@@ -507,6 +507,10 @@ import {
|
|
|
507
507
|
ListSecurityKeysCommandInput,
|
|
508
508
|
ListSecurityKeysCommandOutput,
|
|
509
509
|
} from "./commands/ListSecurityKeysCommand";
|
|
510
|
+
import {
|
|
511
|
+
ListSecurityProfileApplicationsCommandInput,
|
|
512
|
+
ListSecurityProfileApplicationsCommandOutput,
|
|
513
|
+
} from "./commands/ListSecurityProfileApplicationsCommand";
|
|
510
514
|
import {
|
|
511
515
|
ListSecurityProfilePermissionsCommandInput,
|
|
512
516
|
ListSecurityProfilePermissionsCommandOutput,
|
|
@@ -2512,6 +2516,19 @@ export interface Connect {
|
|
|
2512
2516
|
options: __HttpHandlerOptions,
|
|
2513
2517
|
cb: (err: any, data?: ListSecurityKeysCommandOutput) => void
|
|
2514
2518
|
): void;
|
|
2519
|
+
listSecurityProfileApplications(
|
|
2520
|
+
args: ListSecurityProfileApplicationsCommandInput,
|
|
2521
|
+
options?: __HttpHandlerOptions
|
|
2522
|
+
): Promise<ListSecurityProfileApplicationsCommandOutput>;
|
|
2523
|
+
listSecurityProfileApplications(
|
|
2524
|
+
args: ListSecurityProfileApplicationsCommandInput,
|
|
2525
|
+
cb: (err: any, data?: ListSecurityProfileApplicationsCommandOutput) => void
|
|
2526
|
+
): void;
|
|
2527
|
+
listSecurityProfileApplications(
|
|
2528
|
+
args: ListSecurityProfileApplicationsCommandInput,
|
|
2529
|
+
options: __HttpHandlerOptions,
|
|
2530
|
+
cb: (err: any, data?: ListSecurityProfileApplicationsCommandOutput) => void
|
|
2531
|
+
): void;
|
|
2515
2532
|
listSecurityProfilePermissions(
|
|
2516
2533
|
args: ListSecurityProfilePermissionsCommandInput,
|
|
2517
2534
|
options?: __HttpHandlerOptions
|
|
@@ -553,6 +553,10 @@ import {
|
|
|
553
553
|
ListSecurityKeysCommandInput,
|
|
554
554
|
ListSecurityKeysCommandOutput,
|
|
555
555
|
} from "./commands/ListSecurityKeysCommand";
|
|
556
|
+
import {
|
|
557
|
+
ListSecurityProfileApplicationsCommandInput,
|
|
558
|
+
ListSecurityProfileApplicationsCommandOutput,
|
|
559
|
+
} from "./commands/ListSecurityProfileApplicationsCommand";
|
|
556
560
|
import {
|
|
557
561
|
ListSecurityProfilePermissionsCommandInput,
|
|
558
562
|
ListSecurityProfilePermissionsCommandOutput,
|
|
@@ -1016,6 +1020,7 @@ export type ServiceInputTypes =
|
|
|
1016
1020
|
| ListRoutingProfilesCommandInput
|
|
1017
1021
|
| ListRulesCommandInput
|
|
1018
1022
|
| ListSecurityKeysCommandInput
|
|
1023
|
+
| ListSecurityProfileApplicationsCommandInput
|
|
1019
1024
|
| ListSecurityProfilePermissionsCommandInput
|
|
1020
1025
|
| ListSecurityProfilesCommandInput
|
|
1021
1026
|
| ListTagsForResourceCommandInput
|
|
@@ -1226,6 +1231,7 @@ export type ServiceOutputTypes =
|
|
|
1226
1231
|
| ListRoutingProfilesCommandOutput
|
|
1227
1232
|
| ListRulesCommandOutput
|
|
1228
1233
|
| ListSecurityKeysCommandOutput
|
|
1234
|
+
| ListSecurityProfileApplicationsCommandOutput
|
|
1229
1235
|
| ListSecurityProfilePermissionsCommandOutput
|
|
1230
1236
|
| ListSecurityProfilesCommandOutput
|
|
1231
1237
|
| ListTagsForResourceCommandOutput
|
|
@@ -11,8 +11,10 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
14
|
+
import {
|
|
15
|
+
DescribeVocabularyRequest,
|
|
16
|
+
DescribeVocabularyResponse,
|
|
17
|
+
} from "../models/models_1";
|
|
16
18
|
export { __MetadataBearer, $Command };
|
|
17
19
|
export interface DescribeVocabularyCommandInput
|
|
18
20
|
extends DescribeVocabularyRequest {}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ConnectClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ConnectClient";
|
|
14
|
+
import {
|
|
15
|
+
ListSecurityProfileApplicationsRequest,
|
|
16
|
+
ListSecurityProfileApplicationsResponse,
|
|
17
|
+
} from "../models/models_1";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListSecurityProfileApplicationsCommandInput
|
|
20
|
+
extends ListSecurityProfileApplicationsRequest {}
|
|
21
|
+
export interface ListSecurityProfileApplicationsCommandOutput
|
|
22
|
+
extends ListSecurityProfileApplicationsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListSecurityProfileApplicationsCommand extends $Command<
|
|
25
|
+
ListSecurityProfileApplicationsCommandInput,
|
|
26
|
+
ListSecurityProfileApplicationsCommandOutput,
|
|
27
|
+
ConnectClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListSecurityProfileApplicationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListSecurityProfileApplicationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ConnectClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListSecurityProfileApplicationsCommandInput,
|
|
38
|
+
ListSecurityProfileApplicationsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
import {
|
|
15
15
|
UpdatePhoneNumberRequest,
|
|
16
16
|
UpdatePhoneNumberResponse,
|
|
17
|
-
} from "../models/
|
|
17
|
+
} from "../models/models_2";
|
|
18
18
|
export { __MetadataBearer, $Command };
|
|
19
19
|
export interface UpdatePhoneNumberCommandInput
|
|
20
20
|
extends UpdatePhoneNumberRequest {}
|
|
@@ -11,8 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import { UpdatePromptRequest } from "../models/
|
|
15
|
-
import { UpdatePromptResponse } from "../models/models_2";
|
|
14
|
+
import { UpdatePromptRequest, UpdatePromptResponse } from "../models/models_2";
|
|
16
15
|
export { __MetadataBearer, $Command };
|
|
17
16
|
export interface UpdatePromptCommandInput extends UpdatePromptRequest {}
|
|
18
17
|
export interface UpdatePromptCommandOutput
|
|
@@ -125,6 +125,7 @@ export * from "./ListRoutingProfileQueuesCommand";
|
|
|
125
125
|
export * from "./ListRoutingProfilesCommand";
|
|
126
126
|
export * from "./ListRulesCommand";
|
|
127
127
|
export * from "./ListSecurityKeysCommand";
|
|
128
|
+
export * from "./ListSecurityProfileApplicationsCommand";
|
|
128
129
|
export * from "./ListSecurityProfilePermissionsCommand";
|
|
129
130
|
export * from "./ListSecurityProfilesCommand";
|
|
130
131
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -668,6 +668,7 @@ export interface CreateInstanceResponse {
|
|
|
668
668
|
Arn?: string;
|
|
669
669
|
}
|
|
670
670
|
export declare const IntegrationType: {
|
|
671
|
+
readonly APPLICATION: "APPLICATION";
|
|
671
672
|
readonly CASES_DOMAIN: "CASES_DOMAIN";
|
|
672
673
|
readonly EVENT: "EVENT";
|
|
673
674
|
readonly PINPOINT_APP: "PINPOINT_APP";
|
|
@@ -899,6 +900,10 @@ export interface CreateRuleResponse {
|
|
|
899
900
|
RuleArn: string | undefined;
|
|
900
901
|
RuleId: string | undefined;
|
|
901
902
|
}
|
|
903
|
+
export interface Application {
|
|
904
|
+
Namespace?: string;
|
|
905
|
+
ApplicationPermissions?: string[];
|
|
906
|
+
}
|
|
902
907
|
export interface CreateSecurityProfileRequest {
|
|
903
908
|
SecurityProfileName: string | undefined;
|
|
904
909
|
Description?: string;
|
|
@@ -907,6 +912,7 @@ export interface CreateSecurityProfileRequest {
|
|
|
907
912
|
Tags?: Record<string, string>;
|
|
908
913
|
AllowedAccessControlTags?: Record<string, string>;
|
|
909
914
|
TagRestrictedResources?: string[];
|
|
915
|
+
Applications?: Application[];
|
|
910
916
|
}
|
|
911
917
|
export interface CreateSecurityProfileResponse {
|
|
912
918
|
SecurityProfileId?: string;
|
|
@@ -2045,10 +2051,6 @@ export interface DescribeViewRequest {
|
|
|
2045
2051
|
export interface DescribeViewResponse {
|
|
2046
2052
|
View?: View;
|
|
2047
2053
|
}
|
|
2048
|
-
export interface DescribeVocabularyRequest {
|
|
2049
|
-
InstanceId: string | undefined;
|
|
2050
|
-
VocabularyId: string | undefined;
|
|
2051
|
-
}
|
|
2052
2054
|
export declare const CreateInstanceRequestFilterSensitiveLog: (
|
|
2053
2055
|
obj: CreateInstanceRequest
|
|
2054
2056
|
) => any;
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
AgentStatusState,
|
|
9
9
|
AgentStatusSummary,
|
|
10
10
|
AgentStatusType,
|
|
11
|
+
Application,
|
|
11
12
|
Attribute,
|
|
12
13
|
Channel,
|
|
13
14
|
ContactFlowModuleState,
|
|
@@ -58,6 +59,10 @@ import {
|
|
|
58
59
|
VocabularyLanguageCode,
|
|
59
60
|
VocabularyState,
|
|
60
61
|
} from "./models_0";
|
|
62
|
+
export interface DescribeVocabularyRequest {
|
|
63
|
+
InstanceId: string | undefined;
|
|
64
|
+
VocabularyId: string | undefined;
|
|
65
|
+
}
|
|
61
66
|
export interface Vocabulary {
|
|
62
67
|
Name: string | undefined;
|
|
63
68
|
Id: string | undefined;
|
|
@@ -969,6 +974,16 @@ export interface ListSecurityKeysResponse {
|
|
|
969
974
|
SecurityKeys?: SecurityKey[];
|
|
970
975
|
NextToken?: string;
|
|
971
976
|
}
|
|
977
|
+
export interface ListSecurityProfileApplicationsRequest {
|
|
978
|
+
SecurityProfileId: string | undefined;
|
|
979
|
+
InstanceId: string | undefined;
|
|
980
|
+
NextToken?: string;
|
|
981
|
+
MaxResults?: number;
|
|
982
|
+
}
|
|
983
|
+
export interface ListSecurityProfileApplicationsResponse {
|
|
984
|
+
Applications?: Application[];
|
|
985
|
+
NextToken?: string;
|
|
986
|
+
}
|
|
972
987
|
export interface ListSecurityProfilePermissionsRequest {
|
|
973
988
|
SecurityProfileId: string | undefined;
|
|
974
989
|
InstanceId: string | undefined;
|
|
@@ -1721,22 +1736,6 @@ export interface UpdateParticipantRoleConfigRequest {
|
|
|
1721
1736
|
ChannelConfiguration: UpdateParticipantRoleConfigChannelInfo | undefined;
|
|
1722
1737
|
}
|
|
1723
1738
|
export interface UpdateParticipantRoleConfigResponse {}
|
|
1724
|
-
export interface UpdatePhoneNumberRequest {
|
|
1725
|
-
PhoneNumberId: string | undefined;
|
|
1726
|
-
TargetArn: string | undefined;
|
|
1727
|
-
ClientToken?: string;
|
|
1728
|
-
}
|
|
1729
|
-
export interface UpdatePhoneNumberResponse {
|
|
1730
|
-
PhoneNumberId?: string;
|
|
1731
|
-
PhoneNumberArn?: string;
|
|
1732
|
-
}
|
|
1733
|
-
export interface UpdatePromptRequest {
|
|
1734
|
-
InstanceId: string | undefined;
|
|
1735
|
-
PromptId: string | undefined;
|
|
1736
|
-
Name?: string;
|
|
1737
|
-
Description?: string;
|
|
1738
|
-
S3Uri?: string;
|
|
1739
|
-
}
|
|
1740
1739
|
export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
|
|
1741
1740
|
export declare const GetFederationTokenResponseFilterSensitiveLog: (
|
|
1742
1741
|
obj: GetFederationTokenResponse
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AgentAvailabilityTimer,
|
|
3
3
|
AgentConfig,
|
|
4
|
+
Application,
|
|
4
5
|
Evaluation,
|
|
5
6
|
EvaluationFormQuestion,
|
|
6
7
|
EvaluationFormScoringStrategy,
|
|
@@ -36,6 +37,22 @@ import {
|
|
|
36
37
|
TelephonyConfig,
|
|
37
38
|
UserSearchFilter,
|
|
38
39
|
} from "./models_1";
|
|
40
|
+
export interface UpdatePhoneNumberRequest {
|
|
41
|
+
PhoneNumberId: string | undefined;
|
|
42
|
+
TargetArn: string | undefined;
|
|
43
|
+
ClientToken?: string;
|
|
44
|
+
}
|
|
45
|
+
export interface UpdatePhoneNumberResponse {
|
|
46
|
+
PhoneNumberId?: string;
|
|
47
|
+
PhoneNumberArn?: string;
|
|
48
|
+
}
|
|
49
|
+
export interface UpdatePromptRequest {
|
|
50
|
+
InstanceId: string | undefined;
|
|
51
|
+
PromptId: string | undefined;
|
|
52
|
+
Name?: string;
|
|
53
|
+
Description?: string;
|
|
54
|
+
S3Uri?: string;
|
|
55
|
+
}
|
|
39
56
|
export interface UpdatePromptResponse {
|
|
40
57
|
PromptARN?: string;
|
|
41
58
|
PromptId?: string;
|
|
@@ -118,6 +135,7 @@ export interface UpdateSecurityProfileRequest {
|
|
|
118
135
|
InstanceId: string | undefined;
|
|
119
136
|
AllowedAccessControlTags?: Record<string, string>;
|
|
120
137
|
TagRestrictedResources?: string[];
|
|
138
|
+
Applications?: Application[];
|
|
121
139
|
}
|
|
122
140
|
export interface UpdateTaskTemplateRequest {
|
|
123
141
|
TaskTemplateId: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSecurityProfileApplicationsCommandInput,
|
|
4
|
+
ListSecurityProfileApplicationsCommandOutput,
|
|
5
|
+
} from "../commands/ListSecurityProfileApplicationsCommand";
|
|
6
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListSecurityProfileApplications(
|
|
8
|
+
config: ConnectPaginationConfiguration,
|
|
9
|
+
input: ListSecurityProfileApplicationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListSecurityProfileApplicationsCommandOutput>;
|
|
@@ -30,6 +30,7 @@ export * from "./ListRoutingProfileQueuesPaginator";
|
|
|
30
30
|
export * from "./ListRoutingProfilesPaginator";
|
|
31
31
|
export * from "./ListRulesPaginator";
|
|
32
32
|
export * from "./ListSecurityKeysPaginator";
|
|
33
|
+
export * from "./ListSecurityProfileApplicationsPaginator";
|
|
33
34
|
export * from "./ListSecurityProfilePermissionsPaginator";
|
|
34
35
|
export * from "./ListSecurityProfilesPaginator";
|
|
35
36
|
export * from "./ListTaskTemplatesPaginator";
|
|
@@ -511,6 +511,10 @@ import {
|
|
|
511
511
|
ListSecurityKeysCommandInput,
|
|
512
512
|
ListSecurityKeysCommandOutput,
|
|
513
513
|
} from "../commands/ListSecurityKeysCommand";
|
|
514
|
+
import {
|
|
515
|
+
ListSecurityProfileApplicationsCommandInput,
|
|
516
|
+
ListSecurityProfileApplicationsCommandOutput,
|
|
517
|
+
} from "../commands/ListSecurityProfileApplicationsCommand";
|
|
514
518
|
import {
|
|
515
519
|
ListSecurityProfilePermissionsCommandInput,
|
|
516
520
|
ListSecurityProfilePermissionsCommandOutput,
|
|
@@ -1347,6 +1351,10 @@ export declare const se_ListSecurityKeysCommand: (
|
|
|
1347
1351
|
input: ListSecurityKeysCommandInput,
|
|
1348
1352
|
context: __SerdeContext
|
|
1349
1353
|
) => Promise<__HttpRequest>;
|
|
1354
|
+
export declare const se_ListSecurityProfileApplicationsCommand: (
|
|
1355
|
+
input: ListSecurityProfileApplicationsCommandInput,
|
|
1356
|
+
context: __SerdeContext
|
|
1357
|
+
) => Promise<__HttpRequest>;
|
|
1350
1358
|
export declare const se_ListSecurityProfilePermissionsCommand: (
|
|
1351
1359
|
input: ListSecurityProfilePermissionsCommandInput,
|
|
1352
1360
|
context: __SerdeContext
|
|
@@ -2183,6 +2191,10 @@ export declare const de_ListSecurityKeysCommand: (
|
|
|
2183
2191
|
output: __HttpResponse,
|
|
2184
2192
|
context: __SerdeContext
|
|
2185
2193
|
) => Promise<ListSecurityKeysCommandOutput>;
|
|
2194
|
+
export declare const de_ListSecurityProfileApplicationsCommand: (
|
|
2195
|
+
output: __HttpResponse,
|
|
2196
|
+
context: __SerdeContext
|
|
2197
|
+
) => Promise<ListSecurityProfileApplicationsCommandOutput>;
|
|
2186
2198
|
export declare const de_ListSecurityProfilePermissionsCommand: (
|
|
2187
2199
|
output: __HttpResponse,
|
|
2188
2200
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.421.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.421.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.421.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.418.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.418.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.418.0",
|