@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.
Files changed (45) hide show
  1. package/dist-types/ConnectCases.d.ts +31 -0
  2. package/dist-types/ConnectCasesClient.d.ts +24 -4
  3. package/dist-types/commands/BatchGetFieldCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchPutFieldOptionsCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateCaseCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateDomainCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateFieldCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateLayoutCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateRelatedItemCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateTemplateCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteDomainCommand.d.ts +16 -0
  12. package/dist-types/commands/GetCaseCommand.d.ts +16 -0
  13. package/dist-types/commands/GetCaseEventConfigurationCommand.d.ts +16 -0
  14. package/dist-types/commands/GetDomainCommand.d.ts +16 -0
  15. package/dist-types/commands/GetLayoutCommand.d.ts +16 -0
  16. package/dist-types/commands/GetTemplateCommand.d.ts +16 -0
  17. package/dist-types/commands/ListCasesForContactCommand.d.ts +16 -0
  18. package/dist-types/commands/ListDomainsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListFieldOptionsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListFieldsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListLayoutsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/ListTemplatesCommand.d.ts +16 -0
  24. package/dist-types/commands/PutCaseEventConfigurationCommand.d.ts +16 -0
  25. package/dist-types/commands/SearchCasesCommand.d.ts +16 -0
  26. package/dist-types/commands/SearchRelatedItemsCommand.d.ts +16 -0
  27. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateCaseCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateFieldCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateLayoutCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateTemplateCommand.d.ts +16 -0
  33. package/dist-types/models/ConnectCasesServiceException.d.ts +2 -0
  34. package/dist-types/models/models_0.d.ts +263 -0
  35. package/dist-types/pagination/GetCasePaginator.d.ts +3 -0
  36. package/dist-types/pagination/Interfaces.d.ts +3 -0
  37. package/dist-types/pagination/ListCasesForContactPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListDomainsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListFieldOptionsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListFieldsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListLayoutsPaginator.d.ts +3 -0
  42. package/dist-types/pagination/ListTemplatesPaginator.d.ts +3 -0
  43. package/dist-types/pagination/SearchCasesPaginator.d.ts +3 -0
  44. package/dist-types/pagination/SearchRelatedItemsPaginator.d.ts +3 -0
  45. 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 { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTemplatesCommand}.
8
10
  */
9
11
  export interface ListTemplatesCommandInput extends ListTemplatesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTemplatesCommand}.
13
17
  */
14
18
  export interface ListTemplatesCommandOutput extends ListTemplatesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all of the templates in a Cases domain. Each list item is a condensed summary
18
23
  * object of the template. </p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListTemplatesCommandOutput extends ListTemplatesResponse, __Met
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListTemplatesCommandInput - {@link ListTemplatesCommandInput}
35
+ * @returns {@link ListTemplatesCommandOutput}
29
36
  * @see {@link ListTemplatesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListTemplatesCommandOutput} for command's `response` shape.
31
38
  * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
@@ -52,11 +59,20 @@ export interface ListTemplatesCommandOutput extends ListTemplatesResponse, __Met
52
59
  export declare class ListTemplatesCommand extends $Command<ListTemplatesCommandInput, ListTemplatesCommandOutput, ConnectCasesClientResolvedConfig> {
53
60
  readonly input: ListTemplatesCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ListTemplatesCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTemplatesCommandInput, ListTemplatesCommandOutput>;
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 { PutCaseEventConfigurationRequest, PutCaseEventConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutCaseEventConfigurationCommand}.
8
10
  */
9
11
  export interface PutCaseEventConfigurationCommandInput extends PutCaseEventConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutCaseEventConfigurationCommand}.
13
17
  */
