@aws-sdk/client-connectcases 3.296.0 → 3.297.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-types/ConnectCases.d.ts +31 -0
- package/dist-types/ConnectCasesClient.d.ts +24 -4
- package/dist-types/commands/BatchGetFieldCommand.d.ts +16 -0
- package/dist-types/commands/BatchPutFieldOptionsCommand.d.ts +16 -0
- package/dist-types/commands/CreateCaseCommand.d.ts +16 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +16 -0
- package/dist-types/commands/CreateFieldCommand.d.ts +16 -0
- package/dist-types/commands/CreateLayoutCommand.d.ts +16 -0
- package/dist-types/commands/CreateRelatedItemCommand.d.ts +16 -0
- package/dist-types/commands/CreateTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
- package/dist-types/commands/GetCaseCommand.d.ts +16 -0
- package/dist-types/commands/GetCaseEventConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetDomainCommand.d.ts +16 -0
- package/dist-types/commands/GetLayoutCommand.d.ts +16 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +16 -0
- package/dist-types/commands/ListCasesForContactCommand.d.ts +16 -0
- package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
- package/dist-types/commands/ListFieldOptionsCommand.d.ts +16 -0
- package/dist-types/commands/ListFieldsCommand.d.ts +16 -0
- package/dist-types/commands/ListLayoutsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/PutCaseEventConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/SearchCasesCommand.d.ts +16 -0
- package/dist-types/commands/SearchRelatedItemsCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCaseCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFieldCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLayoutCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +16 -0
- package/dist-types/models/ConnectCasesServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +263 -0
- package/dist-types/pagination/GetCasePaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCasesForContactPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFieldOptionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFieldsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLayoutsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchCasesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchRelatedItemsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -31,6 +31,7 @@ import { UpdateLayoutCommandInput, UpdateLayoutCommandOutput } from "./commands/
|
|
|
31
31
|
import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput } from "./commands/UpdateTemplateCommand";
|
|
32
32
|
import { ConnectCasesClient } from "./ConnectCasesClient";
|
|
33
33
|
/**
|
|
34
|
+
* @public
|
|
34
35
|
* <p>With Amazon Connect Cases, your agents can track and manage customer issues that require
|
|
35
36
|
* multiple interactions, follow-up tasks, and teams in your contact center. A case represents a
|
|
36
37
|
* customer issue. It records the issue, the steps and interactions taken to resolve the issue,
|
|
@@ -39,12 +40,14 @@ import { ConnectCasesClient } from "./ConnectCasesClient";
|
|
|
39
40
|
*/
|
|
40
41
|
export declare class ConnectCases extends ConnectCasesClient {
|
|
41
42
|
/**
|
|
43
|
+
* @public
|
|
42
44
|
* <p>Returns the description for the list of fields in the request parameters. </p>
|
|
43
45
|
*/
|
|
44
46
|
batchGetField(args: BatchGetFieldCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetFieldCommandOutput>;
|
|
45
47
|
batchGetField(args: BatchGetFieldCommandInput, cb: (err: any, data?: BatchGetFieldCommandOutput) => void): void;
|
|
46
48
|
batchGetField(args: BatchGetFieldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetFieldCommandOutput) => void): void;
|
|
47
49
|
/**
|
|
50
|
+
* @public
|
|
48
51
|
* <p>Creates and updates a set of field options for a single select field in a Cases
|
|
49
52
|
* domain.</p>
|
|
50
53
|
*/
|
|
@@ -52,6 +55,7 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
52
55
|
batchPutFieldOptions(args: BatchPutFieldOptionsCommandInput, cb: (err: any, data?: BatchPutFieldOptionsCommandOutput) => void): void;
|
|
53
56
|
batchPutFieldOptions(args: BatchPutFieldOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchPutFieldOptionsCommandOutput) => void): void;
|
|
54
57
|
/**
|
|
58
|
+
* @public
|
|
55
59
|
* <p>Creates a case in the specified Cases domain. Case system and custom fields are taken
|
|
56
60
|
* as an array id/value pairs with a declared data types.</p>
|
|
57
61
|
* <note>
|
|
@@ -78,6 +82,7 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
78
82
|
createCase(args: CreateCaseCommandInput, cb: (err: any, data?: CreateCaseCommandOutput) => void): void;
|
|
79
83
|
createCase(args: CreateCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCaseCommandOutput) => void): void;
|
|
80
84
|
/**
|
|
85
|
+
* @public
|
|
81
86
|
* <p>Creates a domain, which is a container for all case data, such as cases, fields, templates
|
|
82
87
|
* and layouts. Each Amazon Connect instance can be associated with only one Cases
|
|
83
88
|
* domain.</p>
|
|
@@ -93,6 +98,7 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
93
98
|
createDomain(args: CreateDomainCommandInput, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
94
99
|
createDomain(args: CreateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
|
|
95
100
|
/**
|
|
101
|
+
* @public
|
|
96
102
|
* <p>Creates a field in the Cases domain. This field is used to define the case object
|
|
97
103
|
* model (that is, defines what data can be captured on cases) in a Cases domain. </p>
|
|
98
104
|
*/
|
|
@@ -100,6 +106,7 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
100
106
|
createField(args: CreateFieldCommandInput, cb: (err: any, data?: CreateFieldCommandOutput) => void): void;
|
|
101
107
|
createField(args: CreateFieldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFieldCommandOutput) => void): void;
|
|
102
108
|
/**
|
|
109
|
+
* @public
|
|
103
110
|
* <p>Creates a layout in the Cases domain. Layouts define the following configuration in
|
|
104
111
|
* the top section and More Info tab of the Cases user interface:</p>
|
|
105
112
|
* <ul>
|
|
@@ -119,6 +126,7 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
119
126
|
createLayout(args: CreateLayoutCommandInput, cb: (err: any, data?: CreateLayoutCommandOutput) => void): void;
|
|
120
127
|
createLayout(args: CreateLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLayoutCommandOutput) => void): void;
|
|
121
128
|
/**
|
|
129
|
+
* @public
|
|
122
130
|
* <p>Creates a related item (comments, tasks, and contacts) and associates it with a
|
|
123
131
|
* case.</p>
|
|
124
132
|
* <note>
|
|
@@ -133,6 +141,7 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
133
141
|
createRelatedItem(args: CreateRelatedItemCommandInput, cb: (err: any, data?: CreateRelatedItemCommandOutput) => void): void;
|
|
134
142
|
createRelatedItem(args: CreateRelatedItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRelatedItemCommandOutput) => void): void;
|
|
135
143
|
/**
|
|
144
|
+
* @public
|
|
136
145
|
* <p>Creates a template in the Cases domain. This template is used to define the case object
|
|
137
146
|
* model (that is, to define what data can be captured on cases) in a Cases domain. A template
|
|
138
147
|
* must have a unique name within a domain, and it must reference existing field IDs and layout
|
|
@@ -144,48 +153,56 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
144
153
|
createTemplate(args: CreateTemplateCommandInput, cb: (err: any, data?: CreateTemplateCommandOutput) => void): void;
|
|
145
154
|
createTemplate(args: CreateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTemplateCommandOutput) => void): void;
|
|
146
155
|
/**
|
|
156
|
+
* @public
|
|
147
157
|
* <p>Deletes a domain.</p>
|
|
148
158
|
*/
|
|
149
159
|
deleteDomain(args: DeleteDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainCommandOutput>;
|
|
150
160
|
deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
151
161
|
deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
|
|
152
162
|
/**
|
|
163
|
+
* @public
|
|
153
164
|
* <p>Returns information about a specific case if it exists. </p>
|
|
154
165
|
*/
|
|
155
166
|
getCase(args: GetCaseCommandInput, options?: __HttpHandlerOptions): Promise<GetCaseCommandOutput>;
|
|
156
167
|
getCase(args: GetCaseCommandInput, cb: (err: any, data?: GetCaseCommandOutput) => void): void;
|
|
157
168
|
getCase(args: GetCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCaseCommandOutput) => void): void;
|
|
158
169
|
/**
|
|
170
|
+
* @public
|
|
159
171
|
* <p>Returns the case event publishing configuration.</p>
|
|
160
172
|
*/
|
|
161
173
|
getCaseEventConfiguration(args: GetCaseEventConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetCaseEventConfigurationCommandOutput>;
|
|
162
174
|
getCaseEventConfiguration(args: GetCaseEventConfigurationCommandInput, cb: (err: any, data?: GetCaseEventConfigurationCommandOutput) => void): void;
|
|
163
175
|
getCaseEventConfiguration(args: GetCaseEventConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCaseEventConfigurationCommandOutput) => void): void;
|
|
164
176
|
/**
|
|
177
|
+
* @public
|
|
165
178
|
* <p>Returns information about a specific domain if it exists. </p>
|
|
166
179
|
*/
|
|
167
180
|
getDomain(args: GetDomainCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainCommandOutput>;
|
|
168
181
|
getDomain(args: GetDomainCommandInput, cb: (err: any, data?: GetDomainCommandOutput) => void): void;
|
|
169
182
|
getDomain(args: GetDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainCommandOutput) => void): void;
|
|
170
183
|
/**
|
|
184
|
+
* @public
|
|
171
185
|
* <p>Returns the details for the requested layout.</p>
|
|
172
186
|
*/
|
|
173
187
|
getLayout(args: GetLayoutCommandInput, options?: __HttpHandlerOptions): Promise<GetLayoutCommandOutput>;
|
|
174
188
|
getLayout(args: GetLayoutCommandInput, cb: (err: any, data?: GetLayoutCommandOutput) => void): void;
|
|
175
189
|
getLayout(args: GetLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLayoutCommandOutput) => void): void;
|
|
176
190
|
/**
|
|
191
|
+
* @public
|
|
177
192
|
* <p>Returns the details for the requested template. </p>
|
|
178
193
|
*/
|
|
179
194
|
getTemplate(args: GetTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetTemplateCommandOutput>;
|
|
180
195
|
getTemplate(args: GetTemplateCommandInput, cb: (err: any, data?: GetTemplateCommandOutput) => void): void;
|
|
181
196
|
getTemplate(args: GetTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTemplateCommandOutput) => void): void;
|
|
182
197
|
/**
|
|
198
|
+
* @public
|
|
183
199
|
* <p>Lists cases for a given contact.</p>
|
|
184
200
|
*/
|
|
185
201
|
listCasesForContact(args: ListCasesForContactCommandInput, options?: __HttpHandlerOptions): Promise<ListCasesForContactCommandOutput>;
|
|
186
202
|
listCasesForContact(args: ListCasesForContactCommandInput, cb: (err: any, data?: ListCasesForContactCommandOutput) => void): void;
|
|
187
203
|
listCasesForContact(args: ListCasesForContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCasesForContactCommandOutput) => void): void;
|
|
188
204
|
/**
|
|
205
|
+
* @public
|
|
189
206
|
* <p>Lists all cases domains in the Amazon Web Services account. Each list item is a condensed
|
|
190
207
|
* summary object of the domain.</p>
|
|
191
208
|
*/
|
|
@@ -193,18 +210,21 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
193
210
|
listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
194
211
|
listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
|
|
195
212
|
/**
|
|
213
|
+
* @public
|
|
196
214
|
* <p>Lists all of the field options for a field identifier in the domain. </p>
|
|
197
215
|
*/
|
|
198
216
|
listFieldOptions(args: ListFieldOptionsCommandInput, options?: __HttpHandlerOptions): Promise<ListFieldOptionsCommandOutput>;
|
|
199
217
|
listFieldOptions(args: ListFieldOptionsCommandInput, cb: (err: any, data?: ListFieldOptionsCommandOutput) => void): void;
|
|
200
218
|
listFieldOptions(args: ListFieldOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFieldOptionsCommandOutput) => void): void;
|
|
201
219
|
/**
|
|
220
|
+
* @public
|
|
202
221
|
* <p>Lists all fields in a Cases domain.</p>
|
|
203
222
|
*/
|
|
204
223
|
listFields(args: ListFieldsCommandInput, options?: __HttpHandlerOptions): Promise<ListFieldsCommandOutput>;
|
|
205
224
|
listFields(args: ListFieldsCommandInput, cb: (err: any, data?: ListFieldsCommandOutput) => void): void;
|
|
206
225
|
listFields(args: ListFieldsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFieldsCommandOutput) => void): void;
|
|
207
226
|
/**
|
|
227
|
+
* @public
|
|
208
228
|
* <p>Lists all layouts in the given cases domain. Each list item is a condensed summary object
|
|
209
229
|
* of the layout.</p>
|
|
210
230
|
*/
|
|
@@ -212,12 +232,14 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
212
232
|
listLayouts(args: ListLayoutsCommandInput, cb: (err: any, data?: ListLayoutsCommandOutput) => void): void;
|
|
213
233
|
listLayouts(args: ListLayoutsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLayoutsCommandOutput) => void): void;
|
|
214
234
|
/**
|
|
235
|
+
* @public
|
|
215
236
|
* <p>Lists tags for a resource.</p>
|
|
216
237
|
*/
|
|
217
238
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
218
239
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
219
240
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
220
241
|
/**
|
|
242
|
+
* @public
|
|
221
243
|
* <p>Lists all of the templates in a Cases domain. Each list item is a condensed summary
|
|
222
244
|
* object of the template. </p>
|
|
223
245
|
*/
|
|
@@ -225,12 +247,14 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
225
247
|
listTemplates(args: ListTemplatesCommandInput, cb: (err: any, data?: ListTemplatesCommandOutput) => void): void;
|
|
226
248
|
listTemplates(args: ListTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTemplatesCommandOutput) => void): void;
|
|
227
249
|
/**
|
|
250
|
+
* @public
|
|
228
251
|
* <p>API for adding case event publishing configuration</p>
|
|
229
252
|
*/
|
|
230
253
|
putCaseEventConfiguration(args: PutCaseEventConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutCaseEventConfigurationCommandOutput>;
|
|
231
254
|
putCaseEventConfiguration(args: PutCaseEventConfigurationCommandInput, cb: (err: any, data?: PutCaseEventConfigurationCommandOutput) => void): void;
|
|
232
255
|
putCaseEventConfiguration(args: PutCaseEventConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutCaseEventConfigurationCommandOutput) => void): void;
|
|
233
256
|
/**
|
|
257
|
+
* @public
|
|
234
258
|
* <p>Searches for cases within their associated Cases domain. Search results are returned
|
|
235
259
|
* as a paginated list of abridged case documents.</p>
|
|
236
260
|
* <note>
|
|
@@ -243,6 +267,7 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
243
267
|
searchCases(args: SearchCasesCommandInput, cb: (err: any, data?: SearchCasesCommandOutput) => void): void;
|
|
244
268
|
searchCases(args: SearchCasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchCasesCommandOutput) => void): void;
|
|
245
269
|
/**
|
|
270
|
+
* @public
|
|
246
271
|
* <p>Searches for related items that are associated with a case.</p>
|
|
247
272
|
* <note>
|
|
248
273
|
* <p>If no filters are provided, this returns all related items associated with a
|
|
@@ -253,18 +278,21 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
253
278
|
searchRelatedItems(args: SearchRelatedItemsCommandInput, cb: (err: any, data?: SearchRelatedItemsCommandOutput) => void): void;
|
|
254
279
|
searchRelatedItems(args: SearchRelatedItemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchRelatedItemsCommandOutput) => void): void;
|
|
255
280
|
/**
|
|
281
|
+
* @public
|
|
256
282
|
* <p>Adds tags to a resource.</p>
|
|
257
283
|
*/
|
|
258
284
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
259
285
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
260
286
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
261
287
|
/**
|
|
288
|
+
* @public
|
|
262
289
|
* <p>Untags a resource.</p>
|
|
263
290
|
*/
|
|
264
291
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
265
292
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
266
293
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
267
294
|
/**
|
|
295
|
+
* @public
|
|
268
296
|
* <p>Updates the values of fields on a case. Fields to be updated are received as an array of
|
|
269
297
|
* id/value pairs identical to the <code>CreateCase</code> input .</p>
|
|
270
298
|
* <p>If the action is successful, the service sends back an HTTP 200 response with an empty
|
|
@@ -274,12 +302,14 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
274
302
|
updateCase(args: UpdateCaseCommandInput, cb: (err: any, data?: UpdateCaseCommandOutput) => void): void;
|
|
275
303
|
updateCase(args: UpdateCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCaseCommandOutput) => void): void;
|
|
276
304
|
/**
|
|
305
|
+
* @public
|
|
277
306
|
* <p>Updates the properties of an existing field. </p>
|
|
278
307
|
*/
|
|
279
308
|
updateField(args: UpdateFieldCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFieldCommandOutput>;
|
|
280
309
|
updateField(args: UpdateFieldCommandInput, cb: (err: any, data?: UpdateFieldCommandOutput) => void): void;
|
|
281
310
|
updateField(args: UpdateFieldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFieldCommandOutput) => void): void;
|
|
282
311
|
/**
|
|
312
|
+
* @public
|
|
283
313
|
* <p>Updates the attributes of an existing layout.</p>
|
|
284
314
|
* <p>If the action is successful, the service sends back an HTTP 200 response with an empty
|
|
285
315
|
* HTTP body.</p>
|
|
@@ -294,6 +324,7 @@ export declare class ConnectCases extends ConnectCasesClient {
|
|
|
294
324
|
updateLayout(args: UpdateLayoutCommandInput, cb: (err: any, data?: UpdateLayoutCommandOutput) => void): void;
|
|
295
325
|
updateLayout(args: UpdateLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLayoutCommandOutput) => void): void;
|
|
296
326
|
/**
|
|
327
|
+
* @public
|
|
297
328
|
* <p>Updates the attributes of an existing template. The template attributes that can be
|
|
298
329
|
* modified include <code>name</code>, <code>description</code>,
|
|
299
330
|
* <code>layoutConfiguration</code>, <code>requiredFields</code>, and <code>status</code>. At
|
|
@@ -38,15 +38,24 @@ import { UpdateFieldCommandInput, UpdateFieldCommandOutput } from "./commands/Up
|
|
|
38
38
|
import { UpdateLayoutCommandInput, UpdateLayoutCommandOutput } from "./commands/UpdateLayoutCommand";
|
|
39
39
|
import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput } from "./commands/UpdateTemplateCommand";
|
|
40
40
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
41
44
|
export type ServiceInputTypes = BatchGetFieldCommandInput | BatchPutFieldOptionsCommandInput | CreateCaseCommandInput | CreateDomainCommandInput | CreateFieldCommandInput | CreateLayoutCommandInput | CreateRelatedItemCommandInput | CreateTemplateCommandInput | DeleteDomainCommandInput | GetCaseCommandInput | GetCaseEventConfigurationCommandInput | GetDomainCommandInput | GetLayoutCommandInput | GetTemplateCommandInput | ListCasesForContactCommandInput | ListDomainsCommandInput | ListFieldOptionsCommandInput | ListFieldsCommandInput | ListLayoutsCommandInput | ListTagsForResourceCommandInput | ListTemplatesCommandInput | PutCaseEventConfigurationCommandInput | SearchCasesCommandInput | SearchRelatedItemsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCaseCommandInput | UpdateFieldCommandInput | UpdateLayoutCommandInput | UpdateTemplateCommandInput;
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
42
48
|
export type ServiceOutputTypes = BatchGetFieldCommandOutput | BatchPutFieldOptionsCommandOutput | CreateCaseCommandOutput | CreateDomainCommandOutput | CreateFieldCommandOutput | CreateLayoutCommandOutput | CreateRelatedItemCommandOutput | CreateTemplateCommandOutput | DeleteDomainCommandOutput | GetCaseCommandOutput | GetCaseEventConfigurationCommandOutput | GetDomainCommandOutput | GetLayoutCommandOutput | GetTemplateCommandOutput | ListCasesForContactCommandOutput | ListDomainsCommandOutput | ListFieldOptionsCommandOutput | ListFieldsCommandOutput | ListLayoutsCommandOutput | ListTagsForResourceCommandOutput | ListTemplatesCommandOutput | PutCaseEventConfigurationCommandOutput | SearchCasesCommandOutput | SearchRelatedItemsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCaseCommandOutput | UpdateFieldCommandOutput | UpdateLayoutCommandOutput | UpdateTemplateCommandOutput;
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
43
52
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
44
53
|
/**
|
|
45
54
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
46
55
|
*/
|
|
47
56
|
requestHandler?: __HttpHandler;
|
|
48
57
|
/**
|
|
49
|
-
* A constructor for a class implementing the {@link
|
|
58
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
50
59
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
51
60
|
* @internal
|
|
52
61
|
*/
|
|
@@ -136,23 +145,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
136
145
|
*/
|
|
137
146
|
logger?: __Logger;
|
|
138
147
|
/**
|
|
139
|
-
* The {@link
|
|
148
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
140
149
|
*/
|
|
141
150
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
142
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
143
155
|
type ConnectCasesClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
144
156
|
/**
|
|
145
|
-
*
|
|
157
|
+
* @public
|
|
158
|
+
*
|
|
159
|
+
* The configuration interface of ConnectCasesClient class constructor that set the region, credentials and other options.
|
|
146
160
|
*/
|
|
147
161
|
export interface ConnectCasesClientConfig extends ConnectCasesClientConfigType {
|
|
148
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
149
166
|
type ConnectCasesClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
150
167
|
/**
|
|
151
|
-
*
|
|
168
|
+
* @public
|
|
169
|
+
*
|
|
170
|
+
* The resolved configuration interface of ConnectCasesClient class. This is resolved and normalized from the {@link ConnectCasesClientConfig | constructor configuration interface}.
|
|
152
171
|
*/
|
|
153
172
|
export interface ConnectCasesClientResolvedConfig extends ConnectCasesClientResolvedConfigType {
|
|
154
173
|
}
|
|
155
174
|
/**
|
|
175
|
+
* @public
|
|
156
176
|
* <p>With Amazon Connect Cases, your agents can track and manage customer issues that require
|
|
157
177
|
* multiple interactions, follow-up tasks, and teams in your contact center. A case represents a
|
|
158
178
|
* customer issue. It records the issue, the steps and interactions taken to resolve the issue,
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { BatchGetFieldRequest, BatchGetFieldResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchGetFieldCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchGetFieldCommandInput extends BatchGetFieldRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchGetFieldCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchGetFieldCommandOutput extends BatchGetFieldResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the description for the list of fields in the request parameters. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface BatchGetFieldCommandOutput extends BatchGetFieldResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param BatchGetFieldCommandInput - {@link BatchGetFieldCommandInput}
|
|
34
|
+
* @returns {@link BatchGetFieldCommandOutput}
|
|
28
35
|
* @see {@link BatchGetFieldCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link BatchGetFieldCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface BatchGetFieldCommandOutput extends BatchGetFieldResponse, __Met
|
|
|
51
58
|
export declare class BatchGetFieldCommand extends $Command<BatchGetFieldCommandInput, BatchGetFieldCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
52
59
|
readonly input: BatchGetFieldCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: BatchGetFieldCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetFieldCommandInput, BatchGetFieldCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { BatchPutFieldOptionsRequest, BatchPutFieldOptionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchPutFieldOptionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchPutFieldOptionsCommandInput extends BatchPutFieldOptionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchPutFieldOptionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchPutFieldOptionsCommandOutput extends BatchPutFieldOptionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates and updates a set of field options for a single select field in a Cases
|
|
18
23
|
* domain.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface BatchPutFieldOptionsCommandOutput extends BatchPutFieldOptionsR
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param BatchPutFieldOptionsCommandInput - {@link BatchPutFieldOptionsCommandInput}
|
|
35
|
+
* @returns {@link BatchPutFieldOptionsCommandOutput}
|
|
29
36
|
* @see {@link BatchPutFieldOptionsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link BatchPutFieldOptionsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface BatchPutFieldOptionsCommandOutput extends BatchPutFieldOptionsR
|
|
|
56
63
|
export declare class BatchPutFieldOptionsCommand extends $Command<BatchPutFieldOptionsCommandInput, BatchPutFieldOptionsCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
57
64
|
readonly input: BatchPutFieldOptionsCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: BatchPutFieldOptionsCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchPutFieldOptionsCommandInput, BatchPutFieldOptionsCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { CreateCaseRequest, CreateCaseResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateCaseCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateCaseCommandInput extends CreateCaseRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateCaseCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a case in the specified Cases domain. Case system and custom fields are taken
|
|
18
23
|
* as an array id/value pairs with a declared data types.</p>
|
|
19
24
|
* <note>
|
|
@@ -45,6 +50,8 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB
|
|
|
45
50
|
* const response = await client.send(command);
|
|
46
51
|
* ```
|
|
47
52
|
*
|
|
53
|
+
* @param CreateCaseCommandInput - {@link CreateCaseCommandInput}
|
|
54
|
+
* @returns {@link CreateCaseCommandOutput}
|
|
48
55
|
* @see {@link CreateCaseCommandInput} for command's `input` shape.
|
|
49
56
|
* @see {@link CreateCaseCommandOutput} for command's `response` shape.
|
|
50
57
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -76,11 +83,20 @@ export interface CreateCaseCommandOutput extends CreateCaseResponse, __MetadataB
|
|
|
76
83
|
export declare class CreateCaseCommand extends $Command<CreateCaseCommandInput, CreateCaseCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
77
84
|
readonly input: CreateCaseCommandInput;
|
|
78
85
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
79
89
|
constructor(input: CreateCaseCommandInput);
|
|
80
90
|
/**
|
|
81
91
|
* @internal
|
|
82
92
|
*/
|
|
83
93
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCaseCommandInput, CreateCaseCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
84
97
|
private serialize;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
85
101
|
private deserialize;
|
|
86
102
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { CreateDomainRequest, CreateDomainResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateDomainCommandInput extends CreateDomainRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateDomainCommandOutput extends CreateDomainResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a domain, which is a container for all case data, such as cases, fields, templates
|
|
18
23
|
* and layouts. Each Amazon Connect instance can be associated with only one Cases
|
|
19
24
|
* domain.</p>
|
|
@@ -34,6 +39,8 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param CreateDomainCommandInput - {@link CreateDomainCommandInput}
|
|
43
|
+
* @returns {@link CreateDomainCommandOutput}
|
|
37
44
|
* @see {@link CreateDomainCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link CreateDomainCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
|
|
|
65
72
|
export declare class CreateDomainCommand extends $Command<CreateDomainCommandInput, CreateDomainCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
66
73
|
readonly input: CreateDomainCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: CreateDomainCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDomainCommandInput, CreateDomainCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { CreateFieldRequest, CreateFieldResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateFieldCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateFieldCommandInput extends CreateFieldRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateFieldCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateFieldCommandOutput extends CreateFieldResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a field in the Cases domain. This field is used to define the case object
|
|
18
23
|
* model (that is, defines what data can be captured on cases) in a Cases domain. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateFieldCommandOutput extends CreateFieldResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateFieldCommandInput - {@link CreateFieldCommandInput}
|
|
35
|
+
* @returns {@link CreateFieldCommandOutput}
|
|
29
36
|
* @see {@link CreateFieldCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateFieldCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface CreateFieldCommandOutput extends CreateFieldResponse, __Metadat
|
|
|
61
68
|
export declare class CreateFieldCommand extends $Command<CreateFieldCommandInput, CreateFieldCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
62
69
|
readonly input: CreateFieldCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: CreateFieldCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFieldCommandInput, CreateFieldCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { CreateLayoutRequest, CreateLayoutResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateLayoutCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateLayoutCommandInput extends CreateLayoutRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateLayoutCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateLayoutCommandOutput extends CreateLayoutResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a layout in the Cases domain. Layouts define the following configuration in
|
|
18
23
|
* the top section and More Info tab of the Cases user interface:</p>
|
|
19
24
|
* <ul>
|
|
@@ -38,6 +43,8 @@ export interface CreateLayoutCommandOutput extends CreateLayoutResponse, __Metad
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param CreateLayoutCommandInput - {@link CreateLayoutCommandInput}
|
|
47
|
+
* @returns {@link CreateLayoutCommandOutput}
|
|
41
48
|
* @see {@link CreateLayoutCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link CreateLayoutCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -73,11 +80,20 @@ export interface CreateLayoutCommandOutput extends CreateLayoutResponse, __Metad
|
|
|
73
80
|
export declare class CreateLayoutCommand extends $Command<CreateLayoutCommandInput, CreateLayoutCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
74
81
|
readonly input: CreateLayoutCommandInput;
|
|
75
82
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
76
86
|
constructor(input: CreateLayoutCommandInput);
|
|
77
87
|
/**
|
|
78
88
|
* @internal
|
|
79
89
|
*/
|
|
80
90
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLayoutCommandInput, CreateLayoutCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
81
94
|
private serialize;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
82
98
|
private deserialize;
|
|
83
99
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { CreateRelatedItemRequest, CreateRelatedItemResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateRelatedItemCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateRelatedItemCommandInput extends CreateRelatedItemRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateRelatedItemCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateRelatedItemCommandOutput extends CreateRelatedItemResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a related item (comments, tasks, and contacts) and associates it with a
|
|
18
23
|
* case.</p>
|
|
19
24
|
* <note>
|
|
@@ -33,6 +38,8 @@ export interface CreateRelatedItemCommandOutput extends CreateRelatedItemRespons
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param CreateRelatedItemCommandInput - {@link CreateRelatedItemCommandInput}
|
|
42
|
+
* @returns {@link CreateRelatedItemCommandOutput}
|
|
36
43
|
* @see {@link CreateRelatedItemCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link CreateRelatedItemCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface CreateRelatedItemCommandOutput extends CreateRelatedItemRespons
|
|
|
63
70
|
export declare class CreateRelatedItemCommand extends $Command<CreateRelatedItemCommandInput, CreateRelatedItemCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
64
71
|
readonly input: CreateRelatedItemCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: CreateRelatedItemCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRelatedItemCommandInput, CreateRelatedItemCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|