@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
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateTemplateCommandInput extends CreateTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a template in the Cases domain. This template is used to define the case object
|
|
18
23
|
* model (that is, to define what data can be captured on cases) in a Cases domain. A template
|
|
19
24
|
* must have a unique name within a domain, and it must reference existing field IDs and layout
|
|
@@ -30,6 +35,8 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param CreateTemplateCommandInput - {@link CreateTemplateCommandInput}
|
|
39
|
+
* @returns {@link CreateTemplateCommandOutput}
|
|
33
40
|
* @see {@link CreateTemplateCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link CreateTemplateCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
|
|
|
65
72
|
export declare class CreateTemplateCommand extends $Command<CreateTemplateCommandInput, CreateTemplateCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
66
73
|
readonly input: CreateTemplateCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: CreateTemplateCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTemplateCommandInput, CreateTemplateCommandOutput>;
|
|
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 { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDomainCommandInput extends DeleteDomainRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a domain.</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 DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteDomainCommandInput - {@link DeleteDomainCommandInput}
|
|
34
|
+
* @returns {@link DeleteDomainCommandOutput}
|
|
28
35
|
* @see {@link DeleteDomainCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteDomainCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad
|
|
|
56
63
|
export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
57
64
|
readonly input: DeleteDomainCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: DeleteDomainCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDomainCommandInput, DeleteDomainCommandOutput>;
|
|
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 { GetCaseRequest, GetCaseResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCaseCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCaseCommandInput extends GetCaseRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCaseCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCaseCommandOutput extends GetCaseResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a specific case if it exists. </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 GetCaseCommandOutput extends GetCaseResponse, __MetadataBearer
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetCaseCommandInput - {@link GetCaseCommandInput}
|
|
34
|
+
* @returns {@link GetCaseCommandOutput}
|
|
28
35
|
* @see {@link GetCaseCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetCaseCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetCaseCommandOutput extends GetCaseResponse, __MetadataBearer
|
|
|
51
58
|
export declare class GetCaseCommand extends $Command<GetCaseCommandInput, GetCaseCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
52
59
|
readonly input: GetCaseCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetCaseCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCaseCommandInput, GetCaseCommandOutput>;
|
|
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 { GetCaseEventConfigurationRequest, GetCaseEventConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCaseEventConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCaseEventConfigurationCommandInput extends GetCaseEventConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCaseEventConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCaseEventConfigurationCommandOutput extends GetCaseEventConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the case event publishing configuration.</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 GetCaseEventConfigurationCommandOutput extends GetCaseEventConf
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetCaseEventConfigurationCommandInput - {@link GetCaseEventConfigurationCommandInput}
|
|
34
|
+
* @returns {@link GetCaseEventConfigurationCommandOutput}
|
|
28
35
|
* @see {@link GetCaseEventConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetCaseEventConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetCaseEventConfigurationCommandOutput extends GetCaseEventConf
|
|
|
51
58
|
export declare class GetCaseEventConfigurationCommand extends $Command<GetCaseEventConfigurationCommandInput, GetCaseEventConfigurationCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
52
59
|
readonly input: GetCaseEventConfigurationCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetCaseEventConfigurationCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCaseEventConfigurationCommandInput, GetCaseEventConfigurationCommandOutput>;
|
|
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 { GetDomainRequest, GetDomainResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDomainCommandInput extends GetDomainRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDomainCommandOutput extends GetDomainResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a specific domain if it exists. </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 GetDomainCommandOutput extends GetDomainResponse, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDomainCommandInput - {@link GetDomainCommandInput}
|
|
34
|
+
* @returns {@link GetDomainCommandOutput}
|
|
28
35
|
* @see {@link GetDomainCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDomainCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetDomainCommandOutput extends GetDomainResponse, __MetadataBea
|
|
|
51
58
|
export declare class GetDomainCommand extends $Command<GetDomainCommandInput, GetDomainCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
52
59
|
readonly input: GetDomainCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetDomainCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDomainCommandInput, GetDomainCommandOutput>;
|
|
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 { GetLayoutRequest, GetLayoutResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetLayoutCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetLayoutCommandInput extends GetLayoutRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetLayoutCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetLayoutCommandOutput extends GetLayoutResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the details for the requested layout.</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 GetLayoutCommandOutput extends GetLayoutResponse, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetLayoutCommandInput - {@link GetLayoutCommandInput}
|
|
34
|
+
* @returns {@link GetLayoutCommandOutput}
|
|
28
35
|
* @see {@link GetLayoutCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetLayoutCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetLayoutCommandOutput extends GetLayoutResponse, __MetadataBea
|
|
|
51
58
|
export declare class GetLayoutCommand extends $Command<GetLayoutCommandInput, GetLayoutCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
52
59
|
readonly input: GetLayoutCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetLayoutCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLayoutCommandInput, GetLayoutCommandOutput>;
|
|
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 { GetTemplateRequest, GetTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTemplateCommandInput extends GetTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTemplateCommandOutput extends GetTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the details for the requested template. </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 GetTemplateCommandOutput extends GetTemplateResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetTemplateCommandInput - {@link GetTemplateCommandInput}
|
|
34
|
+
* @returns {@link GetTemplateCommandOutput}
|
|
28
35
|
* @see {@link GetTemplateCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetTemplateCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetTemplateCommandOutput extends GetTemplateResponse, __Metadat
|
|
|
51
58
|
export declare class GetTemplateCommand extends $Command<GetTemplateCommandInput, GetTemplateCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
52
59
|
readonly input: GetTemplateCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetTemplateCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTemplateCommandInput, GetTemplateCommandOutput>;
|
|
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 { ListCasesForContactRequest, ListCasesForContactResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCasesForContactCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCasesForContactCommandInput extends ListCasesForContactRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCasesForContactCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCasesForContactCommandOutput extends ListCasesForContactResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists cases for a given contact.</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 ListCasesForContactCommandOutput extends ListCasesForContactRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListCasesForContactCommandInput - {@link ListCasesForContactCommandInput}
|
|
34
|
+
* @returns {@link ListCasesForContactCommandOutput}
|
|
28
35
|
* @see {@link ListCasesForContactCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListCasesForContactCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListCasesForContactCommandOutput extends ListCasesForContactRes
|
|
|
51
58
|
export declare class ListCasesForContactCommand extends $Command<ListCasesForContactCommandInput, ListCasesForContactCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
52
59
|
readonly input: ListCasesForContactCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListCasesForContactCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCasesForContactCommandInput, ListCasesForContactCommandOutput>;
|
|
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 { ListDomainsRequest, ListDomainsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDomainsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDomainsCommandInput extends ListDomainsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDomainsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDomainsCommandOutput extends ListDomainsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all cases domains in the Amazon Web Services account. Each list item is a condensed
|
|
18
23
|
* summary object of the domain.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListDomainsCommandInput - {@link ListDomainsCommandInput}
|
|
35
|
+
* @returns {@link ListDomainsCommandOutput}
|
|
29
36
|
* @see {@link ListDomainsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListDomainsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
|
|
|
48
55
|
export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
49
56
|
readonly input: ListDomainsCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListDomainsCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDomainsCommandInput, ListDomainsCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { ListFieldOptionsRequest, ListFieldOptionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListFieldOptionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListFieldOptionsCommandInput extends ListFieldOptionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListFieldOptionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListFieldOptionsCommandOutput extends ListFieldOptionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all of the field options for a field identifier in the domain. </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 ListFieldOptionsCommandOutput extends ListFieldOptionsResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListFieldOptionsCommandInput - {@link ListFieldOptionsCommandInput}
|
|
34
|
+
* @returns {@link ListFieldOptionsCommandOutput}
|
|
28
35
|
* @see {@link ListFieldOptionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListFieldOptionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListFieldOptionsCommandOutput extends ListFieldOptionsResponse,
|
|
|
51
58
|
export declare class ListFieldOptionsCommand extends $Command<ListFieldOptionsCommandInput, ListFieldOptionsCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
52
59
|
readonly input: ListFieldOptionsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListFieldOptionsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFieldOptionsCommandInput, ListFieldOptionsCommandOutput>;
|
|
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 { ListFieldsRequest, ListFieldsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListFieldsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListFieldsCommandInput extends ListFieldsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListFieldsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListFieldsCommandOutput extends ListFieldsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all fields in a Cases domain.</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 ListFieldsCommandOutput extends ListFieldsResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListFieldsCommandInput - {@link ListFieldsCommandInput}
|
|
34
|
+
* @returns {@link ListFieldsCommandOutput}
|
|
28
35
|
* @see {@link ListFieldsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListFieldsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListFieldsCommandOutput extends ListFieldsResponse, __MetadataB
|
|
|
51
58
|
export declare class ListFieldsCommand extends $Command<ListFieldsCommandInput, ListFieldsCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
52
59
|
readonly input: ListFieldsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListFieldsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFieldsCommandInput, ListFieldsCommandOutput>;
|
|
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 { ListLayoutsRequest, ListLayoutsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLayoutsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLayoutsCommandInput extends ListLayoutsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLayoutsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLayoutsCommandOutput extends ListLayoutsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all layouts in the given cases domain. Each list item is a condensed summary object
|
|
18
23
|
* of the layout.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListLayoutsCommandOutput extends ListLayoutsResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListLayoutsCommandInput - {@link ListLayoutsCommandInput}
|
|
35
|
+
* @returns {@link ListLayoutsCommandOutput}
|
|
29
36
|
* @see {@link ListLayoutsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListLayoutsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListLayoutsCommandOutput extends ListLayoutsResponse, __Metadat
|
|
|
52
59
|
export declare class ListLayoutsCommand extends $Command<ListLayoutsCommandInput, ListLayoutsCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
53
60
|
readonly input: ListLayoutsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListLayoutsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLayoutsCommandInput, ListLayoutsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists tags for a resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
51
58
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ConnectCasesClientResolvedConfig> {
|
|
52
59
|
readonly input: ListTagsForResourceCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListTagsForResourceCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|