mypy-boto3-connectcases 1.40.64__py3-none-any.whl → 1.42.3__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.
- mypy_boto3_connectcases/__main__.py +4 -4
- mypy_boto3_connectcases/client.py +22 -27
- mypy_boto3_connectcases/client.pyi +22 -27
- mypy_boto3_connectcases/literals.py +8 -0
- mypy_boto3_connectcases/literals.pyi +8 -0
- mypy_boto3_connectcases/type_defs.py +46 -51
- mypy_boto3_connectcases/type_defs.pyi +46 -51
- mypy_boto3_connectcases/version.py +1 -1
- {mypy_boto3_connectcases-1.40.64.dist-info → mypy_boto3_connectcases-1.42.3.dist-info}/METADATA +11 -25
- mypy_boto3_connectcases-1.42.3.dist-info/RECORD +18 -0
- mypy_boto3_connectcases-1.40.64.dist-info/RECORD +0 -18
- {mypy_boto3_connectcases-1.40.64.dist-info → mypy_boto3_connectcases-1.42.3.dist-info}/WHEEL +0 -0
- {mypy_boto3_connectcases-1.40.64.dist-info → mypy_boto3_connectcases-1.42.3.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_connectcases-1.40.64.dist-info → mypy_boto3_connectcases-1.42.3.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.42.3\n"
|
|
16
|
+
"Version: 1.42.3\n"
|
|
17
|
+
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_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.42.3\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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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
|
|
|
@@ -159,6 +159,7 @@ ServiceName = Literal[
|
|
|
159
159
|
"comprehend",
|
|
160
160
|
"comprehendmedical",
|
|
161
161
|
"compute-optimizer",
|
|
162
|
+
"compute-optimizer-automation",
|
|
162
163
|
"config",
|
|
163
164
|
"connect",
|
|
164
165
|
"connect-contact-lens",
|
|
@@ -329,6 +330,7 @@ ServiceName = Literal[
|
|
|
329
330
|
"mq",
|
|
330
331
|
"mturk",
|
|
331
332
|
"mwaa",
|
|
333
|
+
"mwaa-serverless",
|
|
332
334
|
"neptune",
|
|
333
335
|
"neptune-graph",
|
|
334
336
|
"neptunedata",
|
|
@@ -338,6 +340,7 @@ ServiceName = Literal[
|
|
|
338
340
|
"networkmonitor",
|
|
339
341
|
"notifications",
|
|
340
342
|
"notificationscontacts",
|
|
343
|
+
"nova-act",
|
|
341
344
|
"oam",
|
|
342
345
|
"observabilityadmin",
|
|
343
346
|
"odb",
|
|
@@ -348,6 +351,9 @@ ServiceName = Literal[
|
|
|
348
351
|
"osis",
|
|
349
352
|
"outposts",
|
|
350
353
|
"panorama",
|
|
354
|
+
"partnercentral-account",
|
|
355
|
+
"partnercentral-benefits",
|
|
356
|
+
"partnercentral-channel",
|
|
351
357
|
"partnercentral-selling",
|
|
352
358
|
"payment-cryptography",
|
|
353
359
|
"payment-cryptography-data",
|
|
@@ -389,6 +395,7 @@ ServiceName = Literal[
|
|
|
389
395
|
"route53-recovery-control-config",
|
|
390
396
|
"route53-recovery-readiness",
|
|
391
397
|
"route53domains",
|
|
398
|
+
"route53globalresolver",
|
|
392
399
|
"route53profiles",
|
|
393
400
|
"route53resolver",
|
|
394
401
|
"rtbfabric",
|
|
@@ -422,6 +429,7 @@ ServiceName = Literal[
|
|
|
422
429
|
"sesv2",
|
|
423
430
|
"shield",
|
|
424
431
|
"signer",
|
|
432
|
+
"signin",
|
|
425
433
|
"simspaceweaver",
|
|
426
434
|
"snow-device-management",
|
|
427
435
|
"snowball",
|
|
@@ -157,6 +157,7 @@ ServiceName = Literal[
|
|
|
157
157
|
"comprehend",
|
|
158
158
|
"comprehendmedical",
|
|
159
159
|
"compute-optimizer",
|
|
160
|
+
"compute-optimizer-automation",
|
|
160
161
|
"config",
|
|
161
162
|
"connect",
|
|
162
163
|
"connect-contact-lens",
|
|
@@ -327,6 +328,7 @@ ServiceName = Literal[
|
|
|
327
328
|
"mq",
|
|
328
329
|
"mturk",
|
|
329
330
|
"mwaa",
|
|
331
|
+
"mwaa-serverless",
|
|
330
332
|
"neptune",
|
|
331
333
|
"neptune-graph",
|
|
332
334
|
"neptunedata",
|
|
@@ -336,6 +338,7 @@ ServiceName = Literal[
|
|
|
336
338
|
"networkmonitor",
|
|
337
339
|
"notifications",
|
|
338
340
|
"notificationscontacts",
|
|
341
|
+
"nova-act",
|
|
339
342
|
"oam",
|
|
340
343
|
"observabilityadmin",
|
|
341
344
|
"odb",
|
|
@@ -346,6 +349,9 @@ ServiceName = Literal[
|
|
|
346
349
|
"osis",
|
|
347
350
|
"outposts",
|
|
348
351
|
"panorama",
|
|
352
|
+
"partnercentral-account",
|
|
353
|
+
"partnercentral-benefits",
|
|
354
|
+
"partnercentral-channel",
|
|
349
355
|
"partnercentral-selling",
|
|
350
356
|
"payment-cryptography",
|
|
351
357
|
"payment-cryptography-data",
|
|
@@ -387,6 +393,7 @@ ServiceName = Literal[
|
|
|
387
393
|
"route53-recovery-control-config",
|
|
388
394
|
"route53-recovery-readiness",
|
|
389
395
|
"route53domains",
|
|
396
|
+
"route53globalresolver",
|
|
390
397
|
"route53profiles",
|
|
391
398
|
"route53resolver",
|
|
392
399
|
"rtbfabric",
|
|
@@ -420,6 +427,7 @@ ServiceName = Literal[
|
|
|
420
427
|
"sesv2",
|
|
421
428
|
"shield",
|
|
422
429
|
"signer",
|
|
430
|
+
"signin",
|
|
423
431
|
"simspaceweaver",
|
|
424
432
|
"snow-device-management",
|
|
425
433
|
"snowball",
|
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import Any, Union
|
|
22
23
|
|
|
@@ -33,12 +34,6 @@ from .literals import (
|
|
|
33
34
|
TemplateStatusType,
|
|
34
35
|
)
|
|
35
36
|
|
|
36
|
-
if sys.version_info >= (3, 9):
|
|
37
|
-
from builtins import dict as Dict
|
|
38
|
-
from builtins import list as List
|
|
39
|
-
from collections.abc import Mapping, Sequence
|
|
40
|
-
else:
|
|
41
|
-
from typing import Dict, List, Mapping, Sequence
|
|
42
37
|
if sys.version_info >= (3, 12):
|
|
43
38
|
from typing import Literal, NotRequired, TypedDict
|
|
44
39
|
else:
|
|
@@ -227,7 +222,7 @@ class AuditEventFieldValueUnionTypeDef(TypedDict):
|
|
|
227
222
|
stringValue: NotRequired[str]
|
|
228
223
|
doubleValue: NotRequired[float]
|
|
229
224
|
booleanValue: NotRequired[bool]
|
|
230
|
-
emptyValue: NotRequired[
|
|
225
|
+
emptyValue: NotRequired[dict[str, Any]]
|
|
231
226
|
userArnValue: NotRequired[str]
|
|
232
227
|
|
|
233
228
|
|
|
@@ -255,7 +250,7 @@ CaseRuleErrorTypeDef = TypedDict(
|
|
|
255
250
|
class ResponseMetadataTypeDef(TypedDict):
|
|
256
251
|
RequestId: str
|
|
257
252
|
HTTPStatusCode: int
|
|
258
|
-
HTTPHeaders:
|
|
253
|
+
HTTPHeaders: dict[str, str]
|
|
259
254
|
RetryAttempts: int
|
|
260
255
|
HostId: NotRequired[str]
|
|
261
256
|
|
|
@@ -283,7 +278,7 @@ GetFieldResponseTypeDef = TypedDict(
|
|
|
283
278
|
"type": FieldTypeType,
|
|
284
279
|
"namespace": FieldNamespaceType,
|
|
285
280
|
"description": NotRequired[str],
|
|
286
|
-
"tags": NotRequired[
|
|
281
|
+
"tags": NotRequired[dict[str, str]],
|
|
287
282
|
"deleted": NotRequired[bool],
|
|
288
283
|
"createdTime": NotRequired[datetime],
|
|
289
284
|
"lastModifiedTime": NotRequired[datetime],
|
|
@@ -311,7 +306,7 @@ class OperandTwoOutputTypeDef(TypedDict):
|
|
|
311
306
|
stringValue: NotRequired[str]
|
|
312
307
|
booleanValue: NotRequired[bool]
|
|
313
308
|
doubleValue: NotRequired[float]
|
|
314
|
-
emptyValue: NotRequired[
|
|
309
|
+
emptyValue: NotRequired[dict[str, Any]]
|
|
315
310
|
|
|
316
311
|
|
|
317
312
|
class OperandTwoTypeDef(TypedDict):
|
|
@@ -449,7 +444,7 @@ FieldItemTypeDef = TypedDict(
|
|
|
449
444
|
|
|
450
445
|
class ParentChildFieldOptionsMappingOutputTypeDef(TypedDict):
|
|
451
446
|
parentFieldOptionValue: str
|
|
452
|
-
childFieldOptionValues:
|
|
447
|
+
childFieldOptionValues: list[str]
|
|
453
448
|
|
|
454
449
|
|
|
455
450
|
class ParentChildFieldOptionsMappingTypeDef(TypedDict):
|
|
@@ -473,7 +468,7 @@ class FieldValueUnionOutputTypeDef(TypedDict):
|
|
|
473
468
|
stringValue: NotRequired[str]
|
|
474
469
|
doubleValue: NotRequired[float]
|
|
475
470
|
booleanValue: NotRequired[bool]
|
|
476
|
-
emptyValue: NotRequired[
|
|
471
|
+
emptyValue: NotRequired[dict[str, Any]]
|
|
477
472
|
userArnValue: NotRequired[str]
|
|
478
473
|
|
|
479
474
|
|
|
@@ -687,12 +682,12 @@ class GetDomainResponseTypeDef(TypedDict):
|
|
|
687
682
|
name: str
|
|
688
683
|
createdTime: datetime
|
|
689
684
|
domainStatus: DomainStatusType
|
|
690
|
-
tags:
|
|
685
|
+
tags: dict[str, str]
|
|
691
686
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
692
687
|
|
|
693
688
|
|
|
694
689
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
695
|
-
tags:
|
|
690
|
+
tags: dict[str, str]
|
|
696
691
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
697
692
|
|
|
698
693
|
|
|
@@ -702,7 +697,7 @@ class BatchGetFieldRequestTypeDef(TypedDict):
|
|
|
702
697
|
|
|
703
698
|
|
|
704
699
|
class CaseEventIncludedDataOutputTypeDef(TypedDict):
|
|
705
|
-
fields:
|
|
700
|
+
fields: list[FieldIdentifierTypeDef]
|
|
706
701
|
|
|
707
702
|
|
|
708
703
|
class CaseEventIncludedDataTypeDef(TypedDict):
|
|
@@ -717,8 +712,8 @@ class GetCaseRequestTypeDef(TypedDict):
|
|
|
717
712
|
|
|
718
713
|
|
|
719
714
|
class BatchGetFieldResponseTypeDef(TypedDict):
|
|
720
|
-
fields:
|
|
721
|
-
errors:
|
|
715
|
+
fields: list[GetFieldResponseTypeDef]
|
|
716
|
+
errors: list[FieldErrorTypeDef]
|
|
722
717
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
723
718
|
|
|
724
719
|
|
|
@@ -729,13 +724,13 @@ class BatchPutFieldOptionsRequestTypeDef(TypedDict):
|
|
|
729
724
|
|
|
730
725
|
|
|
731
726
|
class ListFieldOptionsResponseTypeDef(TypedDict):
|
|
732
|
-
options:
|
|
727
|
+
options: list[FieldOptionTypeDef]
|
|
733
728
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
734
729
|
nextToken: NotRequired[str]
|
|
735
730
|
|
|
736
731
|
|
|
737
732
|
class BatchPutFieldOptionsResponseTypeDef(TypedDict):
|
|
738
|
-
errors:
|
|
733
|
+
errors: list[FieldOptionErrorTypeDef]
|
|
739
734
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
740
735
|
|
|
741
736
|
|
|
@@ -752,13 +747,13 @@ class BooleanOperandsTypeDef(TypedDict):
|
|
|
752
747
|
|
|
753
748
|
|
|
754
749
|
class ListCaseRulesResponseTypeDef(TypedDict):
|
|
755
|
-
caseRules:
|
|
750
|
+
caseRules: list[CaseRuleSummaryTypeDef]
|
|
756
751
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
757
752
|
nextToken: NotRequired[str]
|
|
758
753
|
|
|
759
754
|
|
|
760
755
|
class ListCasesForContactResponseTypeDef(TypedDict):
|
|
761
|
-
cases:
|
|
756
|
+
cases: list[CaseSummaryTypeDef]
|
|
762
757
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
763
758
|
nextToken: NotRequired[str]
|
|
764
759
|
|
|
@@ -779,13 +774,13 @@ class GetTemplateResponseTypeDef(TypedDict):
|
|
|
779
774
|
name: str
|
|
780
775
|
description: str
|
|
781
776
|
layoutConfiguration: LayoutConfigurationTypeDef
|
|
782
|
-
requiredFields:
|
|
783
|
-
tags:
|
|
777
|
+
requiredFields: list[RequiredFieldTypeDef]
|
|
778
|
+
tags: dict[str, str]
|
|
784
779
|
status: TemplateStatusType
|
|
785
780
|
deleted: bool
|
|
786
781
|
createdTime: datetime
|
|
787
782
|
lastModifiedTime: datetime
|
|
788
|
-
rules:
|
|
783
|
+
rules: list[TemplateRuleTypeDef]
|
|
789
784
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
790
785
|
|
|
791
786
|
|
|
@@ -801,13 +796,13 @@ class UpdateTemplateRequestTypeDef(TypedDict):
|
|
|
801
796
|
|
|
802
797
|
|
|
803
798
|
class ListDomainsResponseTypeDef(TypedDict):
|
|
804
|
-
domains:
|
|
799
|
+
domains: list[DomainSummaryTypeDef]
|
|
805
800
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
806
801
|
nextToken: NotRequired[str]
|
|
807
802
|
|
|
808
803
|
|
|
809
804
|
class FieldGroupOutputTypeDef(TypedDict):
|
|
810
|
-
fields:
|
|
805
|
+
fields: list[FieldItemTypeDef]
|
|
811
806
|
name: NotRequired[str]
|
|
812
807
|
|
|
813
808
|
|
|
@@ -817,7 +812,7 @@ class FieldGroupTypeDef(TypedDict):
|
|
|
817
812
|
|
|
818
813
|
|
|
819
814
|
class FieldOptionsCaseRuleOutputTypeDef(TypedDict):
|
|
820
|
-
parentChildFieldOptionsMappings:
|
|
815
|
+
parentChildFieldOptionsMappings: list[ParentChildFieldOptionsMappingOutputTypeDef]
|
|
821
816
|
parentFieldId: NotRequired[str]
|
|
822
817
|
childFieldId: NotRequired[str]
|
|
823
818
|
|
|
@@ -829,7 +824,7 @@ class FieldOptionsCaseRuleTypeDef(TypedDict):
|
|
|
829
824
|
|
|
830
825
|
|
|
831
826
|
class ListFieldsResponseTypeDef(TypedDict):
|
|
832
|
-
fields:
|
|
827
|
+
fields: list[FieldSummaryTypeDef]
|
|
833
828
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
834
829
|
nextToken: NotRequired[str]
|
|
835
830
|
|
|
@@ -849,7 +844,7 @@ SlaConfigurationTypeDef = TypedDict(
|
|
|
849
844
|
"status": SlaStatusType,
|
|
850
845
|
"targetTime": datetime,
|
|
851
846
|
"fieldId": NotRequired[str],
|
|
852
|
-
"targetFieldValues": NotRequired[
|
|
847
|
+
"targetFieldValues": NotRequired[list[FieldValueUnionOutputTypeDef]],
|
|
853
848
|
"completionTime": NotRequired[datetime],
|
|
854
849
|
},
|
|
855
850
|
)
|
|
@@ -857,7 +852,7 @@ FieldValueUnionUnionTypeDef = Union[FieldValueUnionTypeDef, FieldValueUnionOutpu
|
|
|
857
852
|
|
|
858
853
|
|
|
859
854
|
class ListLayoutsResponseTypeDef(TypedDict):
|
|
860
|
-
layouts:
|
|
855
|
+
layouts: list[LayoutSummaryTypeDef]
|
|
861
856
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
862
857
|
nextToken: NotRequired[str]
|
|
863
858
|
|
|
@@ -868,7 +863,7 @@ class ListCaseRulesRequestPaginateTypeDef(TypedDict):
|
|
|
868
863
|
|
|
869
864
|
|
|
870
865
|
class ListTemplatesResponseTypeDef(TypedDict):
|
|
871
|
-
templates:
|
|
866
|
+
templates: list[TemplateSummaryTypeDef]
|
|
872
867
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
873
868
|
nextToken: NotRequired[str]
|
|
874
869
|
|
|
@@ -879,7 +874,7 @@ AuditEventTypeDef = TypedDict(
|
|
|
879
874
|
"eventId": str,
|
|
880
875
|
"type": AuditEventTypeType,
|
|
881
876
|
"performedTime": datetime,
|
|
882
|
-
"fields":
|
|
877
|
+
"fields": list[AuditEventFieldTypeDef],
|
|
883
878
|
"relatedItemType": NotRequired[RelatedItemTypeType],
|
|
884
879
|
"performedBy": NotRequired[AuditEventPerformedByTypeDef],
|
|
885
880
|
},
|
|
@@ -915,13 +910,13 @@ class SectionTypeDef(TypedDict):
|
|
|
915
910
|
|
|
916
911
|
|
|
917
912
|
class CustomContentTypeDef(TypedDict):
|
|
918
|
-
fields:
|
|
913
|
+
fields: list[FieldValueOutputTypeDef]
|
|
919
914
|
|
|
920
915
|
|
|
921
916
|
class GetCaseResponseTypeDef(TypedDict):
|
|
922
|
-
fields:
|
|
917
|
+
fields: list[FieldValueOutputTypeDef]
|
|
923
918
|
templateId: str
|
|
924
|
-
tags:
|
|
919
|
+
tags: dict[str, str]
|
|
925
920
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
926
921
|
nextToken: NotRequired[str]
|
|
927
922
|
|
|
@@ -929,8 +924,8 @@ class GetCaseResponseTypeDef(TypedDict):
|
|
|
929
924
|
class SearchCasesResponseItemTypeDef(TypedDict):
|
|
930
925
|
caseId: str
|
|
931
926
|
templateId: str
|
|
932
|
-
fields:
|
|
933
|
-
tags: NotRequired[
|
|
927
|
+
fields: list[FieldValueOutputTypeDef]
|
|
928
|
+
tags: NotRequired[dict[str, str]]
|
|
934
929
|
|
|
935
930
|
|
|
936
931
|
class SlaContentTypeDef(TypedDict):
|
|
@@ -957,7 +952,7 @@ SlaInputConfigurationTypeDef = TypedDict(
|
|
|
957
952
|
|
|
958
953
|
|
|
959
954
|
class GetCaseAuditEventsResponseTypeDef(TypedDict):
|
|
960
|
-
auditEvents:
|
|
955
|
+
auditEvents: list[AuditEventTypeDef]
|
|
961
956
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
962
957
|
nextToken: NotRequired[str]
|
|
963
958
|
|
|
@@ -974,12 +969,12 @@ class EventBridgeConfigurationTypeDef(TypedDict):
|
|
|
974
969
|
|
|
975
970
|
class HiddenCaseRuleOutputTypeDef(TypedDict):
|
|
976
971
|
defaultValue: bool
|
|
977
|
-
conditions:
|
|
972
|
+
conditions: list[BooleanConditionOutputTypeDef]
|
|
978
973
|
|
|
979
974
|
|
|
980
975
|
class RequiredCaseRuleOutputTypeDef(TypedDict):
|
|
981
976
|
defaultValue: bool
|
|
982
|
-
conditions:
|
|
977
|
+
conditions: list[BooleanConditionOutputTypeDef]
|
|
983
978
|
|
|
984
979
|
|
|
985
980
|
class HiddenCaseRuleTypeDef(TypedDict):
|
|
@@ -993,7 +988,7 @@ class RequiredCaseRuleTypeDef(TypedDict):
|
|
|
993
988
|
|
|
994
989
|
|
|
995
990
|
class LayoutSectionsOutputTypeDef(TypedDict):
|
|
996
|
-
sections: NotRequired[
|
|
991
|
+
sections: NotRequired[list[SectionOutputTypeDef]]
|
|
997
992
|
|
|
998
993
|
|
|
999
994
|
class LayoutSectionsTypeDef(TypedDict):
|
|
@@ -1001,7 +996,7 @@ class LayoutSectionsTypeDef(TypedDict):
|
|
|
1001
996
|
|
|
1002
997
|
|
|
1003
998
|
class SearchCasesResponseTypeDef(TypedDict):
|
|
1004
|
-
cases:
|
|
999
|
+
cases: list[SearchCasesResponseItemTypeDef]
|
|
1005
1000
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1006
1001
|
nextToken: NotRequired[str]
|
|
1007
1002
|
|
|
@@ -1063,7 +1058,7 @@ SearchAllRelatedItemsResponseItemTypeDef = TypedDict(
|
|
|
1063
1058
|
"associationTime": datetime,
|
|
1064
1059
|
"content": RelatedItemContentTypeDef,
|
|
1065
1060
|
"performedBy": NotRequired[UserUnionTypeDef],
|
|
1066
|
-
"tags": NotRequired[
|
|
1061
|
+
"tags": NotRequired[dict[str, str]],
|
|
1067
1062
|
},
|
|
1068
1063
|
)
|
|
1069
1064
|
SearchRelatedItemsResponseItemTypeDef = TypedDict(
|
|
@@ -1073,7 +1068,7 @@ SearchRelatedItemsResponseItemTypeDef = TypedDict(
|
|
|
1073
1068
|
"type": RelatedItemTypeType,
|
|
1074
1069
|
"associationTime": datetime,
|
|
1075
1070
|
"content": RelatedItemContentTypeDef,
|
|
1076
|
-
"tags": NotRequired[
|
|
1071
|
+
"tags": NotRequired[dict[str, str]],
|
|
1077
1072
|
"performedBy": NotRequired[UserUnionTypeDef],
|
|
1078
1073
|
},
|
|
1079
1074
|
)
|
|
@@ -1121,7 +1116,7 @@ class GetCaseRuleResponseTypeDef(TypedDict):
|
|
|
1121
1116
|
deleted: NotRequired[bool]
|
|
1122
1117
|
createdTime: NotRequired[datetime]
|
|
1123
1118
|
lastModifiedTime: NotRequired[datetime]
|
|
1124
|
-
tags: NotRequired[
|
|
1119
|
+
tags: NotRequired[dict[str, str]]
|
|
1125
1120
|
|
|
1126
1121
|
|
|
1127
1122
|
CaseRuleDetailsUnionTypeDef = Union[CaseRuleDetailsTypeDef, CaseRuleDetailsOutputTypeDef]
|
|
@@ -1136,13 +1131,13 @@ class LayoutContentTypeDef(TypedDict):
|
|
|
1136
1131
|
|
|
1137
1132
|
|
|
1138
1133
|
class SearchAllRelatedItemsResponseTypeDef(TypedDict):
|
|
1139
|
-
relatedItems:
|
|
1134
|
+
relatedItems: list[SearchAllRelatedItemsResponseItemTypeDef]
|
|
1140
1135
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1141
1136
|
nextToken: NotRequired[str]
|
|
1142
1137
|
|
|
1143
1138
|
|
|
1144
1139
|
class SearchRelatedItemsResponseTypeDef(TypedDict):
|
|
1145
|
-
relatedItems:
|
|
1140
|
+
relatedItems: list[SearchRelatedItemsResponseItemTypeDef]
|
|
1146
1141
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1147
1142
|
nextToken: NotRequired[str]
|
|
1148
1143
|
|
|
@@ -1195,9 +1190,9 @@ CustomFieldsFilterTypeDef = TypedDict(
|
|
|
1195
1190
|
|
|
1196
1191
|
|
|
1197
1192
|
class BatchGetCaseRuleResponseTypeDef(TypedDict):
|
|
1198
|
-
caseRules:
|
|
1199
|
-
errors:
|
|
1200
|
-
unprocessedCaseRules:
|
|
1193
|
+
caseRules: list[GetCaseRuleResponseTypeDef]
|
|
1194
|
+
errors: list[CaseRuleErrorTypeDef]
|
|
1195
|
+
unprocessedCaseRules: list[str]
|
|
1201
1196
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1202
1197
|
|
|
1203
1198
|
|
|
@@ -1221,7 +1216,7 @@ class GetLayoutResponseTypeDef(TypedDict):
|
|
|
1221
1216
|
layoutArn: str
|
|
1222
1217
|
name: str
|
|
1223
1218
|
content: LayoutContentOutputTypeDef
|
|
1224
|
-
tags:
|
|
1219
|
+
tags: dict[str, str]
|
|
1225
1220
|
deleted: bool
|
|
1226
1221
|
createdTime: datetime
|
|
1227
1222
|
lastModifiedTime: datetime
|
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import Any, Union
|
|
22
23
|
|
|
@@ -33,12 +34,6 @@ from .literals import (
|
|
|
33
34
|
TemplateStatusType,
|
|
34
35
|
)
|
|
35
36
|
|
|
36
|
-
if sys.version_info >= (3, 9):
|
|
37
|
-
from builtins import dict as Dict
|
|
38
|
-
from builtins import list as List
|
|
39
|
-
from collections.abc import Mapping, Sequence
|
|
40
|
-
else:
|
|
41
|
-
from typing import Dict, List, Mapping, Sequence
|
|
42
37
|
if sys.version_info >= (3, 12):
|
|
43
38
|
from typing import Literal, NotRequired, TypedDict
|
|
44
39
|
else:
|
|
@@ -225,7 +220,7 @@ class AuditEventFieldValueUnionTypeDef(TypedDict):
|
|
|
225
220
|
stringValue: NotRequired[str]
|
|
226
221
|
doubleValue: NotRequired[float]
|
|
227
222
|
booleanValue: NotRequired[bool]
|
|
228
|
-
emptyValue: NotRequired[
|
|
223
|
+
emptyValue: NotRequired[dict[str, Any]]
|
|
229
224
|
userArnValue: NotRequired[str]
|
|
230
225
|
|
|
231
226
|
class UserUnionTypeDef(TypedDict):
|
|
@@ -250,7 +245,7 @@ CaseRuleErrorTypeDef = TypedDict(
|
|
|
250
245
|
class ResponseMetadataTypeDef(TypedDict):
|
|
251
246
|
RequestId: str
|
|
252
247
|
HTTPStatusCode: int
|
|
253
|
-
HTTPHeaders:
|
|
248
|
+
HTTPHeaders: dict[str, str]
|
|
254
249
|
RetryAttempts: int
|
|
255
250
|
HostId: NotRequired[str]
|
|
256
251
|
|
|
@@ -277,7 +272,7 @@ GetFieldResponseTypeDef = TypedDict(
|
|
|
277
272
|
"type": FieldTypeType,
|
|
278
273
|
"namespace": FieldNamespaceType,
|
|
279
274
|
"description": NotRequired[str],
|
|
280
|
-
"tags": NotRequired[
|
|
275
|
+
"tags": NotRequired[dict[str, str]],
|
|
281
276
|
"deleted": NotRequired[bool],
|
|
282
277
|
"createdTime": NotRequired[datetime],
|
|
283
278
|
"lastModifiedTime": NotRequired[datetime],
|
|
@@ -301,7 +296,7 @@ class OperandTwoOutputTypeDef(TypedDict):
|
|
|
301
296
|
stringValue: NotRequired[str]
|
|
302
297
|
booleanValue: NotRequired[bool]
|
|
303
298
|
doubleValue: NotRequired[float]
|
|
304
|
-
emptyValue: NotRequired[
|
|
299
|
+
emptyValue: NotRequired[dict[str, Any]]
|
|
305
300
|
|
|
306
301
|
class OperandTwoTypeDef(TypedDict):
|
|
307
302
|
stringValue: NotRequired[str]
|
|
@@ -413,7 +408,7 @@ FieldItemTypeDef = TypedDict(
|
|
|
413
408
|
|
|
414
409
|
class ParentChildFieldOptionsMappingOutputTypeDef(TypedDict):
|
|
415
410
|
parentFieldOptionValue: str
|
|
416
|
-
childFieldOptionValues:
|
|
411
|
+
childFieldOptionValues: list[str]
|
|
417
412
|
|
|
418
413
|
class ParentChildFieldOptionsMappingTypeDef(TypedDict):
|
|
419
414
|
parentFieldOptionValue: str
|
|
@@ -434,7 +429,7 @@ class FieldValueUnionOutputTypeDef(TypedDict):
|
|
|
434
429
|
stringValue: NotRequired[str]
|
|
435
430
|
doubleValue: NotRequired[float]
|
|
436
431
|
booleanValue: NotRequired[bool]
|
|
437
|
-
emptyValue: NotRequired[
|
|
432
|
+
emptyValue: NotRequired[dict[str, Any]]
|
|
438
433
|
userArnValue: NotRequired[str]
|
|
439
434
|
|
|
440
435
|
class FieldValueUnionTypeDef(TypedDict):
|
|
@@ -611,11 +606,11 @@ class GetDomainResponseTypeDef(TypedDict):
|
|
|
611
606
|
name: str
|
|
612
607
|
createdTime: datetime
|
|
613
608
|
domainStatus: DomainStatusType
|
|
614
|
-
tags:
|
|
609
|
+
tags: dict[str, str]
|
|
615
610
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
616
611
|
|
|
617
612
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
618
|
-
tags:
|
|
613
|
+
tags: dict[str, str]
|
|
619
614
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
620
615
|
|
|
621
616
|
class BatchGetFieldRequestTypeDef(TypedDict):
|
|
@@ -623,7 +618,7 @@ class BatchGetFieldRequestTypeDef(TypedDict):
|
|
|
623
618
|
fields: Sequence[FieldIdentifierTypeDef]
|
|
624
619
|
|
|
625
620
|
class CaseEventIncludedDataOutputTypeDef(TypedDict):
|
|
626
|
-
fields:
|
|
621
|
+
fields: list[FieldIdentifierTypeDef]
|
|
627
622
|
|
|
628
623
|
class CaseEventIncludedDataTypeDef(TypedDict):
|
|
629
624
|
fields: Sequence[FieldIdentifierTypeDef]
|
|
@@ -635,8 +630,8 @@ class GetCaseRequestTypeDef(TypedDict):
|
|
|
635
630
|
nextToken: NotRequired[str]
|
|
636
631
|
|
|
637
632
|
class BatchGetFieldResponseTypeDef(TypedDict):
|
|
638
|
-
fields:
|
|
639
|
-
errors:
|
|
633
|
+
fields: list[GetFieldResponseTypeDef]
|
|
634
|
+
errors: list[FieldErrorTypeDef]
|
|
640
635
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
641
636
|
|
|
642
637
|
class BatchPutFieldOptionsRequestTypeDef(TypedDict):
|
|
@@ -645,12 +640,12 @@ class BatchPutFieldOptionsRequestTypeDef(TypedDict):
|
|
|
645
640
|
options: Sequence[FieldOptionTypeDef]
|
|
646
641
|
|
|
647
642
|
class ListFieldOptionsResponseTypeDef(TypedDict):
|
|
648
|
-
options:
|
|
643
|
+
options: list[FieldOptionTypeDef]
|
|
649
644
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
650
645
|
nextToken: NotRequired[str]
|
|
651
646
|
|
|
652
647
|
class BatchPutFieldOptionsResponseTypeDef(TypedDict):
|
|
653
|
-
errors:
|
|
648
|
+
errors: list[FieldOptionErrorTypeDef]
|
|
654
649
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
655
650
|
|
|
656
651
|
class BooleanOperandsOutputTypeDef(TypedDict):
|
|
@@ -664,12 +659,12 @@ class BooleanOperandsTypeDef(TypedDict):
|
|
|
664
659
|
result: bool
|
|
665
660
|
|
|
666
661
|
class ListCaseRulesResponseTypeDef(TypedDict):
|
|
667
|
-
caseRules:
|
|
662
|
+
caseRules: list[CaseRuleSummaryTypeDef]
|
|
668
663
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
669
664
|
nextToken: NotRequired[str]
|
|
670
665
|
|
|
671
666
|
class ListCasesForContactResponseTypeDef(TypedDict):
|
|
672
|
-
cases:
|
|
667
|
+
cases: list[CaseSummaryTypeDef]
|
|
673
668
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
674
669
|
nextToken: NotRequired[str]
|
|
675
670
|
|
|
@@ -688,13 +683,13 @@ class GetTemplateResponseTypeDef(TypedDict):
|
|
|
688
683
|
name: str
|
|
689
684
|
description: str
|
|
690
685
|
layoutConfiguration: LayoutConfigurationTypeDef
|
|
691
|
-
requiredFields:
|
|
692
|
-
tags:
|
|
686
|
+
requiredFields: list[RequiredFieldTypeDef]
|
|
687
|
+
tags: dict[str, str]
|
|
693
688
|
status: TemplateStatusType
|
|
694
689
|
deleted: bool
|
|
695
690
|
createdTime: datetime
|
|
696
691
|
lastModifiedTime: datetime
|
|
697
|
-
rules:
|
|
692
|
+
rules: list[TemplateRuleTypeDef]
|
|
698
693
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
699
694
|
|
|
700
695
|
class UpdateTemplateRequestTypeDef(TypedDict):
|
|
@@ -708,12 +703,12 @@ class UpdateTemplateRequestTypeDef(TypedDict):
|
|
|
708
703
|
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
709
704
|
|
|
710
705
|
class ListDomainsResponseTypeDef(TypedDict):
|
|
711
|
-
domains:
|
|
706
|
+
domains: list[DomainSummaryTypeDef]
|
|
712
707
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
713
708
|
nextToken: NotRequired[str]
|
|
714
709
|
|
|
715
710
|
class FieldGroupOutputTypeDef(TypedDict):
|
|
716
|
-
fields:
|
|
711
|
+
fields: list[FieldItemTypeDef]
|
|
717
712
|
name: NotRequired[str]
|
|
718
713
|
|
|
719
714
|
class FieldGroupTypeDef(TypedDict):
|
|
@@ -721,7 +716,7 @@ class FieldGroupTypeDef(TypedDict):
|
|
|
721
716
|
name: NotRequired[str]
|
|
722
717
|
|
|
723
718
|
class FieldOptionsCaseRuleOutputTypeDef(TypedDict):
|
|
724
|
-
parentChildFieldOptionsMappings:
|
|
719
|
+
parentChildFieldOptionsMappings: list[ParentChildFieldOptionsMappingOutputTypeDef]
|
|
725
720
|
parentFieldId: NotRequired[str]
|
|
726
721
|
childFieldId: NotRequired[str]
|
|
727
722
|
|
|
@@ -731,7 +726,7 @@ class FieldOptionsCaseRuleTypeDef(TypedDict):
|
|
|
731
726
|
childFieldId: NotRequired[str]
|
|
732
727
|
|
|
733
728
|
class ListFieldsResponseTypeDef(TypedDict):
|
|
734
|
-
fields:
|
|
729
|
+
fields: list[FieldSummaryTypeDef]
|
|
735
730
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
736
731
|
nextToken: NotRequired[str]
|
|
737
732
|
|
|
@@ -750,14 +745,14 @@ SlaConfigurationTypeDef = TypedDict(
|
|
|
750
745
|
"status": SlaStatusType,
|
|
751
746
|
"targetTime": datetime,
|
|
752
747
|
"fieldId": NotRequired[str],
|
|
753
|
-
"targetFieldValues": NotRequired[
|
|
748
|
+
"targetFieldValues": NotRequired[list[FieldValueUnionOutputTypeDef]],
|
|
754
749
|
"completionTime": NotRequired[datetime],
|
|
755
750
|
},
|
|
756
751
|
)
|
|
757
752
|
FieldValueUnionUnionTypeDef = Union[FieldValueUnionTypeDef, FieldValueUnionOutputTypeDef]
|
|
758
753
|
|
|
759
754
|
class ListLayoutsResponseTypeDef(TypedDict):
|
|
760
|
-
layouts:
|
|
755
|
+
layouts: list[LayoutSummaryTypeDef]
|
|
761
756
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
762
757
|
nextToken: NotRequired[str]
|
|
763
758
|
|
|
@@ -766,7 +761,7 @@ class ListCaseRulesRequestPaginateTypeDef(TypedDict):
|
|
|
766
761
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
767
762
|
|
|
768
763
|
class ListTemplatesResponseTypeDef(TypedDict):
|
|
769
|
-
templates:
|
|
764
|
+
templates: list[TemplateSummaryTypeDef]
|
|
770
765
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
771
766
|
nextToken: NotRequired[str]
|
|
772
767
|
|
|
@@ -776,7 +771,7 @@ AuditEventTypeDef = TypedDict(
|
|
|
776
771
|
"eventId": str,
|
|
777
772
|
"type": AuditEventTypeType,
|
|
778
773
|
"performedTime": datetime,
|
|
779
|
-
"fields":
|
|
774
|
+
"fields": list[AuditEventFieldTypeDef],
|
|
780
775
|
"relatedItemType": NotRequired[RelatedItemTypeType],
|
|
781
776
|
"performedBy": NotRequired[AuditEventPerformedByTypeDef],
|
|
782
777
|
},
|
|
@@ -805,20 +800,20 @@ class SectionTypeDef(TypedDict):
|
|
|
805
800
|
fieldGroup: NotRequired[FieldGroupTypeDef]
|
|
806
801
|
|
|
807
802
|
class CustomContentTypeDef(TypedDict):
|
|
808
|
-
fields:
|
|
803
|
+
fields: list[FieldValueOutputTypeDef]
|
|
809
804
|
|
|
810
805
|
class GetCaseResponseTypeDef(TypedDict):
|
|
811
|
-
fields:
|
|
806
|
+
fields: list[FieldValueOutputTypeDef]
|
|
812
807
|
templateId: str
|
|
813
|
-
tags:
|
|
808
|
+
tags: dict[str, str]
|
|
814
809
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
815
810
|
nextToken: NotRequired[str]
|
|
816
811
|
|
|
817
812
|
class SearchCasesResponseItemTypeDef(TypedDict):
|
|
818
813
|
caseId: str
|
|
819
814
|
templateId: str
|
|
820
|
-
fields:
|
|
821
|
-
tags: NotRequired[
|
|
815
|
+
fields: list[FieldValueOutputTypeDef]
|
|
816
|
+
tags: NotRequired[dict[str, str]]
|
|
822
817
|
|
|
823
818
|
class SlaContentTypeDef(TypedDict):
|
|
824
819
|
slaConfiguration: SlaConfigurationTypeDef
|
|
@@ -842,7 +837,7 @@ SlaInputConfigurationTypeDef = TypedDict(
|
|
|
842
837
|
)
|
|
843
838
|
|
|
844
839
|
class GetCaseAuditEventsResponseTypeDef(TypedDict):
|
|
845
|
-
auditEvents:
|
|
840
|
+
auditEvents: list[AuditEventTypeDef]
|
|
846
841
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
847
842
|
nextToken: NotRequired[str]
|
|
848
843
|
|
|
@@ -856,11 +851,11 @@ class EventBridgeConfigurationTypeDef(TypedDict):
|
|
|
856
851
|
|
|
857
852
|
class HiddenCaseRuleOutputTypeDef(TypedDict):
|
|
858
853
|
defaultValue: bool
|
|
859
|
-
conditions:
|
|
854
|
+
conditions: list[BooleanConditionOutputTypeDef]
|
|
860
855
|
|
|
861
856
|
class RequiredCaseRuleOutputTypeDef(TypedDict):
|
|
862
857
|
defaultValue: bool
|
|
863
|
-
conditions:
|
|
858
|
+
conditions: list[BooleanConditionOutputTypeDef]
|
|
864
859
|
|
|
865
860
|
class HiddenCaseRuleTypeDef(TypedDict):
|
|
866
861
|
defaultValue: bool
|
|
@@ -871,13 +866,13 @@ class RequiredCaseRuleTypeDef(TypedDict):
|
|
|
871
866
|
conditions: Sequence[BooleanConditionTypeDef]
|
|
872
867
|
|
|
873
868
|
class LayoutSectionsOutputTypeDef(TypedDict):
|
|
874
|
-
sections: NotRequired[
|
|
869
|
+
sections: NotRequired[list[SectionOutputTypeDef]]
|
|
875
870
|
|
|
876
871
|
class LayoutSectionsTypeDef(TypedDict):
|
|
877
872
|
sections: NotRequired[Sequence[SectionTypeDef]]
|
|
878
873
|
|
|
879
874
|
class SearchCasesResponseTypeDef(TypedDict):
|
|
880
|
-
cases:
|
|
875
|
+
cases: list[SearchCasesResponseItemTypeDef]
|
|
881
876
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
882
877
|
nextToken: NotRequired[str]
|
|
883
878
|
|
|
@@ -929,7 +924,7 @@ SearchAllRelatedItemsResponseItemTypeDef = TypedDict(
|
|
|
929
924
|
"associationTime": datetime,
|
|
930
925
|
"content": RelatedItemContentTypeDef,
|
|
931
926
|
"performedBy": NotRequired[UserUnionTypeDef],
|
|
932
|
-
"tags": NotRequired[
|
|
927
|
+
"tags": NotRequired[dict[str, str]],
|
|
933
928
|
},
|
|
934
929
|
)
|
|
935
930
|
SearchRelatedItemsResponseItemTypeDef = TypedDict(
|
|
@@ -939,7 +934,7 @@ SearchRelatedItemsResponseItemTypeDef = TypedDict(
|
|
|
939
934
|
"type": RelatedItemTypeType,
|
|
940
935
|
"associationTime": datetime,
|
|
941
936
|
"content": RelatedItemContentTypeDef,
|
|
942
|
-
"tags": NotRequired[
|
|
937
|
+
"tags": NotRequired[dict[str, str]],
|
|
943
938
|
"performedBy": NotRequired[UserUnionTypeDef],
|
|
944
939
|
},
|
|
945
940
|
)
|
|
@@ -981,7 +976,7 @@ class GetCaseRuleResponseTypeDef(TypedDict):
|
|
|
981
976
|
deleted: NotRequired[bool]
|
|
982
977
|
createdTime: NotRequired[datetime]
|
|
983
978
|
lastModifiedTime: NotRequired[datetime]
|
|
984
|
-
tags: NotRequired[
|
|
979
|
+
tags: NotRequired[dict[str, str]]
|
|
985
980
|
|
|
986
981
|
CaseRuleDetailsUnionTypeDef = Union[CaseRuleDetailsTypeDef, CaseRuleDetailsOutputTypeDef]
|
|
987
982
|
|
|
@@ -992,12 +987,12 @@ class LayoutContentTypeDef(TypedDict):
|
|
|
992
987
|
basic: NotRequired[BasicLayoutTypeDef]
|
|
993
988
|
|
|
994
989
|
class SearchAllRelatedItemsResponseTypeDef(TypedDict):
|
|
995
|
-
relatedItems:
|
|
990
|
+
relatedItems: list[SearchAllRelatedItemsResponseItemTypeDef]
|
|
996
991
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
997
992
|
nextToken: NotRequired[str]
|
|
998
993
|
|
|
999
994
|
class SearchRelatedItemsResponseTypeDef(TypedDict):
|
|
1000
|
-
relatedItems:
|
|
995
|
+
relatedItems: list[SearchRelatedItemsResponseItemTypeDef]
|
|
1001
996
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1002
997
|
nextToken: NotRequired[str]
|
|
1003
998
|
|
|
@@ -1047,9 +1042,9 @@ CustomFieldsFilterTypeDef = TypedDict(
|
|
|
1047
1042
|
)
|
|
1048
1043
|
|
|
1049
1044
|
class BatchGetCaseRuleResponseTypeDef(TypedDict):
|
|
1050
|
-
caseRules:
|
|
1051
|
-
errors:
|
|
1052
|
-
unprocessedCaseRules:
|
|
1045
|
+
caseRules: list[GetCaseRuleResponseTypeDef]
|
|
1046
|
+
errors: list[CaseRuleErrorTypeDef]
|
|
1047
|
+
unprocessedCaseRules: list[str]
|
|
1053
1048
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1054
1049
|
|
|
1055
1050
|
class CreateCaseRuleRequestTypeDef(TypedDict):
|
|
@@ -1070,7 +1065,7 @@ class GetLayoutResponseTypeDef(TypedDict):
|
|
|
1070
1065
|
layoutArn: str
|
|
1071
1066
|
name: str
|
|
1072
1067
|
content: LayoutContentOutputTypeDef
|
|
1073
|
-
tags:
|
|
1068
|
+
tags: dict[str, str]
|
|
1074
1069
|
deleted: bool
|
|
1075
1070
|
createdTime: datetime
|
|
1076
1071
|
lastModifiedTime: datetime
|
{mypy_boto3_connectcases-1.40.64.dist-info → mypy_boto3_connectcases-1.42.3.dist-info}/METADATA
RENAMED
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-connectcases
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 ConnectCases 1.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT License
|
|
3
|
+
Version: 1.42.3
|
|
4
|
+
Summary: Type annotations for boto3 ConnectCases 1.42.3 service generated with mypy-boto3-builder 8.12.0
|
|
5
|
+
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
9
8
|
Project-URL: Documentation, https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/
|
|
10
9
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
10
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3
|
|
11
|
+
Keywords: boto3,connectcases,boto3-stubs,type-annotations,mypy,typeshed,autocomplete
|
|
12
|
+
Platform: any
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
17
16
|
Classifier: Natural Language :: English
|
|
18
17
|
Classifier: Operating System :: OS Independent
|
|
19
18
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.9
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -27,23 +25,11 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
27
25
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
27
|
Classifier: Typing :: Stubs Only
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Requires-Python: >=3.9
|
|
31
29
|
Description-Content-Type: text/markdown
|
|
32
30
|
License-File: LICENSE
|
|
33
31
|
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
|
-
Dynamic: author
|
|
35
|
-
Dynamic: author-email
|
|
36
|
-
Dynamic: classifier
|
|
37
|
-
Dynamic: description
|
|
38
|
-
Dynamic: description-content-type
|
|
39
|
-
Dynamic: home-page
|
|
40
|
-
Dynamic: keywords
|
|
41
|
-
Dynamic: license
|
|
42
32
|
Dynamic: license-file
|
|
43
|
-
Dynamic: project-url
|
|
44
|
-
Dynamic: requires-dist
|
|
45
|
-
Dynamic: requires-python
|
|
46
|
-
Dynamic: summary
|
|
47
33
|
|
|
48
34
|
<a id="mypy-boto3-connectcases"></a>
|
|
49
35
|
|
|
@@ -57,7 +43,7 @@ Dynamic: summary
|
|
|
57
43
|

|
|
58
44
|
|
|
59
45
|
Type annotations for
|
|
60
|
-
[boto3 ConnectCases 1.
|
|
46
|
+
[boto3 ConnectCases 1.42.3](https://pypi.org/project/boto3/) compatible with
|
|
61
47
|
[VSCode](https://code.visualstudio.com/),
|
|
62
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
63
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -66,7 +52,7 @@ Type annotations for
|
|
|
66
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
67
53
|
|
|
68
54
|
Generated with
|
|
69
|
-
[mypy-boto3-builder 8.
|
|
55
|
+
[mypy-boto3-builder 8.12.0](https://github.com/youtype/mypy_boto3_builder).
|
|
70
56
|
|
|
71
57
|
More information can be found on
|
|
72
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -119,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
105
|
isolation.
|
|
120
106
|
|
|
121
107
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.
|
|
108
|
+
`uvx --with 'boto3==1.42.3' mypy-boto3-builder`
|
|
123
109
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
110
|
3. Add `ConnectCases` service.
|
|
125
111
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_connectcases/__init__.py,sha256=9MJ-kY0UQoViFW5liDst2Y__no6Zh3N7h_JF9ArSJk0,1380
|
|
2
|
+
mypy_boto3_connectcases/__init__.pyi,sha256=Q1uLDb4WTtnY_nHXckyWHbeo-eDgQ0JTk33caIlI9t0,1379
|
|
3
|
+
mypy_boto3_connectcases/__main__.py,sha256=JPRLmlXoM9PTFf8TiNEBQInj2pDETp_Ct-HmInnjWHM,1001
|
|
4
|
+
mypy_boto3_connectcases/client.py,sha256=vjtFST-wRKb3OwXL9IIF3GRuOtcjx1NPIkJbUqTrKTk,28485
|
|
5
|
+
mypy_boto3_connectcases/client.pyi,sha256=howSBd0vfFwb1zS2yBMoKEm50bjnUsSuWTcsMziCUI0,28482
|
|
6
|
+
mypy_boto3_connectcases/literals.py,sha256=33kft9uVG8TtFQNq6BEaPrQ9Obfraoh2_AcNTLMOuR4,10857
|
|
7
|
+
mypy_boto3_connectcases/literals.pyi,sha256=6cKO5Uvww_-WGkIfrPUz1xO0nVBS3eATL3ykUtLE9fA,10855
|
|
8
|
+
mypy_boto3_connectcases/paginator.py,sha256=VKOWiL08DOZ3lB_xJZ01gH-fvEkvqlutJbryv7HxuaA,6356
|
|
9
|
+
mypy_boto3_connectcases/paginator.pyi,sha256=-UKGqiEly4IcbmX1fj_5KoE7UwNfnXfFQZK58_nHx9U,6343
|
|
10
|
+
mypy_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_connectcases/type_defs.py,sha256=Ho_fZPsRtYVN9PGZdGb2dWI-CO-Lhjj_a4Eqf2YP9ZA,34944
|
|
12
|
+
mypy_boto3_connectcases/type_defs.pyi,sha256=4ycE8EHK63C4VBUkAXu-DlFN1py_eLdQz7hcjoKGNjI,34782
|
|
13
|
+
mypy_boto3_connectcases/version.py,sha256=GG_me-VWxqUerVNqcPw9hL39jbKNBNmLknphxNF_WPw,92
|
|
14
|
+
mypy_boto3_connectcases-1.42.3.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
mypy_boto3_connectcases-1.42.3.dist-info/METADATA,sha256=-NXzitmk7eITI5prpIBCTqami47fev9iWX0qVhxeVBw,15293
|
|
16
|
+
mypy_boto3_connectcases-1.42.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
mypy_boto3_connectcases-1.42.3.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
|
|
18
|
+
mypy_boto3_connectcases-1.42.3.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_connectcases/__init__.py,sha256=9MJ-kY0UQoViFW5liDst2Y__no6Zh3N7h_JF9ArSJk0,1380
|
|
2
|
-
mypy_boto3_connectcases/__init__.pyi,sha256=Q1uLDb4WTtnY_nHXckyWHbeo-eDgQ0JTk33caIlI9t0,1379
|
|
3
|
-
mypy_boto3_connectcases/__main__.py,sha256=LJcDkuuJmUOQ_G3SAsrIhTW8uCHOTBYLPQGjpXfCyEw,1004
|
|
4
|
-
mypy_boto3_connectcases/client.py,sha256=ReFe9dOHDC7vTnHqf3oHvty9FXPj7sPZ_V6Z1UZTYso,28645
|
|
5
|
-
mypy_boto3_connectcases/client.pyi,sha256=_njsJ2WTiYjj1yZFL0itBv2BPde9os6s3IFWaOWdmu0,28642
|
|
6
|
-
mypy_boto3_connectcases/literals.py,sha256=YVOtd7Nok6bw-qCqsUJyFUH3F7edkG1OfN0eF0RvUh8,10648
|
|
7
|
-
mypy_boto3_connectcases/literals.pyi,sha256=eeniNLYCx8biSo1IMaHGfeSgtPvccl66oIaQ7MDMIVM,10646
|
|
8
|
-
mypy_boto3_connectcases/paginator.py,sha256=VKOWiL08DOZ3lB_xJZ01gH-fvEkvqlutJbryv7HxuaA,6356
|
|
9
|
-
mypy_boto3_connectcases/paginator.pyi,sha256=-UKGqiEly4IcbmX1fj_5KoE7UwNfnXfFQZK58_nHx9U,6343
|
|
10
|
-
mypy_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_connectcases/type_defs.py,sha256=OYCHhjf5NgIfOnWE5Z3AmX_j31BZdFPkFCh1O4GSz_8,35114
|
|
12
|
-
mypy_boto3_connectcases/type_defs.pyi,sha256=hbIuf3hv2uyfQO9JNzJ7OvfKFkK6Gj47YH-pUGjaJlo,34952
|
|
13
|
-
mypy_boto3_connectcases/version.py,sha256=OHPC7HoA44uIF6yFy8xLZmr64QoXQIVmZo5EBcZ4Cv8,93
|
|
14
|
-
mypy_boto3_connectcases-1.40.64.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
mypy_boto3_connectcases-1.40.64.dist-info/METADATA,sha256=c9f7TT10y2Dv2-FYyIR47SU2nWd1V3GBxQdcRFUxkQA,15628
|
|
16
|
-
mypy_boto3_connectcases-1.40.64.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
mypy_boto3_connectcases-1.40.64.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
|
|
18
|
-
mypy_boto3_connectcases-1.40.64.dist-info/RECORD,,
|
{mypy_boto3_connectcases-1.40.64.dist-info → mypy_boto3_connectcases-1.42.3.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
{mypy_boto3_connectcases-1.40.64.dist-info → mypy_boto3_connectcases-1.42.3.dist-info}/top_level.txt
RENAMED
|
File without changes
|