@aws-sdk/client-connectcases 3.840.0 → 3.842.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 (62) hide show
  1. package/README.md +17 -19
  2. package/dist-cjs/index.js +77 -0
  3. package/dist-es/ConnectCases.js +4 -0
  4. package/dist-es/commands/DeleteCaseCommand.js +22 -0
  5. package/dist-es/commands/DeleteRelatedItemCommand.js +22 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/protocols/Aws_restJson1.js +41 -0
  8. package/dist-types/ConnectCases.d.ts +15 -19
  9. package/dist-types/ConnectCasesClient.d.ts +5 -21
  10. package/dist-types/commands/BatchGetCaseRuleCommand.d.ts +3 -7
  11. package/dist-types/commands/BatchGetFieldCommand.d.ts +2 -4
  12. package/dist-types/commands/BatchPutFieldOptionsCommand.d.ts +4 -8
  13. package/dist-types/commands/CreateCaseCommand.d.ts +4 -27
  14. package/dist-types/commands/CreateCaseRuleCommand.d.ts +5 -12
  15. package/dist-types/commands/CreateDomainCommand.d.ts +4 -17
  16. package/dist-types/commands/CreateFieldCommand.d.ts +5 -11
  17. package/dist-types/commands/CreateLayoutCommand.d.ts +5 -23
  18. package/dist-types/commands/CreateRelatedItemCommand.d.ts +4 -26
  19. package/dist-types/commands/CreateTemplateCommand.d.ts +5 -38
  20. package/dist-types/commands/DeleteCaseCommand.d.ts +86 -0
  21. package/dist-types/commands/DeleteCaseRuleCommand.d.ts +4 -10
  22. package/dist-types/commands/DeleteDomainCommand.d.ts +4 -12
  23. package/dist-types/commands/DeleteFieldCommand.d.ts +5 -62
  24. package/dist-types/commands/DeleteLayoutCommand.d.ts +4 -22
  25. package/dist-types/commands/DeleteRelatedItemCommand.d.ts +87 -0
  26. package/dist-types/commands/DeleteTemplateCommand.d.ts +4 -23
  27. package/dist-types/commands/GetCaseAuditEventsCommand.d.ts +2 -4
  28. package/dist-types/commands/GetCaseCommand.d.ts +2 -4
  29. package/dist-types/commands/GetCaseEventConfigurationCommand.d.ts +2 -4
  30. package/dist-types/commands/GetDomainCommand.d.ts +2 -4
  31. package/dist-types/commands/GetLayoutCommand.d.ts +2 -4
  32. package/dist-types/commands/GetTemplateCommand.d.ts +3 -27
  33. package/dist-types/commands/ListCaseRulesCommand.d.ts +3 -7
  34. package/dist-types/commands/ListCasesForContactCommand.d.ts +2 -4
  35. package/dist-types/commands/ListDomainsCommand.d.ts +2 -4
  36. package/dist-types/commands/ListFieldOptionsCommand.d.ts +2 -4
  37. package/dist-types/commands/ListFieldsCommand.d.ts +2 -4
  38. package/dist-types/commands/ListLayoutsCommand.d.ts +3 -6
  39. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -4
  40. package/dist-types/commands/ListTemplatesCommand.d.ts +3 -29
  41. package/dist-types/commands/PutCaseEventConfigurationCommand.d.ts +4 -11
  42. package/dist-types/commands/SearchCasesCommand.d.ts +3 -11
  43. package/dist-types/commands/SearchRelatedItemsCommand.d.ts +3 -9
  44. package/dist-types/commands/TagResourceCommand.d.ts +2 -4
  45. package/dist-types/commands/UntagResourceCommand.d.ts +2 -4
  46. package/dist-types/commands/UpdateCaseCommand.d.ts +3 -11
  47. package/dist-types/commands/UpdateCaseRuleCommand.d.ts +4 -10
  48. package/dist-types/commands/UpdateFieldCommand.d.ts +3 -7
  49. package/dist-types/commands/UpdateLayoutCommand.d.ts +5 -18
  50. package/dist-types/commands/UpdateTemplateCommand.d.ts +4 -35
  51. package/dist-types/commands/index.d.ts +2 -0
  52. package/dist-types/index.d.ts +1 -19
  53. package/dist-types/models/models_0.d.ts +107 -159
  54. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  55. package/dist-types/ts3.4/ConnectCases.d.ts +34 -0
  56. package/dist-types/ts3.4/ConnectCasesClient.d.ts +12 -0
  57. package/dist-types/ts3.4/commands/DeleteCaseCommand.d.ts +47 -0
  58. package/dist-types/ts3.4/commands/DeleteRelatedItemCommand.d.ts +51 -0
  59. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +11 -0
  61. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  62. package/package.json +1 -1
