@aws-sdk/client-connect 3.1000.0 → 3.1002.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 +21 -0
- package/dist-cjs/index.js +42 -0
- package/dist-cjs/schemas/schemas_0.js +97 -37
- package/dist-es/Connect.js +6 -0
- package/dist-es/commands/AssociateQueueEmailAddressesCommand.js +16 -0
- package/dist-es/commands/DisassociateQueueEmailAddressesCommand.js +16 -0
- package/dist-es/commands/ListQueueEmailAddressesCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +66 -6
- package/dist-types/Connect.d.ts +21 -0
- package/dist-types/ConnectClient.d.ts +5 -2
- package/dist-types/commands/AssociateQueueEmailAddressesCommand.d.ts +120 -0
- package/dist-types/commands/CreateQueueCommand.d.ts +5 -0
- package/dist-types/commands/DisassociateQueueEmailAddressesCommand.d.ts +109 -0
- package/dist-types/commands/GetTestCaseExecutionSummaryCommand.d.ts +2 -1
- package/dist-types/commands/GetTrafficDistributionCommand.d.ts +1 -2
- package/dist-types/commands/ListQueueEmailAddressesCommand.d.ts +121 -0
- package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +1 -2
- package/dist-types/commands/SearchTestCasesCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +44 -67
- package/dist-types/models/models_1.d.ts +97 -55
- package/dist-types/models/models_2.d.ts +126 -128
- package/dist-types/models/models_3.d.ts +129 -2
- package/dist-types/schemas/schemas_0.d.ts +9 -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/AssociateQueueEmailAddressesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DisassociateQueueEmailAddressesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTestCaseExecutionSummaryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetTrafficDistributionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListQueueEmailAddressesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchSecurityProfilesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchTestCasesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +10 -15
- package/dist-types/ts3.4/models/models_1.d.ts +21 -16
- package/dist-types/ts3.4/models/models_2.d.ts +31 -29
- package/dist-types/ts3.4/models/models_3.d.ts +28 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/package.json +13 -13
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
+
import type { DisassociateQueueEmailAddressesRequest } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DisassociateQueueEmailAddressesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DisassociateQueueEmailAddressesCommandInput extends DisassociateQueueEmailAddressesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DisassociateQueueEmailAddressesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DisassociateQueueEmailAddressesCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DisassociateQueueEmailAddressesCommand_base: {
|
|
25
|
+
new (input: DisassociateQueueEmailAddressesCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateQueueEmailAddressesCommandInput, DisassociateQueueEmailAddressesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DisassociateQueueEmailAddressesCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateQueueEmailAddressesCommandInput, DisassociateQueueEmailAddressesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Removes the association between a set of email addresses and a queue. After disassociation, agents will no longer be able to select these email addresses as "From" addresses when replying to inbound email contacts or initiating outbound email contacts in this queue.</p>
|
|
31
|
+
* <p>
|
|
32
|
+
* <b>Important things to know</b>
|
|
33
|
+
* </p>
|
|
34
|
+
* <ul>
|
|
35
|
+
* <li>
|
|
36
|
+
* <p>Agents will no longer see these email addresses in their "From" address selection options for this queue.</p>
|
|
37
|
+
* </li>
|
|
38
|
+
* <li>
|
|
39
|
+
* <p>The email addresses themselves are not deleted from the instance, only their availability for agent selection in this queue is removed.</p>
|
|
40
|
+
* </li>
|
|
41
|
+
* <li>
|
|
42
|
+
* <p>Changes take effect immediately and will affect the agent experience in the Contact Control Panel (CCP).</p>
|
|
43
|
+
* </li>
|
|
44
|
+
* </ul>
|
|
45
|
+
* @example
|
|
46
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
47
|
+
* ```javascript
|
|
48
|
+
* import { ConnectClient, DisassociateQueueEmailAddressesCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
49
|
+
* // const { ConnectClient, DisassociateQueueEmailAddressesCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
50
|
+
* // import type { ConnectClientConfig } from "@aws-sdk/client-connect";
|
|
51
|
+
* const config = {}; // type is ConnectClientConfig
|
|
52
|
+
* const client = new ConnectClient(config);
|
|
53
|
+
* const input = { // DisassociateQueueEmailAddressesRequest
|
|
54
|
+
* InstanceId: "STRING_VALUE", // required
|
|
55
|
+
* QueueId: "STRING_VALUE", // required
|
|
56
|
+
* EmailAddressesId: [ // EmailAddressIdList // required
|
|
57
|
+
* "STRING_VALUE",
|
|
58
|
+
* ],
|
|
59
|
+
* ClientToken: "STRING_VALUE",
|
|
60
|
+
* };
|
|
61
|
+
* const command = new DisassociateQueueEmailAddressesCommand(input);
|
|
62
|
+
* const response = await client.send(command);
|
|
63
|
+
* // {};
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param DisassociateQueueEmailAddressesCommandInput - {@link DisassociateQueueEmailAddressesCommandInput}
|
|
68
|
+
* @returns {@link DisassociateQueueEmailAddressesCommandOutput}
|
|
69
|
+
* @see {@link DisassociateQueueEmailAddressesCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link DisassociateQueueEmailAddressesCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
74
|
+
* <p>You do not have sufficient permissions to perform this action.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
77
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
80
|
+
* <p>One or more of the specified parameters are not valid.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
83
|
+
* <p>The request is not valid.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
86
|
+
* <p>The specified resource was not found.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
89
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ConnectServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
93
|
+
*
|
|
94
|
+
*
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export declare class DisassociateQueueEmailAddressesCommand extends DisassociateQueueEmailAddressesCommand_base {
|
|
98
|
+
/** @internal type navigation helper, not in runtime. */
|
|
99
|
+
protected static __types: {
|
|
100
|
+
api: {
|
|
101
|
+
input: DisassociateQueueEmailAddressesRequest;
|
|
102
|
+
output: {};
|
|
103
|
+
};
|
|
104
|
+
sdk: {
|
|
105
|
+
input: DisassociateQueueEmailAddressesCommandInput;
|
|
106
|
+
output: DisassociateQueueEmailAddressesCommandOutput;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import type { GetTestCaseExecutionSummaryRequest
|
|
4
|
+
import type { GetTestCaseExecutionSummaryRequest } from "../models/models_1";
|
|
5
|
+
import type { GetTestCaseExecutionSummaryResponse } from "../models/models_2";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import type { GetTrafficDistributionRequest } from "../models/
|
|
5
|
-
import type { GetTrafficDistributionResponse } from "../models/models_2";
|
|
4
|
+
import type { GetTrafficDistributionRequest, GetTrafficDistributionResponse } from "../models/models_2";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
+
import type { ListQueueEmailAddressesRequest, ListQueueEmailAddressesResponse } from "../models/models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListQueueEmailAddressesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListQueueEmailAddressesCommandInput extends ListQueueEmailAddressesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListQueueEmailAddressesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListQueueEmailAddressesCommandOutput extends ListQueueEmailAddressesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListQueueEmailAddressesCommand_base: {
|
|
25
|
+
new (input: ListQueueEmailAddressesCommandInput): import("@smithy/smithy-client").CommandImpl<ListQueueEmailAddressesCommandInput, ListQueueEmailAddressesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListQueueEmailAddressesCommandInput): import("@smithy/smithy-client").CommandImpl<ListQueueEmailAddressesCommandInput, ListQueueEmailAddressesCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists all email addresses that are currently associated with a specific queue, providing details about which "From" email addresses agents can select when handling email contacts. This helps administrators manage agent email address options and understand the available choices for different brands and business units.</p>
|
|
31
|
+
* <p>
|
|
32
|
+
* <b>Important things to know</b>
|
|
33
|
+
* </p>
|
|
34
|
+
* <ul>
|
|
35
|
+
* <li>
|
|
36
|
+
* <p>The response includes metadata about each email address available for agent selection, including whether it's configured as the default outbound email.</p>
|
|
37
|
+
* </li>
|
|
38
|
+
* <li>
|
|
39
|
+
* <p>Agents can select from these email addresses when replying to inbound contacts or initiating outbound contacts in this queue.</p>
|
|
40
|
+
* </li>
|
|
41
|
+
* <li>
|
|
42
|
+
* <p>The list includes both explicitly associated email addresses and any default outbound email address configured for the queue.</p>
|
|
43
|
+
* </li>
|
|
44
|
+
* <li>
|
|
45
|
+
* <p>Results are paginated to handle queues with many associated email addresses (up to 50 per queue).</p>
|
|
46
|
+
* </li>
|
|
47
|
+
* </ul>
|
|
48
|
+
* @example
|
|
49
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
50
|
+
* ```javascript
|
|
51
|
+
* import { ConnectClient, ListQueueEmailAddressesCommand } from "@aws-sdk/client-connect"; // ES Modules import
|
|
52
|
+
* // const { ConnectClient, ListQueueEmailAddressesCommand } = require("@aws-sdk/client-connect"); // CommonJS import
|
|
53
|
+
* // import type { ConnectClientConfig } from "@aws-sdk/client-connect";
|
|
54
|
+
* const config = {}; // type is ConnectClientConfig
|
|
55
|
+
* const client = new ConnectClient(config);
|
|
56
|
+
* const input = { // ListQueueEmailAddressesRequest
|
|
57
|
+
* InstanceId: "STRING_VALUE", // required
|
|
58
|
+
* QueueId: "STRING_VALUE", // required
|
|
59
|
+
* NextToken: "STRING_VALUE",
|
|
60
|
+
* MaxResults: Number("int"),
|
|
61
|
+
* };
|
|
62
|
+
* const command = new ListQueueEmailAddressesCommand(input);
|
|
63
|
+
* const response = await client.send(command);
|
|
64
|
+
* // { // ListQueueEmailAddressesResponse
|
|
65
|
+
* // NextToken: "STRING_VALUE",
|
|
66
|
+
* // EmailAddressMetadataList: [ // EmailAddressMetadataList
|
|
67
|
+
* // { // EmailAddressSummary
|
|
68
|
+
* // Id: "STRING_VALUE",
|
|
69
|
+
* // Arn: "STRING_VALUE",
|
|
70
|
+
* // IsDefaultOutboundEmail: true || false,
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
74
|
+
* // LastModifiedRegion: "STRING_VALUE",
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
77
|
+
* ```
|
|
78
|
+
*
|
|
79
|
+
* @param ListQueueEmailAddressesCommandInput - {@link ListQueueEmailAddressesCommandInput}
|
|
80
|
+
* @returns {@link ListQueueEmailAddressesCommandOutput}
|
|
81
|
+
* @see {@link ListQueueEmailAddressesCommandInput} for command's `input` shape.
|
|
82
|
+
* @see {@link ListQueueEmailAddressesCommandOutput} for command's `response` shape.
|
|
83
|
+
* @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
86
|
+
* <p>You do not have sufficient permissions to perform this action.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
89
|
+
* <p>Request processing failed because of an error or failure with the service.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
92
|
+
* <p>One or more of the specified parameters are not valid.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
95
|
+
* <p>The request is not valid.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
98
|
+
* <p>The specified resource was not found.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
101
|
+
* <p>The throttling limit has been exceeded.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ConnectServiceException}
|
|
104
|
+
* <p>Base exception class for all service exceptions from Connect service.</p>
|
|
105
|
+
*
|
|
106
|
+
*
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
export declare class ListQueueEmailAddressesCommand extends ListQueueEmailAddressesCommand_base {
|
|
110
|
+
/** @internal type navigation helper, not in runtime. */
|
|
111
|
+
protected static __types: {
|
|
112
|
+
api: {
|
|
113
|
+
input: ListQueueEmailAddressesRequest;
|
|
114
|
+
output: ListQueueEmailAddressesResponse;
|
|
115
|
+
};
|
|
116
|
+
sdk: {
|
|
117
|
+
input: ListQueueEmailAddressesCommandInput;
|
|
118
|
+
output: ListQueueEmailAddressesCommandOutput;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import type { SearchSecurityProfilesResponse } from "../models/
|
|
5
|
-
import type { SearchSecurityProfilesRequest } from "../models/models_3";
|
|
4
|
+
import type { SearchSecurityProfilesRequest, SearchSecurityProfilesResponse } from "../models/models_3";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
|
|
4
|
-
import type { SearchTestCasesResponse } from "../models/
|
|
5
|
-
import type { SearchTestCasesRequest } from "../models/models_3";
|
|
4
|
+
import type { SearchTestCasesRequest, SearchTestCasesResponse } from "../models/models_3";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -11,6 +11,7 @@ export * from "./AssociateInstanceStorageConfigCommand";
|
|
|
11
11
|
export * from "./AssociateLambdaFunctionCommand";
|
|
12
12
|
export * from "./AssociateLexBotCommand";
|
|
13
13
|
export * from "./AssociatePhoneNumberContactFlowCommand";
|
|
14
|
+
export * from "./AssociateQueueEmailAddressesCommand";
|
|
14
15
|
export * from "./AssociateQueueQuickConnectsCommand";
|
|
15
16
|
export * from "./AssociateRoutingProfileQueuesCommand";
|
|
16
17
|
export * from "./AssociateSecurityKeyCommand";
|
|
@@ -146,6 +147,7 @@ export * from "./DisassociateInstanceStorageConfigCommand";
|
|
|
146
147
|
export * from "./DisassociateLambdaFunctionCommand";
|
|
147
148
|
export * from "./DisassociateLexBotCommand";
|
|
148
149
|
export * from "./DisassociatePhoneNumberContactFlowCommand";
|
|
150
|
+
export * from "./DisassociateQueueEmailAddressesCommand";
|
|
149
151
|
export * from "./DisassociateQueueQuickConnectsCommand";
|
|
150
152
|
export * from "./DisassociateRoutingProfileQueuesCommand";
|
|
151
153
|
export * from "./DisassociateSecurityKeyCommand";
|
|
@@ -208,6 +210,7 @@ export * from "./ListPhoneNumbersCommand";
|
|
|
208
210
|
export * from "./ListPhoneNumbersV2Command";
|
|
209
211
|
export * from "./ListPredefinedAttributesCommand";
|
|
210
212
|
export * from "./ListPromptsCommand";
|
|
213
|
+
export * from "./ListQueueEmailAddressesCommand";
|
|
211
214
|
export * from "./ListQueueQuickConnectsCommand";
|
|
212
215
|
export * from "./ListQueuesCommand";
|
|
213
216
|
export * from "./ListQuickConnectsCommand";
|
|
@@ -1392,6 +1392,45 @@ export interface AssociatePhoneNumberContactFlowRequest {
|
|
|
1392
1392
|
*/
|
|
1393
1393
|
ContactFlowId: string | undefined;
|
|
1394
1394
|
}
|
|
1395
|
+
/**
|
|
1396
|
+
* <p>Configuration object that specifies an email address to be associated with a queue. This configuration contains the identifier of the email address that should be linked to the queue for routing email contacts.</p>
|
|
1397
|
+
* @public
|
|
1398
|
+
*/
|
|
1399
|
+
export interface EmailAddressConfig {
|
|
1400
|
+
/**
|
|
1401
|
+
* <p>The identifier of the email address that should be associated with the queue. This email address must already exist in the Amazon Connect instance and will be used to route incoming email contacts to the specified queue.</p>
|
|
1402
|
+
* @public
|
|
1403
|
+
*/
|
|
1404
|
+
EmailAddressId: string | undefined;
|
|
1405
|
+
}
|
|
1406
|
+
/**
|
|
1407
|
+
* @public
|
|
1408
|
+
*/
|
|
1409
|
+
export interface AssociateQueueEmailAddressesRequest {
|
|
1410
|
+
/**
|
|
1411
|
+
* <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>
|
|
1412
|
+
* @public
|
|
1413
|
+
*/
|
|
1414
|
+
InstanceId: string | undefined;
|
|
1415
|
+
/**
|
|
1416
|
+
* <p>The identifier for the queue.</p>
|
|
1417
|
+
* @public
|
|
1418
|
+
*/
|
|
1419
|
+
QueueId: string | undefined;
|
|
1420
|
+
/**
|
|
1421
|
+
* <p>Configuration list containing the email addresses to associate with the queue. Each configuration specifies an email address ID that should be linked to this queue for routing purposes.</p>
|
|
1422
|
+
* @public
|
|
1423
|
+
*/
|
|
1424
|
+
EmailAddressesConfig: EmailAddressConfig[] | undefined;
|
|
1425
|
+
/**
|
|
1426
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
1427
|
+
* request. If not provided, the Amazon Web Services
|
|
1428
|
+
* SDK populates this field. For more information about idempotency, see
|
|
1429
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
1430
|
+
* @public
|
|
1431
|
+
*/
|
|
1432
|
+
ClientToken?: string | undefined;
|
|
1433
|
+
}
|
|
1395
1434
|
/**
|
|
1396
1435
|
* @public
|
|
1397
1436
|
*/
|
|
@@ -5067,6 +5106,11 @@ export interface CreateQueueRequest {
|
|
|
5067
5106
|
* @public
|
|
5068
5107
|
*/
|
|
5069
5108
|
QuickConnectIds?: string[] | undefined;
|
|
5109
|
+
/**
|
|
5110
|
+
* <p>Configuration list containing the email addresses to associate with the queue during creation. Each configuration specifies an email address ID that agents can select when handling email contacts in this queue.</p>
|
|
5111
|
+
* @public
|
|
5112
|
+
*/
|
|
5113
|
+
EmailAddressesConfig?: EmailAddressConfig[] | undefined;
|
|
5070
5114
|
/**
|
|
5071
5115
|
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
5072
5116
|
* @public
|
|
@@ -6950,70 +6994,3 @@ export interface PaletteCanvas {
|
|
|
6950
6994
|
*/
|
|
6951
6995
|
ActiveBackground?: string | undefined;
|
|
6952
6996
|
}
|
|
6953
|
-
/**
|
|
6954
|
-
* <p>Contains color configuration for header elements in a workspace theme.</p>
|
|
6955
|
-
* @public
|
|
6956
|
-
*/
|
|
6957
|
-
export interface PaletteHeader {
|
|
6958
|
-
/**
|
|
6959
|
-
* <p>The background color of the header.</p>
|
|
6960
|
-
* @public
|
|
6961
|
-
*/
|
|
6962
|
-
Background?: string | undefined;
|
|
6963
|
-
/**
|
|
6964
|
-
* <p>The text color in the header.</p>
|
|
6965
|
-
* @public
|
|
6966
|
-
*/
|
|
6967
|
-
Text?: string | undefined;
|
|
6968
|
-
/**
|
|
6969
|
-
* <p>The text color when hovering over header elements.</p>
|
|
6970
|
-
* @public
|
|
6971
|
-
*/
|
|
6972
|
-
TextHover?: string | undefined;
|
|
6973
|
-
/**
|
|
6974
|
-
* <p>Whether to invert the colors of action buttons in the header.</p>
|
|
6975
|
-
* @public
|
|
6976
|
-
*/
|
|
6977
|
-
InvertActionsColors?: boolean | undefined;
|
|
6978
|
-
}
|
|
6979
|
-
/**
|
|
6980
|
-
* <p>Contains color configuration for navigation elements in a workspace theme.</p>
|
|
6981
|
-
* @public
|
|
6982
|
-
*/
|
|
6983
|
-
export interface PaletteNavigation {
|
|
6984
|
-
/**
|
|
6985
|
-
* <p>The background color of the navigation area.</p>
|
|
6986
|
-
* @public
|
|
6987
|
-
*/
|
|
6988
|
-
Background?: string | undefined;
|
|
6989
|
-
/**
|
|
6990
|
-
* <p>The background color when hovering over navigation text.</p>
|
|
6991
|
-
* @public
|
|
6992
|
-
*/
|
|
6993
|
-
TextBackgroundHover?: string | undefined;
|
|
6994
|
-
/**
|
|
6995
|
-
* <p>The background color for active navigation items.</p>
|
|
6996
|
-
* @public
|
|
6997
|
-
*/
|
|
6998
|
-
TextBackgroundActive?: string | undefined;
|
|
6999
|
-
/**
|
|
7000
|
-
* <p>The text color in the navigation area.</p>
|
|
7001
|
-
* @public
|
|
7002
|
-
*/
|
|
7003
|
-
Text?: string | undefined;
|
|
7004
|
-
/**
|
|
7005
|
-
* <p>The text color when hovering over navigation items.</p>
|
|
7006
|
-
* @public
|
|
7007
|
-
*/
|
|
7008
|
-
TextHover?: string | undefined;
|
|
7009
|
-
/**
|
|
7010
|
-
* <p>The text color for active navigation items.</p>
|
|
7011
|
-
* @public
|
|
7012
|
-
*/
|
|
7013
|
-
TextActive?: string | undefined;
|
|
7014
|
-
/**
|
|
7015
|
-
* <p>Whether to invert the colors of action buttons in the navigation area.</p>
|
|
7016
|
-
* @public
|
|
7017
|
-
*/
|
|
7018
|
-
InvertActionsColors?: boolean | undefined;
|
|
7019
|
-
}
|
|
@@ -1,5 +1,72 @@
|
|
|
1
|
-
import { AgentAvailabilityTimer, AutoEvaluationStatus, Channel, Comparison, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactMetricName, ContactParticipantRole, ContactState, CurrentMetricName, DataTableAttributeValueType, DataTableLockLevel, DataTableStatus, DirectoryType, EndpointType, EntityType, EvaluationQuestionAnswerAnalysisType, EvaluationStatus, EvaluationSuggestedAnswerStatus, EvaluationTranscriptType, EvaluationType, FileStatusType, FileUseCaseType, FilterV2StringConditionComparisonOperator, FlowAssociationResourceType, Grouping, HistoricalMetricName, InstanceAttributeType, InstanceReplicationStatus, InstanceStatus, InstanceStorageResourceType, IntervalPeriod, LocaleCode, MediaStreamType, MediaType, NextContactType, NotificationPriority, OperationalStatus, OverrideType, ParticipantType, PhoneNumberCountryCode, PhoneNumberType, PhoneNumberWorkflowStatus, QuestionRuleCategoryAutomationCondition, QueueStatus, QuickConnectType, RecordingStatus, RulePublishStatus, SortOrder, Statistic, Status, StorageType, TaskTemplateStatus,
|
|
2
|
-
import { type AgentQualityMetrics, type AgentsCriteria, type AgentStatus, type AgentStatusIdentifier, type AgentStatusReference, type AudioQualityMetricsInfo, type CreatedByInfo, type DataTableLockVersion, type DeviceInfo, type ExternalInvocationConfiguration, type GranularAccessControlConfiguration, type InstanceStorageConfig, type LexBot, type LexV2Bot, type OutboundCallerConfig, type OutboundEmailConfig, type OverrideTimeSlice, type PaletteCanvas, type
|
|
1
|
+
import { AgentAvailabilityTimer, AutoEvaluationStatus, Channel, Comparison, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactMetricName, ContactParticipantRole, ContactState, CurrentMetricName, DataTableAttributeValueType, DataTableLockLevel, DataTableStatus, DirectoryType, EndpointType, EntityType, EvaluationQuestionAnswerAnalysisType, EvaluationStatus, EvaluationSuggestedAnswerStatus, EvaluationTranscriptType, EvaluationType, FileStatusType, FileUseCaseType, FilterV2StringConditionComparisonOperator, FlowAssociationResourceType, Grouping, HistoricalMetricName, InstanceAttributeType, InstanceReplicationStatus, InstanceStatus, InstanceStorageResourceType, IntervalPeriod, LocaleCode, MediaStreamType, MediaType, NextContactType, NotificationPriority, OperationalStatus, OverrideType, ParticipantType, PhoneNumberCountryCode, PhoneNumberType, PhoneNumberWorkflowStatus, QuestionRuleCategoryAutomationCondition, QueueStatus, QuickConnectType, RecordingStatus, RulePublishStatus, SortOrder, Statistic, Status, StorageType, TaskTemplateStatus, TestCaseStatus, TrafficDistributionGroupStatus, Unit, Visibility, VocabularyLanguageCode, VocabularyState, WorkspaceFontFamily } from "./enums";
|
|
2
|
+
import { type AgentQualityMetrics, type AgentsCriteria, type AgentStatus, type AgentStatusIdentifier, type AgentStatusReference, type AudioQualityMetricsInfo, type CreatedByInfo, type DataTableLockVersion, type DeviceInfo, type ExternalInvocationConfiguration, type GranularAccessControlConfiguration, type InstanceStorageConfig, type LexBot, type LexV2Bot, type OutboundCallerConfig, type OutboundEmailConfig, type OverrideTimeSlice, type PaletteCanvas, type ParticipantCapabilities, type PredefinedAttributeValues, type QueueReference, type QuickConnectConfig, type RecurrenceConfig, type RuleTriggerEventSource, type TaskTemplateConstraints, type TaskTemplateDefaults, type TestCaseEntryPoint, type UserIdentityInfo, type UserPhoneConfig, type Validation, type View, type WorkspaceThemeImages, AfterContactWorkConfigPerChannel, AgentContactReference, AiAgentInfo, AliasConfiguration, AutoAcceptConfig, FailedBatchAssociationSummary, HoursOfOperationConfig, HoursOfOperationOverrideConfig, MediaConcurrency, PersistentConnectionConfig, PhoneNumberConfig, PrimaryValue, RoutingProfileQueueReference, RuleAction, SecurityProfileItem, SuccessfulBatchAssociationSummary, TaskTemplateField, VoiceEnhancementConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Contains color configuration for header elements in a workspace theme.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface PaletteHeader {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The background color of the header.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
Background?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The text color in the header.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
Text?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The text color when hovering over header elements.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
TextHover?: string | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* <p>Whether to invert the colors of action buttons in the header.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
InvertActionsColors?: boolean | undefined;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>Contains color configuration for navigation elements in a workspace theme.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export interface PaletteNavigation {
|
|
34
|
+
/**
|
|
35
|
+
* <p>The background color of the navigation area.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
Background?: string | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>The background color when hovering over navigation text.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
TextBackgroundHover?: string | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* <p>The background color for active navigation items.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
TextBackgroundActive?: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The text color in the navigation area.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
Text?: string | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* <p>The text color when hovering over navigation items.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
TextHover?: string | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* <p>The text color for active navigation items.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
TextActive?: string | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>Whether to invert the colors of action buttons in the navigation area.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
InvertActionsColors?: boolean | undefined;
|
|
69
|
+
}
|
|
3
70
|
/**
|
|
4
71
|
* <p>Contains primary color configuration for a workspace theme.</p>
|
|
5
72
|
* @public
|
|
@@ -5110,6 +5177,34 @@ export interface DisassociatePhoneNumberContactFlowRequest {
|
|
|
5110
5177
|
*/
|
|
5111
5178
|
InstanceId: string | undefined;
|
|
5112
5179
|
}
|
|
5180
|
+
/**
|
|
5181
|
+
* @public
|
|
5182
|
+
*/
|
|
5183
|
+
export interface DisassociateQueueEmailAddressesRequest {
|
|
5184
|
+
/**
|
|
5185
|
+
* <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>
|
|
5186
|
+
* @public
|
|
5187
|
+
*/
|
|
5188
|
+
InstanceId: string | undefined;
|
|
5189
|
+
/**
|
|
5190
|
+
* <p>The identifier for the queue.</p>
|
|
5191
|
+
* @public
|
|
5192
|
+
*/
|
|
5193
|
+
QueueId: string | undefined;
|
|
5194
|
+
/**
|
|
5195
|
+
* <p>List of email address identifiers to disassociate from the queue. These are the unique identifiers of email addresses that should no longer be routed to this queue.</p>
|
|
5196
|
+
* @public
|
|
5197
|
+
*/
|
|
5198
|
+
EmailAddressesId: string[] | undefined;
|
|
5199
|
+
/**
|
|
5200
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
5201
|
+
* request. If not provided, the Amazon Web Services
|
|
5202
|
+
* SDK populates this field. For more information about idempotency, see
|
|
5203
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
5204
|
+
* @public
|
|
5205
|
+
*/
|
|
5206
|
+
ClientToken?: string | undefined;
|
|
5207
|
+
}
|
|
5113
5208
|
/**
|
|
5114
5209
|
* @public
|
|
5115
5210
|
*/
|
|
@@ -9156,56 +9251,3 @@ export interface ObservationSummary {
|
|
|
9156
9251
|
*/
|
|
9157
9252
|
ObservationsFailed?: number | undefined;
|
|
9158
9253
|
}
|
|
9159
|
-
/**
|
|
9160
|
-
* @public
|
|
9161
|
-
*/
|
|
9162
|
-
export interface GetTestCaseExecutionSummaryResponse {
|
|
9163
|
-
/**
|
|
9164
|
-
* <p>The timestamp when the test case execution started.</p>
|
|
9165
|
-
* @public
|
|
9166
|
-
*/
|
|
9167
|
-
StartTime?: Date | undefined;
|
|
9168
|
-
/**
|
|
9169
|
-
* <p>The timestamp when the test case execution ended.</p>
|
|
9170
|
-
* @public
|
|
9171
|
-
*/
|
|
9172
|
-
EndTime?: Date | undefined;
|
|
9173
|
-
/**
|
|
9174
|
-
* <p>The status of the test case execution.</p>
|
|
9175
|
-
* @public
|
|
9176
|
-
*/
|
|
9177
|
-
Status?: TestCaseExecutionStatus | undefined;
|
|
9178
|
-
/**
|
|
9179
|
-
* <p>Summary statistics for the test case execution.</p>
|
|
9180
|
-
* @public
|
|
9181
|
-
*/
|
|
9182
|
-
ObservationSummary?: ObservationSummary | undefined;
|
|
9183
|
-
}
|
|
9184
|
-
/**
|
|
9185
|
-
* @public
|
|
9186
|
-
*/
|
|
9187
|
-
export interface GetTrafficDistributionRequest {
|
|
9188
|
-
/**
|
|
9189
|
-
* <p>The identifier of the traffic distribution group.
|
|
9190
|
-
* This can be the ID or the ARN if the API is being called in the Region where the traffic distribution group was created.
|
|
9191
|
-
* The ARN must be provided if the call is from the replicated Region.</p>
|
|
9192
|
-
* @public
|
|
9193
|
-
*/
|
|
9194
|
-
Id: string | undefined;
|
|
9195
|
-
}
|
|
9196
|
-
/**
|
|
9197
|
-
* <p>The distribution of sign in traffic between the instance and its replica(s).</p>
|
|
9198
|
-
* @public
|
|
9199
|
-
*/
|
|
9200
|
-
export interface SignInDistribution {
|
|
9201
|
-
/**
|
|
9202
|
-
* <p>The Amazon Web Services Region of the sign in distribution.</p>
|
|
9203
|
-
* @public
|
|
9204
|
-
*/
|
|
9205
|
-
Region: string | undefined;
|
|
9206
|
-
/**
|
|
9207
|
-
* <p>Whether sign in distribution is enabled.</p>
|
|
9208
|
-
* @public
|
|
9209
|
-
*/
|
|
9210
|
-
Enabled: boolean | undefined;
|
|
9211
|
-
}
|