14
18
  export interface PutCaseEventConfigurationCommandOutput extends PutCaseEventConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>API for adding 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 PutCaseEventConfigurationCommandOutput extends PutCaseEventConf
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param PutCaseEventConfigurationCommandInput - {@link PutCaseEventConfigurationCommandInput}
34
+ * @returns {@link PutCaseEventConfigurationCommandOutput}
28
35
  * @see {@link PutCaseEventConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link PutCaseEventConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
@@ -51,11 +58,20 @@ export interface PutCaseEventConfigurationCommandOutput extends PutCaseEventConf
51
58
  export declare class PutCaseEventConfigurationCommand extends $Command<PutCaseEventConfigurationCommandInput, PutCaseEventConfigurationCommandOutput, ConnectCasesClientResolvedConfig> {
52
59
  readonly input: PutCaseEventConfigurationCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: PutCaseEventConfigurationCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutCaseEventConfigurationCommandInput, PutCaseEventConfigurationCommandOutput>;
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 { SearchCasesRequest, SearchCasesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchCasesCommand}.
8
10
  */
9
11
  export interface SearchCasesCommandInput extends SearchCasesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchCasesCommand}.
13
17
  */
14
18
  export interface SearchCasesCommandOutput extends SearchCasesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Searches for cases within their associated Cases domain. Search results are returned
18
23
  * as a paginated list of abridged case documents.</p>
19
24
  * <note>
@@ -31,6 +36,8 @@ export interface SearchCasesCommandOutput extends SearchCasesResponse, __Metadat
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param SearchCasesCommandInput - {@link SearchCasesCommandInput}
40
+ * @returns {@link SearchCasesCommandOutput}
34
41
  * @see {@link SearchCasesCommandInput} for command's `input` shape.
35
42
  * @see {@link SearchCasesCommandOutput} for command's `response` shape.
36
43
  * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
@@ -57,11 +64,20 @@ export interface SearchCasesCommandOutput extends SearchCasesResponse, __Metadat
57
64
  export declare class SearchCasesCommand extends $Command<SearchCasesCommandInput, SearchCasesCommandOutput, ConnectCasesClientResolvedConfig> {
58
65
  readonly input: SearchCasesCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: SearchCasesCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchCasesCommandInput, SearchCasesCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
5
5
  import { SearchRelatedItemsRequest, SearchRelatedItemsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SearchRelatedItemsCommand}.
8
10
  */
9
11
  export interface SearchRelatedItemsCommandInput extends SearchRelatedItemsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SearchRelatedItemsCommand}.
13
17
  */
14
18
  export interface SearchRelatedItemsCommandOutput extends SearchRelatedItemsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Searches for related items that are associated with a case.</p>
18
23
  * <note>
19
24
  * <p>If no filters are provided, this returns all related items associated with a
@@ -29,6 +34,8 @@ export interface SearchRelatedItemsCommandOutput extends SearchRelatedItemsRespo
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param SearchRelatedItemsCommandInput - {@link SearchRelatedItemsCommandInput}
38
+ * @returns {@link SearchRelatedItemsCommandOutput}
32
39
  * @see {@link SearchRelatedItemsCommandInput} for command's `input` shape.
33
40
  * @see {@link SearchRelatedItemsCommandOutput} for command's `response` shape.
34
41
  * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
@@ -55,11 +62,20 @@ export interface SearchRelatedItemsCommandOutput extends SearchRelatedItemsRespo
55
62
  export declare class SearchRelatedItemsCommand extends $Command<SearchRelatedItemsCommandInput, SearchRelatedItemsCommandOutput, ConnectCasesClientResolvedConfig> {
56
63
  readonly input: SearchRelatedItemsCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: SearchRelatedItemsCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchRelatedItemsCommandInput, SearchRelatedItemsCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
5
5
  import { TagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds tags to 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 TagResourceCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
@@ -51,11 +58,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
51
58
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ConnectCasesClientResolvedConfig> {
52
59
  readonly input: TagResourceCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: TagResourceCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { UntagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Untags 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 UntagResourceCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
@@ -51,11 +58,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
51
58
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ConnectCasesClientResolvedConfig> {
52
59
  readonly input: UntagResourceCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: UntagResourceCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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 { UpdateCaseRequest, UpdateCaseResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateCaseCommand}.
8
10
  */
9
11
  export interface UpdateCaseCommandInput extends UpdateCaseRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateCaseCommand}.
13
17
  */
14
18
  export interface UpdateCaseCommandOutput extends UpdateCaseResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the values of fields on a case. Fields to be updated are received as an array of
18
23
  * id/value pairs identical to the <code>CreateCase</code> input .</p>
19
24
  * <p>If the action is successful, the service sends back an HTTP 200 response with an empty
@@ -28,6 +33,8 @@ export interface UpdateCaseCommandOutput extends UpdateCaseResponse, __MetadataB
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param UpdateCaseCommandInput - {@link UpdateCaseCommandInput}
37
+ * @returns {@link UpdateCaseCommandOutput}
31
38
  * @see {@link UpdateCaseCommandInput} for command's `input` shape.
32
39
  * @see {@link UpdateCaseCommandOutput} for command's `response` shape.
33
40
  * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
@@ -54,11 +61,20 @@ export interface UpdateCaseCommandOutput extends UpdateCaseResponse, __MetadataB
54
61
  export declare class UpdateCaseCommand extends $Command<UpdateCaseCommandInput, UpdateCaseCommandOutput, ConnectCasesClientResolvedConfig> {
55
62
  readonly input: UpdateCaseCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: UpdateCaseCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCaseCommandInput, UpdateCaseCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
5
5
  import { UpdateFieldRequest, UpdateFieldResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateFieldCommand}.
8
10
  */
9
11
  export interface UpdateFieldCommandInput extends UpdateFieldRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateFieldCommand}.
13
17
  */
14
18
  export interface UpdateFieldCommandOutput extends UpdateFieldResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the properties of an existing field. </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 UpdateFieldCommandOutput extends UpdateFieldResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateFieldCommandInput - {@link UpdateFieldCommandInput}
34
+ * @returns {@link UpdateFieldCommandOutput}
28
35
  * @see {@link UpdateFieldCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateFieldCommandOutput} for command's `response` shape.
30
37
  * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
@@ -56,11 +63,20 @@ export interface UpdateFieldCommandOutput extends UpdateFieldResponse, __Metadat
56
63
  export declare class UpdateFieldCommand extends $Command<UpdateFieldCommandInput, UpdateFieldCommandOutput, ConnectCasesClientResolvedConfig> {
57
64
  readonly input: UpdateFieldCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: UpdateFieldCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFieldCommandInput, UpdateFieldCommandOutput>;
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 { UpdateLayoutRequest, UpdateLayoutResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateLayoutCommand}.
8
10
  */
9
11
  export interface UpdateLayoutCommandInput extends UpdateLayoutRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateLayoutCommand}.
13
17
  */
14
18
  export interface UpdateLayoutCommandOutput extends UpdateLayoutResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the attributes of an existing layout.</p>
18
23
  * <p>If the action is successful, the service sends back an HTTP 200 response with an empty
19
24
  * HTTP body.</p>
@@ -33,6 +38,8 @@ export interface UpdateLayoutCommandOutput extends UpdateLayoutResponse, __Metad
33
38
  * const response = await client.send(command);
34
39
  * ```
35
40
  *
41
+ * @param UpdateLayoutCommandInput - {@link UpdateLayoutCommandInput}
42
+ * @returns {@link UpdateLayoutCommandOutput}
36
43
  * @see {@link UpdateLayoutCommandInput} for command's `input` shape.
37
44
  * @see {@link UpdateLayoutCommandOutput} for command's `response` shape.
38
45
  * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
@@ -68,11 +75,20 @@ export interface UpdateLayoutCommandOutput extends UpdateLayoutResponse, __Metad
68
75
  export declare class UpdateLayoutCommand extends $Command<UpdateLayoutCommandInput, UpdateLayoutCommandOutput, ConnectCasesClientResolvedConfig> {
69
76
  readonly input: UpdateLayoutCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: UpdateLayoutCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLayoutCommandInput, UpdateLayoutCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
5
5
  import { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateTemplateCommand}.
8
10
  */
9
11
  export interface UpdateTemplateCommandInput extends UpdateTemplateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateTemplateCommand}.
13
17
  */
14
18
  export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the attributes of an existing template. The template attributes that can be
18
23
  * modified include <code>name</code>, <code>description</code>,
19
24
  * <code>layoutConfiguration</code>, <code>requiredFields</code>, and <code>status</code>. At
@@ -29,6 +34,8 @@ export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __M
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param UpdateTemplateCommandInput - {@link UpdateTemplateCommandInput}
38
+ * @returns {@link UpdateTemplateCommandOutput}
32
39
  * @see {@link UpdateTemplateCommandInput} for command's `input` shape.
33
40
  * @see {@link UpdateTemplateCommandOutput} for command's `response` shape.
34
41
  * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
@@ -60,11 +67,20 @@ export interface UpdateTemplateCommandOutput extends UpdateTemplateResponse, __M
60
67
  export declare class UpdateTemplateCommand extends $Command<UpdateTemplateCommandInput, UpdateTemplateCommandOutput, ConnectCasesClientResolvedConfig> {
61
68
  readonly input: UpdateTemplateCommandInput;
62
69
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
+ /**
71
+ * @public
72
+ */
63
73
  constructor(input: UpdateTemplateCommandInput);
64
74
  /**
65
75
  * @internal
66
76
  */
67
77
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectCasesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateTemplateCommandInput, UpdateTemplateCommandOutput>;
78
+ /**
79
+ * @internal
80
+ */
68
81
  private serialize;
82
+ /**
83
+ * @internal
84
+ */
69
85
  private deserialize;
70
86
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from ConnectCases service.
4
6
  */
5
7
  export declare class ConnectCasesServiceException extends __ServiceException {