@@ -0,0 +1,87 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient";
4
+ import { DeleteRelatedItemRequest, DeleteRelatedItemResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteRelatedItemCommand}.
14
+ */
15
+ export interface DeleteRelatedItemCommandInput extends DeleteRelatedItemRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteRelatedItemCommand}.
21
+ */
22
+ export interface DeleteRelatedItemCommandOutput extends DeleteRelatedItemResponse, __MetadataBearer {
23
+ }
24
+ declare const DeleteRelatedItemCommand_base: {
25
+ new (input: DeleteRelatedItemCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRelatedItemCommandInput, DeleteRelatedItemCommandOutput, ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteRelatedItemCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRelatedItemCommandInput, DeleteRelatedItemCommandOutput, ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes the related item resource under a case.</p> <note> <p>This API cannot be used on a FILE type related attachment. To delete this type of file, use the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteAttachedFile.html">DeleteAttachedFile</a> API</p> </note>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { ConnectCasesClient, DeleteRelatedItemCommand } from "@aws-sdk/client-connectcases"; // ES Modules import
35
+ * // const { ConnectCasesClient, DeleteRelatedItemCommand } = require("@aws-sdk/client-connectcases"); // CommonJS import
36
+ * const client = new ConnectCasesClient(config);
37
+ * const input = { // DeleteRelatedItemRequest
38
+ * domainId: "STRING_VALUE", // required
39
+ * caseId: "STRING_VALUE", // required
40
+ * relatedItemId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new DeleteRelatedItemCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param DeleteRelatedItemCommandInput - {@link DeleteRelatedItemCommandInput}
49
+ * @returns {@link DeleteRelatedItemCommandOutput}
50
+ * @see {@link DeleteRelatedItemCommandInput} for command's `input` shape.
51
+ * @see {@link DeleteRelatedItemCommandOutput} for command's `response` shape.
52
+ * @see {@link ConnectCasesClientResolvedConfig | config} for ConnectCasesClient's `config` shape.
53
+ *
54
+ * @throws {@link AccessDeniedException} (client fault)
55
+ * <p>You do not have sufficient access to perform this action.</p>
56
+ *
57
+ * @throws {@link InternalServerException} (server fault)
58
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
59
+ *
60
+ * @throws {@link ResourceNotFoundException} (client fault)
61
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
62
+ *
63
+ * @throws {@link ThrottlingException} (client fault)
64
+ * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
65
+ *
66
+ * @throws {@link ValidationException} (client fault)
67
+ * <p>The request isn't valid. Check the syntax and try again.</p>
68
+ *
69
+ * @throws {@link ConnectCasesServiceException}
70
+ * <p>Base exception class for all service exceptions from ConnectCases service.</p>
71
+ *
72
+ *
73
+ * @public
74
+ */
75
+ export declare class DeleteRelatedItemCommand extends DeleteRelatedItemCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: DeleteRelatedItemRequest;
80
+ output: {};
81
+ };
82
+ sdk: {
83
+ input: DeleteRelatedItemCommandInput;
84
+ output: DeleteRelatedItemCommandOutput;
85
+ };
86
+ };
87
+ }
@@ -27,22 +27,7 @@ declare const DeleteTemplateCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Deletes a cases template. You can delete up to 100 templates per domain.</p>
31
- * <p>After a cases template is deleted:</p>
32
- * <ul>
33
- * <li>
34
- * <p>You can still retrieve the template by calling <code>GetTemplate</code>.</p>
35
- * </li>
36
- * <li>
37
- * <p>You cannot update the template. </p>
38
- * </li>
39
- * <li>
40
- * <p>You cannot create a case by using the deleted template.</p>
41
- * </li>
42
- * <li>
43
- * <p>Deleted templates are not included in the <code>ListTemplates</code> response.</p>
44
- * </li>
45
- * </ul>
30
+ * <p>Deletes a cases template. You can delete up to 100 templates per domain.</p> <p>After a cases template is deleted:</p> <ul> <li> <p>You can still retrieve the template by calling <code>GetTemplate</code>.</p> </li> <li> <p>You cannot update the template. </p> </li> <li> <p>You cannot create a case by using the deleted template.</p> </li> <li> <p>Deleted templates are not included in the <code>ListTemplates</code> response.</p> </li> </ul>
46
31
  * @example
