@aws-sdk/client-connect 3.699.0 → 3.701.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/dist-cjs/index.js +96 -47
- package/dist-es/commands/CreateContactCommand.js +1 -1
- package/dist-es/commands/StartEmailContactCommand.js +1 -1
- package/dist-es/commands/StartTaskContactCommand.js +1 -1
- package/dist-es/commands/UpdateContactCommand.js +1 -1
- package/dist-es/models/models_0.js +0 -5
- package/dist-es/models/models_1.js +5 -0
- package/dist-es/models/models_2.js +5 -27
- package/dist-es/models/models_3.js +23 -0
- package/dist-es/protocols/Aws_restJson1.js +57 -8
- package/dist-types/commands/CreateContactCommand.d.ts +13 -2
- package/dist-types/commands/CreateEmailAddressCommand.d.ts +3 -1
- package/dist-types/commands/CreateEvaluationFormCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEmailAddressCommand.d.ts +1 -1
- package/dist-types/commands/DeleteViewVersionCommand.d.ts +1 -2
- package/dist-types/commands/DeleteVocabularyCommand.d.ts +2 -1
- package/dist-types/commands/DescribeContactCommand.d.ts +10 -0
- package/dist-types/commands/DescribeContactFlowCommand.d.ts +1 -2
- package/dist-types/commands/DescribeContactFlowModuleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEmailAddressCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedContactsCommand.d.ts +2 -1
- package/dist-types/commands/ListRealtimeContactAnalysisSegmentsV2Command.d.ts +1 -1
- package/dist-types/commands/SearchContactFlowsCommand.d.ts +1 -3
- package/dist-types/commands/SearchEmailAddressesCommand.d.ts +1 -1
- package/dist-types/commands/SendOutboundEmailCommand.d.ts +6 -1
- package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +3 -1
- package/dist-types/commands/StartChatContactCommand.d.ts +12 -1
- package/dist-types/commands/StartEmailContactCommand.d.ts +14 -2
- package/dist-types/commands/StartOutboundChatContactCommand.d.ts +12 -1
- package/dist-types/commands/StartOutboundEmailContactCommand.d.ts +2 -1
- package/dist-types/commands/StartTaskContactCommand.d.ts +12 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateContactCommand.d.ts +12 -1
- package/dist-types/commands/UpdateContactFlowContentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContactFlowModuleContentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEmailAddressMetadataCommand.d.ts +2 -1
- package/dist-types/commands/UpdateQueueOutboundEmailConfigCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +60 -118
- package/dist-types/models/models_1.d.ts +117 -71
- package/dist-types/models/models_2.d.ts +544 -718
- package/dist-types/models/models_3.d.ts +545 -246
- package/dist-types/ts3.4/commands/CreateContactCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateEvaluationFormCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteViewVersionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DeleteVocabularyCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartChatContactCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartEmailContactCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartOutboundChatContactCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartTaskContactCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +5 -21
- package/dist-types/ts3.4/models/models_1.d.ts +18 -6
- package/dist-types/ts3.4/models/models_2.d.ts +76 -97
- package/dist-types/ts3.4/models/models_3.d.ts +96 -58
- package/package.json +1 -1
|
@@ -27,7 +27,7 @@ declare const DeleteEmailAddressCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p
|
|
30
|
+
* <p>Deletes email address from the specified Amazon Connect instance.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -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 { DeleteViewVersionRequest } from "../models/models_0";
|
|
5
|
-
import { DeleteViewVersionResponse } from "../models/models_1";
|
|
4
|
+
import { DeleteViewVersionRequest, DeleteViewVersionResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -1,7 +1,8 @@
|
|
|
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 { DeleteVocabularyRequest
|
|
4
|
+
import { DeleteVocabularyRequest } from "../models/models_0";
|
|
5
|
+
import { DeleteVocabularyResponse } from "../models/models_1";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -232,6 +232,16 @@ declare const DescribeContactCommand_base: {
|
|
|
232
232
|
* // SegmentAttributes: { // SegmentAttributes
|
|
233
233
|
* // "<keys>": { // SegmentAttributeValue
|
|
234
234
|
* // ValueString: "STRING_VALUE",
|
|
235
|
+
* // ValueMap: { // SegmentAttributeValueMap
|
|
236
|
+
* // "<keys>": {
|
|
237
|
+
* // ValueString: "STRING_VALUE",
|
|
238
|
+
* // ValueMap: {
|
|
239
|
+
* // "<keys>": "<SegmentAttributeValue>",
|
|
240
|
+
* // },
|
|
241
|
+
* // ValueInteger: Number("int"),
|
|
242
|
+
* // },
|
|
243
|
+
* // },
|
|
244
|
+
* // ValueInteger: Number("int"),
|
|
235
245
|
* // },
|
|
236
246
|
* // },
|
|
237
247
|
* // },
|
|
@@ -31,7 +31,7 @@ declare const DescribeContactFlowCommand_base: {
|
|
|
31
31
|
* <p>You can also create and update flows using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language.html">Amazon Connect
|
|
32
32
|
* Flow language</a>.</p>
|
|
33
33
|
* <p>Use the <code>$SAVED</code> alias in the request to describe the <code>SAVED</code> content
|
|
34
|
-
* of a Flow. For example, <code>arn:aws:.../contact-flow/\{id\}:$SAVED</code>.
|
|
34
|
+
* of a Flow. For example, <code>arn:aws:.../contact-flow/\{id\}:$SAVED</code>. After a flow is
|
|
35
35
|
* published, <code>$SAVED</code> needs to be supplied to view saved content that has not been
|
|
36
36
|
* published.</p>
|
|
37
37
|
* <p>In the response, <b>Status</b> indicates the flow status as either
|
|
@@ -64,7 +64,6 @@ declare const DescribeContactFlowCommand_base: {
|
|
|
64
64
|
* // Tags: { // TagMap
|
|
65
65
|
* // "<keys>": "STRING_VALUE",
|
|
66
66
|
* // },
|
|
67
|
-
* // IsDefault: true || false,
|
|
68
67
|
* // FlowContentSha256: "STRING_VALUE",
|
|
69
68
|
* // Version: Number("long"),
|
|
70
69
|
* // VersionDescription: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ declare const DescribeContactFlowModuleCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Describes the specified flow module.</p>
|
|
31
31
|
* <p>Use the <code>$SAVED</code> alias in the request to describe the <code>SAVED</code> content
|
|
32
|
-
* of a Flow. For example, <code>arn:aws:.../contact-flow/\{id\}:$SAVED</code>.
|
|
32
|
+
* of a Flow. For example, <code>arn:aws:.../contact-flow/\{id\}:$SAVED</code>. After a flow is
|
|
33
33
|
* published, <code>$SAVED</code> needs to be supplied to view saved content that has not been
|
|
34
34
|
* published.</p>
|
|
35
35
|
* @example
|
|
@@ -27,7 +27,7 @@ declare const DescribeEmailAddressCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p
|
|
30
|
+
* <p>Describe email address form the specified Amazon Connect instance.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,8 @@ declare const ListAssociatedContactsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p
|
|
30
|
+
* <p>Provides information about contact tree, a list of associated contacts with a unique
|
|
31
|
+
* identifier.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -161,7 +161,7 @@ declare const ListRealtimeContactAnalysisSegmentsV2Command_base: {
|
|
|
161
161
|
* @throws {@link OutputTypeNotFoundException} (client fault)
|
|
162
162
|
* <p>Thrown for analyzed content when requested OutputType was not enabled for a given contact.
|
|
163
163
|
* For example, if an OutputType.Raw was requested for a contact that had `RedactedOnly` Redaction
|
|
164
|
-
* policy set in
|
|
164
|
+
* policy set in the flow.</p>
|
|
165
165
|
*
|
|
166
166
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
167
167
|
* <p>The specified resource was not found.</p>
|
|
@@ -28,8 +28,7 @@ declare const SearchContactFlowsCommand_base: {
|
|
|
28
28
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
|
-
* <p>Searches the
|
|
32
|
-
* filtering.</p>
|
|
31
|
+
* <p>Searches the flows in an Amazon Connect instance, with optional filtering.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
34
|
* ```javascript
|
|
@@ -107,7 +106,6 @@ declare const SearchContactFlowsCommand_base: {
|
|
|
107
106
|
* // Tags: { // TagMap
|
|
108
107
|
* // "<keys>": "STRING_VALUE",
|
|
109
108
|
* // },
|
|
110
|
-
* // IsDefault: true || false,
|
|
111
109
|
* // FlowContentSha256: "STRING_VALUE",
|
|
112
110
|
* // Version: Number("long"),
|
|
113
111
|
* // VersionDescription: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ declare const SearchEmailAddressesCommand_base: {
|
|
|
28
28
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
|
-
* <p
|
|
31
|
+
* <p>Searches email address in an instance, with optional filtering.</p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -27,7 +27,12 @@ declare const SendOutboundEmailCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p
|
|
30
|
+
* <p>Send outbound email for outbound campaigns. For more information about outbound campaigns,
|
|
31
|
+
* see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/enable-outbound-campaigns.html">Set up Amazon Connect outbound campaigns</a>.</p>
|
|
32
|
+
* <note>
|
|
33
|
+
* <p>Only the Amazon Connect outbound campaigns service principal is allowed to assume a
|
|
34
|
+
* role in your account and call this API.</p>
|
|
35
|
+
* </note>
|
|
31
36
|
* @example
|
|
32
37
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
38
|
* ```javascript
|
|
@@ -29,7 +29,9 @@ 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 an <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html">Amazon Connect Case</a
|
|
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> or
|
|
33
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/setup-email-channel.html">Amazon Connect
|
|
34
|
+
* Email</a>. </p>
|
|
33
35
|
* </important>
|
|
34
36
|
* @example
|
|
35
37
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -1,7 +1,8 @@
|
|
|
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 {
|
|
4
|
+
import { StartChatContactResponse } from "../models/models_2";
|
|
5
|
+
import { StartChatContactRequest } from "../models/models_3";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -92,6 +93,16 @@ declare const StartChatContactCommand_base: {
|
|
|
92
93
|
* SegmentAttributes: { // SegmentAttributes
|
|
93
94
|
* "<keys>": { // SegmentAttributeValue
|
|
94
95
|
* ValueString: "STRING_VALUE",
|
|
96
|
+
* ValueMap: { // SegmentAttributeValueMap
|
|
97
|
+
* "<keys>": {
|
|
98
|
+
* ValueString: "STRING_VALUE",
|
|
99
|
+
* ValueMap: {
|
|
100
|
+
* "<keys>": "<SegmentAttributeValue>",
|
|
101
|
+
* },
|
|
102
|
+
* ValueInteger: Number("int"),
|
|
103
|
+
* },
|
|
104
|
+
* },
|
|
105
|
+
* ValueInteger: Number("int"),
|
|
95
106
|
* },
|
|
96
107
|
* },
|
|
97
108
|
* };
|
|
@@ -1,7 +1,8 @@
|
|
|
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 {
|
|
4
|
+
import { StartEmailContactResponse } from "../models/models_2";
|
|
5
|
+
import { StartEmailContactRequest } from "../models/models_3";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -27,7 +28,8 @@ declare const StartEmailContactCommand_base: {
|
|
|
27
28
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
29
|
};
|
|
29
30
|
/**
|
|
30
|
-
* <p
|
|
31
|
+
* <p>Creates an inbound email contact and initiates a flow to start the email contact for the
|
|
32
|
+
* customer. Response of this API provides the ContactId of the email contact created.</p>
|
|
31
33
|
* @example
|
|
32
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
35
|
* ```javascript
|
|
@@ -91,6 +93,16 @@ declare const StartEmailContactCommand_base: {
|
|
|
91
93
|
* SegmentAttributes: { // SegmentAttributes
|
|
92
94
|
* "<keys>": { // SegmentAttributeValue
|
|
93
95
|
* ValueString: "STRING_VALUE",
|
|
96
|
+
* ValueMap: { // SegmentAttributeValueMap
|
|
97
|
+
* "<keys>": {
|
|
98
|
+
* ValueString: "STRING_VALUE",
|
|
99
|
+
* ValueMap: {
|
|
100
|
+
* "<keys>": "<SegmentAttributeValue>",
|
|
101
|
+
* },
|
|
102
|
+
* ValueInteger: Number("int"),
|
|
103
|
+
* },
|
|
104
|
+
* },
|
|
105
|
+
* ValueInteger: Number("int"),
|
|
94
106
|
* },
|
|
95
107
|
* },
|
|
96
108
|
* ClientToken: "STRING_VALUE",
|
|
@@ -1,7 +1,8 @@
|
|
|
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 {
|
|
4
|
+
import { StartOutboundChatContactResponse } from "../models/models_2";
|
|
5
|
+
import { StartOutboundChatContactRequest } from "../models/models_3";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -71,6 +72,16 @@ declare const StartOutboundChatContactCommand_base: {
|
|
|
71
72
|
* SegmentAttributes: { // SegmentAttributes // required
|
|
72
73
|
* "<keys>": { // SegmentAttributeValue
|
|
73
74
|
* ValueString: "STRING_VALUE",
|
|
75
|
+
* ValueMap: { // SegmentAttributeValueMap
|
|
76
|
+
* "<keys>": {
|
|
77
|
+
* ValueString: "STRING_VALUE",
|
|
78
|
+
* ValueMap: {
|
|
79
|
+
* "<keys>": "<SegmentAttributeValue>",
|
|
80
|
+
* },
|
|
81
|
+
* ValueInteger: Number("int"),
|
|
82
|
+
* },
|
|
83
|
+
* },
|
|
84
|
+
* ValueInteger: Number("int"),
|
|
74
85
|
* },
|
|
75
86
|
* },
|
|
76
87
|
* Attributes: { // Attributes
|
|
@@ -27,7 +27,8 @@ declare const StartOutboundEmailContactCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p
|
|
30
|
+
* <p>Initiates a flow to send an agent reply or outbound email contact (created from the
|
|
31
|
+
* CreateContact API) to a customer.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -1,7 +1,8 @@
|
|
|
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 {
|
|
4
|
+
import { StartTaskContactResponse } from "../models/models_2";
|
|
5
|
+
import { StartTaskContactRequest } from "../models/models_3";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -110,6 +111,16 @@ declare const StartTaskContactCommand_base: {
|
|
|
110
111
|
* SegmentAttributes: { // SegmentAttributes
|
|
111
112
|
* "<keys>": { // SegmentAttributeValue
|
|
112
113
|
* ValueString: "STRING_VALUE",
|
|
114
|
+
* ValueMap: { // SegmentAttributeValueMap
|
|
115
|
+
* "<keys>": {
|
|
116
|
+
* ValueString: "STRING_VALUE",
|
|
117
|
+
* ValueMap: {
|
|
118
|
+
* "<keys>": "<SegmentAttributeValue>",
|
|
119
|
+
* },
|
|
120
|
+
* ValueInteger: Number("int"),
|
|
121
|
+
* },
|
|
122
|
+
* },
|
|
123
|
+
* ValueInteger: Number("int"),
|
|
113
124
|
* },
|
|
114
125
|
* },
|
|
115
126
|
* };
|
|
@@ -29,8 +29,8 @@ declare const TagResourceCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Adds the specified tags to the specified resource.</p>
|
|
31
31
|
* <p>Some of the supported resource types are agents, routing profiles, queues, quick connects,
|
|
32
|
-
*
|
|
33
|
-
*
|
|
32
|
+
* flows, agent statuses, hours of operation, phone numbers, security profiles, and task templates.
|
|
33
|
+
* For a complete list, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/tagging.html">Tagging resources in Amazon Connect</a>.</p>
|
|
34
34
|
* <p>For sample policies that use tags, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/security_iam_id-based-policy-examples.html">Amazon Connect
|
|
35
35
|
* Identity-Based Policy Examples</a> in the <i>Amazon Connect Administrator
|
|
36
36
|
* Guide</i>.</p>
|
|
@@ -1,7 +1,8 @@
|
|
|
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 {
|
|
4
|
+
import { UpdateContactResponse } from "../models/models_2";
|
|
5
|
+
import { UpdateContactRequest } from "../models/models_3";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -57,6 +58,16 @@ declare const UpdateContactCommand_base: {
|
|
|
57
58
|
* SegmentAttributes: { // SegmentAttributes
|
|
58
59
|
* "<keys>": { // SegmentAttributeValue
|
|
59
60
|
* ValueString: "STRING_VALUE",
|
|
61
|
+
* ValueMap: { // SegmentAttributeValueMap
|
|
62
|
+
* "<keys>": {
|
|
63
|
+
* ValueString: "STRING_VALUE",
|
|
64
|
+
* ValueMap: {
|
|
65
|
+
* "<keys>": "<SegmentAttributeValue>",
|
|
66
|
+
* },
|
|
67
|
+
* ValueInteger: Number("int"),
|
|
68
|
+
* },
|
|
69
|
+
* },
|
|
70
|
+
* ValueInteger: Number("int"),
|
|
60
71
|
* },
|
|
61
72
|
* },
|
|
62
73
|
* };
|
|
@@ -31,7 +31,7 @@ declare const UpdateContactFlowContentCommand_base: {
|
|
|
31
31
|
* <p>You can also create and update flows using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/flow-language.html">Amazon Connect
|
|
32
32
|
* Flow language</a>.</p>
|
|
33
33
|
* <p>Use the <code>$SAVED</code> alias in the request to describe the <code>SAVED</code> content
|
|
34
|
-
* of a Flow. For example, <code>arn:aws:.../contact-flow/\{id\}:$SAVED</code>.
|
|
34
|
+
* of a Flow. For example, <code>arn:aws:.../contact-flow/\{id\}:$SAVED</code>. After a flow is
|
|
35
35
|
* published, <code>$SAVED</code> needs to be supplied to view saved content that has not been
|
|
36
36
|
* published.</p>
|
|
37
37
|
* @example
|
|
@@ -29,7 +29,7 @@ declare const UpdateContactFlowModuleContentCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Updates specified flow module for the specified Amazon Connect instance. </p>
|
|
31
31
|
* <p>Use the <code>$SAVED</code> alias in the request to describe the <code>SAVED</code> content
|
|
32
|
-
* of a Flow. For example, <code>arn:aws:.../contact-flow/\{id\}:$SAVED</code>.
|
|
32
|
+
* of a Flow. For example, <code>arn:aws:.../contact-flow/\{id\}:$SAVED</code>. After a flow is
|
|
33
33
|
* published, <code>$SAVED</code> needs to be supplied to view saved content that has not been
|
|
34
34
|
* published.</p>
|
|
35
35
|
* @example
|
|
@@ -27,7 +27,8 @@ declare const UpdateEmailAddressMetadataCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p
|
|
30
|
+
* <p>Updates an email address metadata. For more information about email addresses, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/create-email-address1.html">Create email
|
|
31
|
+
* addresses</a> in the Amazon Connect Administrator Guide.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const UpdateQueueOutboundEmailConfigCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p
|
|
30
|
+
* <p>Updates the outbound email address Id for a specified queue.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -57,7 +57,7 @@ declare const UpdateQueueOutboundEmailConfigCommand_base: {
|
|
|
57
57
|
* <p>You do not have sufficient permissions to perform this action.</p>
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link ConditionalOperationFailedException} (client fault)
|
|
60
|
-
* <p
|
|
60
|
+
* <p>A conditional check failed.</p>
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link InternalServiceException} (server fault)
|
|
63
63
|
* <p>Request processing failed because of an error or failure with the service.</p>
|