types-boto3-connectcases 1.40.63__py3-none-any.whl → 1.41.0__py3-none-any.whl
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.
- types_boto3_connectcases/__main__.py +4 -4
- types_boto3_connectcases/client.py +22 -27
- types_boto3_connectcases/client.pyi +22 -27
- types_boto3_connectcases/literals.py +4 -1
- types_boto3_connectcases/literals.pyi +4 -1
- types_boto3_connectcases/type_defs.py +90 -49
- types_boto3_connectcases/type_defs.pyi +83 -49
- types_boto3_connectcases/version.py +1 -1
- {types_boto3_connectcases-1.40.63.dist-info → types_boto3_connectcases-1.41.0.dist-info}/METADATA +11 -25
- types_boto3_connectcases-1.41.0.dist-info/RECORD +18 -0
- types_boto3_connectcases-1.40.63.dist-info/RECORD +0 -18
- {types_boto3_connectcases-1.40.63.dist-info → types_boto3_connectcases-1.41.0.dist-info}/WHEEL +0 -0
- {types_boto3_connectcases-1.40.63.dist-info → types_boto3_connectcases-1.41.0.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_connectcases-1.40.63.dist-info → types_boto3_connectcases-1.41.0.dist-info}/top_level.txt +0 -0
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 ConnectCases 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 ConnectCases 1.41.0\n"
|
|
16
|
+
"Version: 1.41.0\n"
|
|
17
|
+
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_connectcases//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#connectcases\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.41.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -104,12 +105,6 @@ from .type_defs import (
|
|
|
104
105
|
UpdateTemplateRequestTypeDef,
|
|
105
106
|
)
|
|
106
107
|
|
|
107
|
-
if sys.version_info >= (3, 9):
|
|
108
|
-
from builtins import dict as Dict
|
|
109
|
-
from builtins import type as Type
|
|
110
|
-
from collections.abc import Mapping
|
|
111
|
-
else:
|
|
112
|
-
from typing import Dict, Mapping, Type
|
|
113
108
|
if sys.version_info >= (3, 12):
|
|
114
109
|
from typing import Literal, Unpack
|
|
115
110
|
else:
|
|
@@ -120,14 +115,14 @@ __all__ = ("ConnectCasesClient",)
|
|
|
120
115
|
|
|
121
116
|
|
|
122
117
|
class Exceptions(BaseClientExceptions):
|
|
123
|
-
AccessDeniedException:
|
|
124
|
-
ClientError:
|
|
125
|
-
ConflictException:
|
|
126
|
-
InternalServerException:
|
|
127
|
-
ResourceNotFoundException:
|
|
128
|
-
ServiceQuotaExceededException:
|
|
129
|
-
ThrottlingException:
|
|
130
|
-
ValidationException:
|
|
118
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
119
|
+
ClientError: type[BotocoreClientError]
|
|
120
|
+
ConflictException: type[BotocoreClientError]
|
|
121
|
+
InternalServerException: type[BotocoreClientError]
|
|
122
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
123
|
+
ServiceQuotaExceededException: type[BotocoreClientError]
|
|
124
|
+
ThrottlingException: type[BotocoreClientError]
|
|
125
|
+
ValidationException: type[BotocoreClientError]
|
|
131
126
|
|
|
132
127
|
|
|
133
128
|
class ConnectCasesClient(BaseClient):
|
|
@@ -269,7 +264,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
269
264
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#create_template)
|
|
270
265
|
"""
|
|
271
266
|
|
|
272
|
-
def delete_case(self, **kwargs: Unpack[DeleteCaseRequestTypeDef]) ->
|
|
267
|
+
def delete_case(self, **kwargs: Unpack[DeleteCaseRequestTypeDef]) -> dict[str, Any]:
|
|
273
268
|
"""
|
|
274
269
|
The DeleteCase API permanently deletes a case and all its associated resources
|
|
275
270
|
from the cases data store.
|
|
@@ -278,7 +273,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
278
273
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#delete_case)
|
|
279
274
|
"""
|
|
280
275
|
|
|
281
|
-
def delete_case_rule(self, **kwargs: Unpack[DeleteCaseRuleRequestTypeDef]) ->
|
|
276
|
+
def delete_case_rule(self, **kwargs: Unpack[DeleteCaseRuleRequestTypeDef]) -> dict[str, Any]:
|
|
282
277
|
"""
|
|
283
278
|
Deletes a case rule.
|
|
284
279
|
|
|
@@ -286,7 +281,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
286
281
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#delete_case_rule)
|
|
287
282
|
"""
|
|
288
283
|
|
|
289
|
-
def delete_domain(self, **kwargs: Unpack[DeleteDomainRequestTypeDef]) ->
|
|
284
|
+
def delete_domain(self, **kwargs: Unpack[DeleteDomainRequestTypeDef]) -> dict[str, Any]:
|
|
290
285
|
"""
|
|
291
286
|
Deletes a Cases domain.
|
|
292
287
|
|
|
@@ -294,7 +289,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
294
289
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#delete_domain)
|
|
295
290
|
"""
|
|
296
291
|
|
|
297
|
-
def delete_field(self, **kwargs: Unpack[DeleteFieldRequestTypeDef]) ->
|
|
292
|
+
def delete_field(self, **kwargs: Unpack[DeleteFieldRequestTypeDef]) -> dict[str, Any]:
|
|
298
293
|
"""
|
|
299
294
|
Deletes a field from a cases template.
|
|
300
295
|
|
|
@@ -302,7 +297,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
302
297
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#delete_field)
|
|
303
298
|
"""
|
|
304
299
|
|
|
305
|
-
def delete_layout(self, **kwargs: Unpack[DeleteLayoutRequestTypeDef]) ->
|
|
300
|
+
def delete_layout(self, **kwargs: Unpack[DeleteLayoutRequestTypeDef]) -> dict[str, Any]:
|
|
306
301
|
"""
|
|
307
302
|
Deletes a layout from a cases template.
|
|
308
303
|
|
|
@@ -312,7 +307,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
312
307
|
|
|
313
308
|
def delete_related_item(
|
|
314
309
|
self, **kwargs: Unpack[DeleteRelatedItemRequestTypeDef]
|
|
315
|
-
) ->
|
|
310
|
+
) -> dict[str, Any]:
|
|
316
311
|
"""
|
|
317
312
|
Deletes the related item resource under a case.
|
|
318
313
|
|
|
@@ -320,7 +315,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
320
315
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#delete_related_item)
|
|
321
316
|
"""
|
|
322
317
|
|
|
323
|
-
def delete_template(self, **kwargs: Unpack[DeleteTemplateRequestTypeDef]) ->
|
|
318
|
+
def delete_template(self, **kwargs: Unpack[DeleteTemplateRequestTypeDef]) -> dict[str, Any]:
|
|
324
319
|
"""
|
|
325
320
|
Deletes a cases template.
|
|
326
321
|
|
|
@@ -462,7 +457,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
462
457
|
|
|
463
458
|
def put_case_event_configuration(
|
|
464
459
|
self, **kwargs: Unpack[PutCaseEventConfigurationRequestTypeDef]
|
|
465
|
-
) ->
|
|
460
|
+
) -> dict[str, Any]:
|
|
466
461
|
"""
|
|
467
462
|
Adds case event publishing configuration.
|
|
468
463
|
|
|
@@ -520,7 +515,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
520
515
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#untag_resource)
|
|
521
516
|
"""
|
|
522
517
|
|
|
523
|
-
def update_case(self, **kwargs: Unpack[UpdateCaseRequestTypeDef]) ->
|
|
518
|
+
def update_case(self, **kwargs: Unpack[UpdateCaseRequestTypeDef]) -> dict[str, Any]:
|
|
524
519
|
"""
|
|
525
520
|
<note> <p>If you provide a value for <code>PerformedBy.UserArn</code> you must
|
|
526
521
|
also have <a
|
|
@@ -531,7 +526,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
531
526
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#update_case)
|
|
532
527
|
"""
|
|
533
528
|
|
|
534
|
-
def update_case_rule(self, **kwargs: Unpack[UpdateCaseRuleRequestTypeDef]) ->
|
|
529
|
+
def update_case_rule(self, **kwargs: Unpack[UpdateCaseRuleRequestTypeDef]) -> dict[str, Any]:
|
|
535
530
|
"""
|
|
536
531
|
Updates a case rule.
|
|
537
532
|
|
|
@@ -539,7 +534,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
539
534
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#update_case_rule)
|
|
540
535
|
"""
|
|
541
536
|
|
|
542
|
-
def update_field(self, **kwargs: Unpack[UpdateFieldRequestTypeDef]) ->
|
|
537
|
+
def update_field(self, **kwargs: Unpack[UpdateFieldRequestTypeDef]) -> dict[str, Any]:
|
|
543
538
|
"""
|
|
544
539
|
Updates the properties of an existing field.
|
|
545
540
|
|
|
@@ -547,7 +542,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
547
542
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#update_field)
|
|
548
543
|
"""
|
|
549
544
|
|
|
550
|
-
def update_layout(self, **kwargs: Unpack[UpdateLayoutRequestTypeDef]) ->
|
|
545
|
+
def update_layout(self, **kwargs: Unpack[UpdateLayoutRequestTypeDef]) -> dict[str, Any]:
|
|
551
546
|
"""
|
|
552
547
|
Updates the attributes of an existing layout.
|
|
553
548
|
|
|
@@ -555,7 +550,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
555
550
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#update_layout)
|
|
556
551
|
"""
|
|
557
552
|
|
|
558
|
-
def update_template(self, **kwargs: Unpack[UpdateTemplateRequestTypeDef]) ->
|
|
553
|
+
def update_template(self, **kwargs: Unpack[UpdateTemplateRequestTypeDef]) -> dict[str, Any]:
|
|
559
554
|
"""
|
|
560
555
|
Updates the attributes of an existing template.
|
|
561
556
|
|
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
22
23
|
from typing import Any, overload
|
|
23
24
|
|
|
24
25
|
from botocore.client import BaseClient, ClientMeta
|
|
@@ -104,12 +105,6 @@ from .type_defs import (
|
|
|
104
105
|
UpdateTemplateRequestTypeDef,
|
|
105
106
|
)
|
|
106
107
|
|
|
107
|
-
if sys.version_info >= (3, 9):
|
|
108
|
-
from builtins import dict as Dict
|
|
109
|
-
from builtins import type as Type
|
|
110
|
-
from collections.abc import Mapping
|
|
111
|
-
else:
|
|
112
|
-
from typing import Dict, Mapping, Type
|
|
113
108
|
if sys.version_info >= (3, 12):
|
|
114
109
|
from typing import Literal, Unpack
|
|
115
110
|
else:
|
|
@@ -118,14 +113,14 @@ else:
|
|
|
118
113
|
__all__ = ("ConnectCasesClient",)
|
|
119
114
|
|
|
120
115
|
class Exceptions(BaseClientExceptions):
|
|
121
|
-
AccessDeniedException:
|
|
122
|
-
ClientError:
|
|
123
|
-
ConflictException:
|
|
124
|
-
InternalServerException:
|
|
125
|
-
ResourceNotFoundException:
|
|
126
|
-
ServiceQuotaExceededException:
|
|
127
|
-
ThrottlingException:
|
|
128
|
-
ValidationException:
|
|
116
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
117
|
+
ClientError: type[BotocoreClientError]
|
|
118
|
+
ConflictException: type[BotocoreClientError]
|
|
119
|
+
InternalServerException: type[BotocoreClientError]
|
|
120
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
121
|
+
ServiceQuotaExceededException: type[BotocoreClientError]
|
|
122
|
+
ThrottlingException: type[BotocoreClientError]
|
|
123
|
+
ValidationException: type[BotocoreClientError]
|
|
129
124
|
|
|
130
125
|
class ConnectCasesClient(BaseClient):
|
|
131
126
|
"""
|
|
@@ -266,7 +261,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
266
261
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#create_template)
|
|
267
262
|
"""
|
|
268
263
|
|
|
269
|
-
def delete_case(self, **kwargs: Unpack[DeleteCaseRequestTypeDef]) ->
|
|
264
|
+
def delete_case(self, **kwargs: Unpack[DeleteCaseRequestTypeDef]) -> dict[str, Any]:
|
|
270
265
|
"""
|
|
271
266
|
The DeleteCase API permanently deletes a case and all its associated resources
|
|
272
267
|
from the cases data store.
|
|
@@ -275,7 +270,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
275
270
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#delete_case)
|
|
276
271
|
"""
|
|
277
272
|
|
|
278
|
-
def delete_case_rule(self, **kwargs: Unpack[DeleteCaseRuleRequestTypeDef]) ->
|
|
273
|
+
def delete_case_rule(self, **kwargs: Unpack[DeleteCaseRuleRequestTypeDef]) -> dict[str, Any]:
|
|
279
274
|
"""
|
|
280
275
|
Deletes a case rule.
|
|
281
276
|
|
|
@@ -283,7 +278,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
283
278
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#delete_case_rule)
|
|
284
279
|
"""
|
|
285
280
|
|
|
286
|
-
def delete_domain(self, **kwargs: Unpack[DeleteDomainRequestTypeDef]) ->
|
|
281
|
+
def delete_domain(self, **kwargs: Unpack[DeleteDomainRequestTypeDef]) -> dict[str, Any]:
|
|
287
282
|
"""
|
|
288
283
|
Deletes a Cases domain.
|
|
289
284
|
|
|
@@ -291,7 +286,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
291
286
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#delete_domain)
|
|
292
287
|
"""
|
|
293
288
|
|
|
294
|
-
def delete_field(self, **kwargs: Unpack[DeleteFieldRequestTypeDef]) ->
|
|
289
|
+
def delete_field(self, **kwargs: Unpack[DeleteFieldRequestTypeDef]) -> dict[str, Any]:
|
|
295
290
|
"""
|
|
296
291
|
Deletes a field from a cases template.
|
|
297
292
|
|
|
@@ -299,7 +294,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
299
294
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#delete_field)
|
|
300
295
|
"""
|
|
301
296
|
|
|
302
|
-
def delete_layout(self, **kwargs: Unpack[DeleteLayoutRequestTypeDef]) ->
|
|
297
|
+
def delete_layout(self, **kwargs: Unpack[DeleteLayoutRequestTypeDef]) -> dict[str, Any]:
|
|
303
298
|
"""
|
|
304
299
|
Deletes a layout from a cases template.
|
|
305
300
|
|
|
@@ -309,7 +304,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
309
304
|
|
|
310
305
|
def delete_related_item(
|
|
311
306
|
self, **kwargs: Unpack[DeleteRelatedItemRequestTypeDef]
|
|
312
|
-
) ->
|
|
307
|
+
) -> dict[str, Any]:
|
|
313
308
|
"""
|
|
314
309
|
Deletes the related item resource under a case.
|
|
315
310
|
|
|
@@ -317,7 +312,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
317
312
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#delete_related_item)
|
|
318
313
|
"""
|
|
319
314
|
|
|
320
|
-
def delete_template(self, **kwargs: Unpack[DeleteTemplateRequestTypeDef]) ->
|
|
315
|
+
def delete_template(self, **kwargs: Unpack[DeleteTemplateRequestTypeDef]) -> dict[str, Any]:
|
|
321
316
|
"""
|
|
322
317
|
Deletes a cases template.
|
|
323
318
|
|
|
@@ -459,7 +454,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
459
454
|
|
|
460
455
|
def put_case_event_configuration(
|
|
461
456
|
self, **kwargs: Unpack[PutCaseEventConfigurationRequestTypeDef]
|
|
462
|
-
) ->
|
|
457
|
+
) -> dict[str, Any]:
|
|
463
458
|
"""
|
|
464
459
|
Adds case event publishing configuration.
|
|
465
460
|
|
|
@@ -517,7 +512,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
517
512
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#untag_resource)
|
|
518
513
|
"""
|
|
519
514
|
|
|
520
|
-
def update_case(self, **kwargs: Unpack[UpdateCaseRequestTypeDef]) ->
|
|
515
|
+
def update_case(self, **kwargs: Unpack[UpdateCaseRequestTypeDef]) -> dict[str, Any]:
|
|
521
516
|
"""
|
|
522
517
|
<note> <p>If you provide a value for <code>PerformedBy.UserArn</code> you must
|
|
523
518
|
also have <a
|
|
@@ -528,7 +523,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
528
523
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#update_case)
|
|
529
524
|
"""
|
|
530
525
|
|
|
531
|
-
def update_case_rule(self, **kwargs: Unpack[UpdateCaseRuleRequestTypeDef]) ->
|
|
526
|
+
def update_case_rule(self, **kwargs: Unpack[UpdateCaseRuleRequestTypeDef]) -> dict[str, Any]:
|
|
532
527
|
"""
|
|
533
528
|
Updates a case rule.
|
|
534
529
|
|
|
@@ -536,7 +531,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
536
531
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#update_case_rule)
|
|
537
532
|
"""
|
|
538
533
|
|
|
539
|
-
def update_field(self, **kwargs: Unpack[UpdateFieldRequestTypeDef]) ->
|
|
534
|
+
def update_field(self, **kwargs: Unpack[UpdateFieldRequestTypeDef]) -> dict[str, Any]:
|
|
540
535
|
"""
|
|
541
536
|
Updates the properties of an existing field.
|
|
542
537
|
|
|
@@ -544,7 +539,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
544
539
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#update_field)
|
|
545
540
|
"""
|
|
546
541
|
|
|
547
|
-
def update_layout(self, **kwargs: Unpack[UpdateLayoutRequestTypeDef]) ->
|
|
542
|
+
def update_layout(self, **kwargs: Unpack[UpdateLayoutRequestTypeDef]) -> dict[str, Any]:
|
|
548
543
|
"""
|
|
549
544
|
Updates the attributes of an existing layout.
|
|
550
545
|
|
|
@@ -552,7 +547,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
552
547
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#update_layout)
|
|
553
548
|
"""
|
|
554
549
|
|
|
555
|
-
def update_template(self, **kwargs: Unpack[UpdateTemplateRequestTypeDef]) ->
|
|
550
|
+
def update_template(self, **kwargs: Unpack[UpdateTemplateRequestTypeDef]) -> dict[str, Any]:
|
|
556
551
|
"""
|
|
557
552
|
Updates the attributes of an existing template.
|
|
558
553
|
|
|
@@ -55,7 +55,7 @@ FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text",
|
|
|
55
55
|
ListCaseRulesPaginatorName = Literal["list_case_rules"]
|
|
56
56
|
OrderType = Literal["Asc", "Desc"]
|
|
57
57
|
RelatedItemTypeType = Literal["Comment", "ConnectCase", "Contact", "Custom", "File", "Sla"]
|
|
58
|
-
RuleTypeType = Literal["Required"]
|
|
58
|
+
RuleTypeType = Literal["FieldOptions", "Hidden", "Required"]
|
|
59
59
|
SearchAllRelatedItemsPaginatorName = Literal["search_all_related_items"]
|
|
60
60
|
SearchAllRelatedItemsSortPropertyType = Literal["AssociationTime", "CaseId"]
|
|
61
61
|
SearchCasesPaginatorName = Literal["search_cases"]
|
|
@@ -329,6 +329,7 @@ ServiceName = Literal[
|
|
|
329
329
|
"mq",
|
|
330
330
|
"mturk",
|
|
331
331
|
"mwaa",
|
|
332
|
+
"mwaa-serverless",
|
|
332
333
|
"neptune",
|
|
333
334
|
"neptune-graph",
|
|
334
335
|
"neptunedata",
|
|
@@ -348,6 +349,7 @@ ServiceName = Literal[
|
|
|
348
349
|
"osis",
|
|
349
350
|
"outposts",
|
|
350
351
|
"panorama",
|
|
352
|
+
"partnercentral-channel",
|
|
351
353
|
"partnercentral-selling",
|
|
352
354
|
"payment-cryptography",
|
|
353
355
|
"payment-cryptography-data",
|
|
@@ -422,6 +424,7 @@ ServiceName = Literal[
|
|
|
422
424
|
"sesv2",
|
|
423
425
|
"shield",
|
|
424
426
|
"signer",
|
|
427
|
+
"signin",
|
|
425
428
|
"simspaceweaver",
|
|
426
429
|
"snow-device-management",
|
|
427
430
|
"snowball",
|
|
@@ -53,7 +53,7 @@ FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text",
|
|
|
53
53
|
ListCaseRulesPaginatorName = Literal["list_case_rules"]
|
|
54
54
|
OrderType = Literal["Asc", "Desc"]
|
|
55
55
|
RelatedItemTypeType = Literal["Comment", "ConnectCase", "Contact", "Custom", "File", "Sla"]
|
|
56
|
-
RuleTypeType = Literal["Required"]
|
|
56
|
+
RuleTypeType = Literal["FieldOptions", "Hidden", "Required"]
|
|
57
57
|
SearchAllRelatedItemsPaginatorName = Literal["search_all_related_items"]
|
|
58
58
|
SearchAllRelatedItemsSortPropertyType = Literal["AssociationTime", "CaseId"]
|
|
59
59
|
SearchCasesPaginatorName = Literal["search_cases"]
|
|
@@ -327,6 +327,7 @@ ServiceName = Literal[
|
|
|
327
327
|
"mq",
|
|
328
328
|
"mturk",
|
|
329
329
|
"mwaa",
|
|
330
|
+
"mwaa-serverless",
|
|
330
331
|
"neptune",
|
|
331
332
|
"neptune-graph",
|
|
332
333
|
"neptunedata",
|
|
@@ -346,6 +347,7 @@ ServiceName = Literal[
|
|
|
346
347
|
"osis",
|
|
347
348
|
"outposts",
|
|
348
349
|
"panorama",
|
|
350
|
+
"partnercentral-channel",
|
|
349
351
|
"partnercentral-selling",
|
|
350
352
|
"payment-cryptography",
|
|
351
353
|
"payment-cryptography-data",
|
|
@@ -420,6 +422,7 @@ ServiceName = Literal[
|
|
|
420
422
|
"sesv2",
|
|
421
423
|
"shield",
|
|
422
424
|
"signer",
|
|
425
|
+
"signin",
|
|
423
426
|
"simspaceweaver",
|
|
424
427
|
"snow-device-management",
|
|
425
428
|
"snowball",
|