47
32
  * Use a bare-bones client and the command you need to make an API call.
48
33
  * ```javascript
@@ -69,17 +54,13 @@ declare const DeleteTemplateCommand_base: {
69
54
  * <p>You do not have sufficient access to perform this action.</p>
70
55
  *
71
56
  * @throws {@link ConflictException} (client fault)
72
- * <p>The requested operation would cause a conflict with the current state of a service
73
- * resource associated with the request. Resolve the conflict before retrying this request. See
74
- * the accompanying error message for details.</p>
57
+ * <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request. See the accompanying error message for details.</p>
75
58
  *
76
59
  * @throws {@link InternalServerException} (server fault)
77
- * <p>We couldn't process your request because of an issue with the server. Try again
78
- * later.</p>
60
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
79
61
  *
80
62
  * @throws {@link ResourceNotFoundException} (client fault)
81
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
82
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
63
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
83
64
  *
84
65
  * @throws {@link ThrottlingException} (client fault)
85
66
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -92,12 +92,10 @@ declare const GetCaseAuditEventsCommand_base: {
92
92
  * <p>You do not have sufficient access to perform this action.</p>
93
93
  *
94
94
  * @throws {@link InternalServerException} (server fault)
95
- * <p>We couldn't process your request because of an issue with the server. Try again
96
- * later.</p>
95
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
97
96
  *
98
97
  * @throws {@link ResourceNotFoundException} (client fault)
99
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
100
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
98
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
101
99
  *
102
100
  * @throws {@link ThrottlingException} (client fault)
103
101
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -78,12 +78,10 @@ declare const GetCaseCommand_base: {
78
78
  * <p>You do not have sufficient access to perform this action.</p>
79
79
  *
80
80
  * @throws {@link InternalServerException} (server fault)
81
- * <p>We couldn't process your request because of an issue with the server. Try again
82
- * later.</p>
81
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
83
82
  *
84
83
  * @throws {@link ResourceNotFoundException} (client fault)
85
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
86
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
84
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
87
85
  *
88
86
  * @throws {@link ThrottlingException} (client fault)
89
87
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -69,12 +69,10 @@ declare const GetCaseEventConfigurationCommand_base: {
69
69
  * <p>You do not have sufficient access to perform this action.</p>
70
70
  *
71
71
  * @throws {@link InternalServerException} (server fault)
72
- * <p>We couldn't process your request because of an issue with the server. Try again
73
- * later.</p>
72
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
74
73
  *
75
74
  * @throws {@link ResourceNotFoundException} (client fault)
76
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
77
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
75
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
78
76
  *
79
77
  * @throws {@link ThrottlingException} (client fault)
80
78
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -62,12 +62,10 @@ declare const GetDomainCommand_base: {
62
62
  * <p>You do not have sufficient access to perform this action.</p>
63
63
  *
64
64
  * @throws {@link InternalServerException} (server fault)
65
- * <p>We couldn't process your request because of an issue with the server. Try again
66
- * later.</p>
65
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
67
66
  *
68
67
  * @throws {@link ResourceNotFoundException} (client fault)
69
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
70
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
68
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
71
69
  *
72
70
  * @throws {@link ThrottlingException} (client fault)
73
71
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -96,12 +96,10 @@ declare const GetLayoutCommand_base: {
96
96
  * <p>You do not have sufficient access to perform this action.</p>
97
97
  *
98
98
  * @throws {@link InternalServerException} (server fault)
99
- * <p>We couldn't process your request because of an issue with the server. Try again
100
- * later.</p>
99
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
101
100
  *
102
101
  * @throws {@link ResourceNotFoundException} (client fault)
103
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
104
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
102
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
105
103
  *
106
104
  * @throws {@link ThrottlingException} (client fault)
107
105
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -27,29 +27,7 @@ declare const GetTemplateCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Returns the details for the requested template. Other template APIs are: </p>
31
- * <ul>
32
- * <li>
33
- * <p>
34
- * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateTemplate.html">CreateTemplate</a>
35
- * </p>
36
- * </li>
37
- * <li>
38
- * <p>
39
- * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_DeleteTemplate.html">DeleteTemplate</a>
40
- * </p>
41
- * </li>
42
- * <li>
43
- * <p>
44
- * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_ListTemplates.html">ListTemplates</a>
45
- * </p>
46
- * </li>
47
- * <li>
48
- * <p>
49
- * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_UpdateTemplate.html">UpdateTemplate</a>
50
- * </p>
51
- * </li>
52
- * </ul>
30
+ * <p>Returns the details for the requested template. Other template APIs are: </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateTemplate.html">CreateTemplate</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_DeleteTemplate.html">DeleteTemplate</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_ListTemplates.html">ListTemplates</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_UpdateTemplate.html">UpdateTemplate</a> </p> </li> </ul>
53
31
  * @example
54
32
  * Use a bare-bones client and the command you need to make an API call.
55
33
  * ```javascript
@@ -102,12 +80,10 @@ declare const GetTemplateCommand_base: {
102
80
  * <p>You do not have sufficient access to perform this action.</p>
103
81
  *
104
82
  * @throws {@link InternalServerException} (server fault)
105
- * <p>We couldn't process your request because of an issue with the server. Try again
106
- * later.</p>
83
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
107
84
  *
108
85
  * @throws {@link ResourceNotFoundException} (client fault)
109
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
110
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
86
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
111
87
  *
112
88
  * @throws {@link ThrottlingException} (client fault)
113
89
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -27,9 +27,7 @@ declare const ListCaseRulesCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Lists all case rules in a Cases domain. In the Amazon Connect admin website, case rules are known as <i>case field conditions</i>. For more
31
- * information about case field conditions, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html">Add case field conditions to a
32
- * case template</a>.</p>
30
+ * <p>Lists all case rules in a Cases domain. In the Amazon Connect admin website, case rules are known as <i>case field conditions</i>. For more information about case field conditions, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html">Add case field conditions to a case template</a>.</p>
33
31
  * @example
34
32
  * Use a bare-bones client and the command you need to make an API call.
35
33
  * ```javascript
@@ -68,12 +66,10 @@ declare const ListCaseRulesCommand_base: {
68
66
  * <p>You do not have sufficient access to perform this action.</p>
69
67
  *
70
68
  * @throws {@link InternalServerException} (server fault)
71
- * <p>We couldn't process your request because of an issue with the server. Try again
72
- * later.</p>
69
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
73
70
  *
74
71
  * @throws {@link ResourceNotFoundException} (client fault)
75
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
76
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
72
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
77
73
  *
78
74
  * @throws {@link ThrottlingException} (client fault)
79
75
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -64,12 +64,10 @@ declare const ListCasesForContactCommand_base: {
64
64
  * <p>You do not have sufficient access to perform this action.</p>
65
65
  *
66
66
  * @throws {@link InternalServerException} (server fault)
67
- * <p>We couldn't process your request because of an issue with the server. Try again
68
- * later.</p>
67
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
69
68
  *
70
69
  * @throws {@link ResourceNotFoundException} (client fault)
71
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
72
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
70
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
73
71
  *
74
72
  * @throws {@link ThrottlingException} (client fault)
75
73
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -27,8 +27,7 @@ declare const ListDomainsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Lists all cases domains in the Amazon Web Services account. Each list item is a condensed
31
- * summary object of the domain.</p>
30
+ * <p>Lists all cases domains in the Amazon Web Services account. Each list item is a condensed summary object of the domain.</p>
32
31
  * @example
33
32
  * Use a bare-bones client and the command you need to make an API call.
34
33
  * ```javascript
@@ -64,8 +63,7 @@ declare const ListDomainsCommand_base: {
64
63
  * <p>You do not have sufficient access to perform this action.</p>
65
64
  *
66
65
  * @throws {@link InternalServerException} (server fault)
67
- * <p>We couldn't process your request because of an issue with the server. Try again
68
- * later.</p>
66
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
69
67
  *
70
68
  * @throws {@link ThrottlingException} (client fault)
71
69
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -68,12 +68,10 @@ declare const ListFieldOptionsCommand_base: {
68
68
  * <p>You do not have sufficient access to perform this action.</p>
69
69
  *
70
70
  * @throws {@link InternalServerException} (server fault)
71
- * <p>We couldn't process your request because of an issue with the server. Try again
72
- * later.</p>
71
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
73
72
  *
74
73
  * @throws {@link ResourceNotFoundException} (client fault)
75
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
76
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
74
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
77
75
  *
78
76
  * @throws {@link ThrottlingException} (client fault)
79
77
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -66,12 +66,10 @@ declare const ListFieldsCommand_base: {
66
66
  * <p>You do not have sufficient access to perform this action.</p>
67
67
  *
68
68
  * @throws {@link InternalServerException} (server fault)
69
- * <p>We couldn't process your request because of an issue with the server. Try again
70
- * later.</p>
69
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
71
70
  *
72
71
  * @throws {@link ResourceNotFoundException} (client fault)
73
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
74
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
72
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
75
73
  *
76
74
  * @throws {@link ThrottlingException} (client fault)
77
75
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -27,8 +27,7 @@ declare const ListLayoutsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Lists all layouts in the given cases domain. Each list item is a condensed summary object
31
- * of the layout.</p>
30
+ * <p>Lists all layouts in the given cases domain. Each list item is a condensed summary object of the layout.</p>
32
31
  * @example
33
32
  * Use a bare-bones client and the command you need to make an API call.
34
33
  * ```javascript
@@ -65,12 +64,10 @@ declare const ListLayoutsCommand_base: {
65
64
  * <p>You do not have sufficient access to perform this action.</p>
66
65
  *
67
66
  * @throws {@link InternalServerException} (server fault)
68
- * <p>We couldn't process your request because of an issue with the server. Try again
69
- * later.</p>
67
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
70
68
  *
71
69
  * @throws {@link ResourceNotFoundException} (client fault)
72
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
73
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
70
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
74
71
  *
75
72
  * @throws {@link ThrottlingException} (client fault)
76
73
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -57,12 +57,10 @@ declare const ListTagsForResourceCommand_base: {
57
57
  * <p>You do not have sufficient access to perform this action.</p>
58
58
  *
59
59
  * @throws {@link InternalServerException} (server fault)
60
- * <p>We couldn't process your request because of an issue with the server. Try again
61
- * later.</p>
60
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
62
61
  *
63
62
  * @throws {@link ResourceNotFoundException} (client fault)
64
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
65
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
63
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
66
64
  *
67
65
  * @throws {@link ThrottlingException} (client fault)
68
66
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -27,31 +27,7 @@ declare const ListTemplatesCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Lists all of the templates in a Cases domain. Each list item is a condensed summary
31
- * object of the template. </p>
32
- * <p> Other template APIs are: </p>
33
- * <ul>
34
- * <li>
35
- * <p>
36
- * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateTemplate.html">CreateTemplate</a>
37
- * </p>
38
- * </li>
39
- * <li>
40
- * <p>
41
- * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_DeleteTemplate.html">DeleteTemplate</a>
42
- * </p>
43
- * </li>
44
- * <li>
45
- * <p>
46
- * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_GetTemplate.html">GetTemplate</a>
47
- * </p>
48
- * </li>
49
- * <li>
50
- * <p>
51
- * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_UpdateTemplate.html">UpdateTemplate</a>
52
- * </p>
53
- * </li>
54
- * </ul>
30
+ * <p>Lists all of the templates in a Cases domain. Each list item is a condensed summary object of the template. </p> <p> Other template APIs are: </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateTemplate.html">CreateTemplate</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_DeleteTemplate.html">DeleteTemplate</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_GetTemplate.html">GetTemplate</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_UpdateTemplate.html">UpdateTemplate</a> </p> </li> </ul>
55
31
  * @example
56
32
  * Use a bare-bones client and the command you need to make an API call.
57
33
  * ```javascript
@@ -92,12 +68,10 @@ declare const ListTemplatesCommand_base: {
92
68
  * <p>You do not have sufficient access to perform this action.</p>
93
69
  *
94
70
  * @throws {@link InternalServerException} (server fault)
95
- * <p>We couldn't process your request because of an issue with the server. Try again
96
- * later.</p>
71
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
97
72
  *
98
73
  * @throws {@link ResourceNotFoundException} (client fault)
99
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
100
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
74
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
101
75
  *
102
76
  * @throws {@link ThrottlingException} (client fault)
103
77
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -27,10 +27,7 @@ declare const PutCaseEventConfigurationCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Adds case event publishing configuration. For a complete list of fields you can add to the
31
- * event message, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/case-fields.html">Create case fields</a> in the
32
- * <i>Amazon Connect Administrator Guide</i>
33
- * </p>
30
+ * <p>Adds case event publishing configuration. For a complete list of fields you can add to the event message, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/case-fields.html">Create case fields</a> in the <i>Amazon Connect Administrator Guide</i> </p>
34
31
  * @example
35
32
  * Use a bare-bones client and the command you need to make an API call.
36
33
  * ```javascript
@@ -71,17 +68,13 @@ declare const PutCaseEventConfigurationCommand_base: {
71
68
  * <p>You do not have sufficient access to perform this action.</p>
72
69
  *
73
70
  * @throws {@link ConflictException} (client fault)
74
- * <p>The requested operation would cause a conflict with the current state of a service
75
- * resource associated with the request. Resolve the conflict before retrying this request. See
76
- * the accompanying error message for details.</p>
71
+ * <p>The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request. See the accompanying error message for details.</p>
77
72
  *
78
73
  * @throws {@link InternalServerException} (server fault)
79
- * <p>We couldn't process your request because of an issue with the server. Try again
80
- * later.</p>
74
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
81
75
  *
82
76
  * @throws {@link ResourceNotFoundException} (client fault)
83
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
84
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
77
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
85
78
  *
86
79
  * @throws {@link ThrottlingException} (client fault)
87
80
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -27,13 +27,7 @@ declare const SearchCasesCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Searches for cases within their associated Cases domain. Search results are returned
31
- * as a paginated list of abridged case documents.</p>
32
- * <note>
33
- * <p>For <code>customer_id</code> you must provide the full customer profile ARN in this
34
- * format: <code> arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain
35
- * name/profiles/profile ID</code>. </p>
36
- * </note>
30
+ * <p>Searches for cases within their associated Cases domain. Search results are returned as a paginated list of abridged case documents.</p> <note> <p>For <code>customer_id</code> you must provide the full customer profile ARN in this format: <code> arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain name/profiles/profile ID</code>. </p> </note>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -174,12 +168,10 @@ declare const SearchCasesCommand_base: {
174
168
  * <p>You do not have sufficient access to perform this action.</p>
175
169
  *
176
170
  * @throws {@link InternalServerException} (server fault)
177
- * <p>We couldn't process your request because of an issue with the server. Try again
178
- * later.</p>
171
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
179
172
  *
180
173
  * @throws {@link ResourceNotFoundException} (client fault)
181
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
182
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
174
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
183
175
  *
184
176
  * @throws {@link ThrottlingException} (client fault)
185
177
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -27,11 +27,7 @@ declare const SearchRelatedItemsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Searches for related items that are associated with a case.</p>
31
- * <note>
32
- * <p>If no filters are provided, this returns all related items associated with a
33
- * case.</p>
34
- * </note>
30
+ * <p>Searches for related items that are associated with a case.</p> <note> <p>If no filters are provided, this returns all related items associated with a case.</p> </note>
35
31
  * @example
36
32
  * Use a bare-bones client and the command you need to make an API call.
37
33
  * ```javascript
@@ -127,12 +123,10 @@ declare const SearchRelatedItemsCommand_base: {
127
123
  * <p>You do not have sufficient access to perform this action.</p>
128
124
  *
129
125
  * @throws {@link InternalServerException} (server fault)
130
- * <p>We couldn't process your request because of an issue with the server. Try again
131
- * later.</p>
126
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
132
127
  *
133
128
  * @throws {@link ResourceNotFoundException} (client fault)
134
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
135
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
129
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
136
130
  *
137
131
  * @throws {@link ThrottlingException} (client fault)
138
132
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -56,12 +56,10 @@ declare const TagResourceCommand_base: {
56
56
  * <p>You do not have sufficient access to perform this action.</p>
57
57
  *
58
58
  * @throws {@link InternalServerException} (server fault)
59
- * <p>We couldn't process your request because of an issue with the server. Try again
60
- * later.</p>
59
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
61
60
  *
62
61
  * @throws {@link ResourceNotFoundException} (client fault)
63
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
64
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
62
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
65
63
  *
66
64
  * @throws {@link ThrottlingException} (client fault)
67
65
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -56,12 +56,10 @@ declare const UntagResourceCommand_base: {
56
56
  * <p>You do not have sufficient access to perform this action.</p>
57
57
  *
58
58
  * @throws {@link InternalServerException} (server fault)
59
- * <p>We couldn't process your request because of an issue with the server. Try again
60
- * later.</p>
59
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
61
60
  *
62
61
  * @throws {@link ResourceNotFoundException} (client fault)
63
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
64
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
62
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
65
63
  *
66
64
  * @throws {@link ThrottlingException} (client fault)
67
65
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>
@@ -27,13 +27,7 @@ declare const UpdateCaseCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <note>
31
- * <p>If you provide a value for <code>PerformedBy.UserArn</code> you must also have <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribeUser.html">connect:DescribeUser</a> permission on the User ARN resource that you provide</p>
32
- * </note>
33
- * <p>Updates the values of fields on a case. Fields to be updated are received as an array of
34
- * id/value pairs identical to the <code>CreateCase</code> input .</p>
35
- * <p>If the action is successful, the service sends back an HTTP 200 response with an empty
36
- * HTTP body.</p>
30
+ * <note> <p>If you provide a value for <code>PerformedBy.UserArn</code> you must also have <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribeUser.html">connect:DescribeUser</a> permission on the User ARN resource that you provide</p> </note> <p>Updates the values of fields on a case. Fields to be updated are received as an array of id/value pairs identical to the <code>CreateCase</code> input .</p> <p>If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body.</p>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -76,12 +70,10 @@ declare const UpdateCaseCommand_base: {
76
70
  * <p>You do not have sufficient access to perform this action.</p>
77
71
  *
78
72
  * @throws {@link InternalServerException} (server fault)
79
- * <p>We couldn't process your request because of an issue with the server. Try again
80
- * later.</p>
73
+ * <p>We couldn't process your request because of an issue with the server. Try again later.</p>
81
74
  *
82
75
  * @throws {@link ResourceNotFoundException} (client fault)
83
- * <p>We couldn't find the requested resource. Check that your resources exists and were created
84
- * in the same Amazon Web Services Region as your request, and try your request again.</p>
76
+ * <p>We couldn't find the requested resource. Check that your resources exists and were created in the same Amazon Web Services Region as your request, and try your request again.</p>
85
77
  *
86
78
  * @throws {@link ThrottlingException} (client fault)
87
79
  * <p>The rate has been exceeded for this API. Please try again after a few minutes.</p>