mypy-boto3-connectcases 1.34.2__py3-none-any.whl → 1.34.94__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/__init__.py +0 -1
- mypy_boto3_connectcases/__main__.py +8 -7
- mypy_boto3_connectcases/client.py +65 -20
- mypy_boto3_connectcases/client.pyi +65 -19
- mypy_boto3_connectcases/literals.py +14 -6
- mypy_boto3_connectcases/literals.pyi +14 -4
- mypy_boto3_connectcases/paginator.py +2 -3
- mypy_boto3_connectcases/paginator.pyi +2 -2
- mypy_boto3_connectcases/type_defs.py +258 -57
- mypy_boto3_connectcases/type_defs.pyi +258 -56
- mypy_boto3_connectcases/version.py +1 -1
- {mypy_boto3_connectcases-1.34.2.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/LICENSE +1 -1
- {mypy_boto3_connectcases-1.34.2.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/METADATA +10 -11
- mypy_boto3_connectcases-1.34.94.dist-info/RECORD +18 -0
- {mypy_boto3_connectcases-1.34.2.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/WHEEL +1 -1
- mypy_boto3_connectcases-1.34.2.dist-info/RECORD +0 -18
- {mypy_boto3_connectcases-1.34.2.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/top_level.txt +0 -0
|
@@ -6,17 +6,18 @@ Type annotations for connectcases service type definitions.
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
8
8
|
```python
|
|
9
|
-
from mypy_boto3_connectcases.type_defs import
|
|
9
|
+
from mypy_boto3_connectcases.type_defs import AuditEventFieldValueUnionTypeDef
|
|
10
10
|
|
|
11
|
-
data:
|
|
11
|
+
data: AuditEventFieldValueUnionTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
|
|
15
15
|
import sys
|
|
16
16
|
from datetime import datetime
|
|
17
|
-
from typing import Any, Dict, List, Mapping, Sequence
|
|
17
|
+
from typing import Any, Dict, List, Mapping, Sequence, Union
|
|
18
18
|
|
|
19
19
|
from .literals import (
|
|
20
|
+
AuditEventTypeType,
|
|
20
21
|
DomainStatusType,
|
|
21
22
|
FieldNamespaceType,
|
|
22
23
|
FieldTypeType,
|
|
@@ -39,6 +40,8 @@ else:
|
|
|
39
40
|
from typing_extensions import TypedDict
|
|
40
41
|
|
|
41
42
|
__all__ = (
|
|
43
|
+
"AuditEventFieldValueUnionTypeDef",
|
|
44
|
+
"UserUnionTypeDef",
|
|
42
45
|
"FieldIdentifierTypeDef",
|
|
43
46
|
"FieldErrorTypeDef",
|
|
44
47
|
"GetFieldResponseTypeDef",
|
|
@@ -52,15 +55,20 @@ __all__ = (
|
|
|
52
55
|
"ContactTypeDef",
|
|
53
56
|
"CreateDomainRequestRequestTypeDef",
|
|
54
57
|
"CreateFieldRequestRequestTypeDef",
|
|
55
|
-
"UserUnionTypeDef",
|
|
56
58
|
"LayoutConfigurationTypeDef",
|
|
57
59
|
"RequiredFieldTypeDef",
|
|
58
60
|
"DeleteDomainRequestRequestTypeDef",
|
|
61
|
+
"DeleteFieldRequestRequestTypeDef",
|
|
62
|
+
"DeleteLayoutRequestRequestTypeDef",
|
|
63
|
+
"DeleteTemplateRequestRequestTypeDef",
|
|
59
64
|
"DomainSummaryTypeDef",
|
|
60
65
|
"RelatedItemEventIncludedDataTypeDef",
|
|
61
66
|
"FieldItemTypeDef",
|
|
62
67
|
"FieldSummaryTypeDef",
|
|
68
|
+
"FieldValueUnionExtraOutputTypeDef",
|
|
69
|
+
"FieldValueUnionOutputTypeDef",
|
|
63
70
|
"FieldValueUnionTypeDef",
|
|
71
|
+
"GetCaseAuditEventsRequestRequestTypeDef",
|
|
64
72
|
"GetCaseEventConfigurationRequestRequestTypeDef",
|
|
65
73
|
"GetDomainRequestRequestTypeDef",
|
|
66
74
|
"GetLayoutRequestRequestTypeDef",
|
|
@@ -79,7 +87,10 @@ __all__ = (
|
|
|
79
87
|
"TagResourceRequestRequestTypeDef",
|
|
80
88
|
"UntagResourceRequestRequestTypeDef",
|
|
81
89
|
"UpdateFieldRequestRequestTypeDef",
|
|
90
|
+
"AuditEventFieldTypeDef",
|
|
91
|
+
"AuditEventPerformedByTypeDef",
|
|
82
92
|
"BatchGetFieldRequestRequestTypeDef",
|
|
93
|
+
"CaseEventIncludedDataOutputTypeDef",
|
|
83
94
|
"CaseEventIncludedDataTypeDef",
|
|
84
95
|
"GetCaseRequestRequestTypeDef",
|
|
85
96
|
"BatchGetFieldResponseTypeDef",
|
|
@@ -103,38 +114,68 @@ __all__ = (
|
|
|
103
114
|
"GetTemplateResponseTypeDef",
|
|
104
115
|
"UpdateTemplateRequestRequestTypeDef",
|
|
105
116
|
"ListDomainsResponseTypeDef",
|
|
117
|
+
"FieldGroupOutputTypeDef",
|
|
106
118
|
"FieldGroupTypeDef",
|
|
107
119
|
"ListFieldsResponseTypeDef",
|
|
120
|
+
"FieldValueExtraOutputTypeDef",
|
|
121
|
+
"FieldValueOutputTypeDef",
|
|
108
122
|
"FieldValueTypeDef",
|
|
109
123
|
"ListLayoutsResponseTypeDef",
|
|
110
124
|
"ListTemplatesResponseTypeDef",
|
|
111
125
|
"SearchCasesRequestRequestTypeDef",
|
|
126
|
+
"AuditEventTypeDef",
|
|
127
|
+
"EventIncludedDataOutputTypeDef",
|
|
112
128
|
"EventIncludedDataTypeDef",
|
|
113
129
|
"SearchRelatedItemsResponseItemTypeDef",
|
|
114
130
|
"SearchRelatedItemsRequestRequestTypeDef",
|
|
115
131
|
"SearchRelatedItemsRequestSearchRelatedItemsPaginateTypeDef",
|
|
116
132
|
"CreateRelatedItemRequestRequestTypeDef",
|
|
133
|
+
"SectionOutputTypeDef",
|
|
117
134
|
"SectionTypeDef",
|
|
118
|
-
"CreateCaseRequestRequestTypeDef",
|
|
119
|
-
"FieldFilterTypeDef",
|
|
120
135
|
"GetCaseResponseTypeDef",
|
|
121
136
|
"SearchCasesResponseItemTypeDef",
|
|
122
|
-
"
|
|
137
|
+
"FieldFilterTypeDef",
|
|
138
|
+
"FieldValueExtraUnionTypeDef",
|
|
139
|
+
"GetCaseAuditEventsResponseTypeDef",
|
|
140
|
+
"EventBridgeConfigurationOutputTypeDef",
|
|
123
141
|
"EventBridgeConfigurationTypeDef",
|
|
124
142
|
"SearchRelatedItemsResponseTypeDef",
|
|
143
|
+
"LayoutSectionsOutputTypeDef",
|
|
125
144
|
"LayoutSectionsTypeDef",
|
|
126
|
-
"CaseFilterTypeDef",
|
|
127
145
|
"SearchCasesResponseTypeDef",
|
|
146
|
+
"CaseFilterTypeDef",
|
|
147
|
+
"CreateCaseRequestRequestTypeDef",
|
|
148
|
+
"UpdateCaseRequestRequestTypeDef",
|
|
128
149
|
"GetCaseEventConfigurationResponseTypeDef",
|
|
150
|
+
"EventBridgeConfigurationUnionTypeDef",
|
|
129
151
|
"PutCaseEventConfigurationRequestRequestTypeDef",
|
|
152
|
+
"BasicLayoutOutputTypeDef",
|
|
130
153
|
"BasicLayoutTypeDef",
|
|
131
154
|
"SearchCasesRequestSearchCasesPaginateTypeDef",
|
|
155
|
+
"LayoutContentOutputTypeDef",
|
|
132
156
|
"LayoutContentTypeDef",
|
|
133
|
-
"CreateLayoutRequestRequestTypeDef",
|
|
134
157
|
"GetLayoutResponseTypeDef",
|
|
158
|
+
"CreateLayoutRequestRequestTypeDef",
|
|
159
|
+
"LayoutContentUnionTypeDef",
|
|
135
160
|
"UpdateLayoutRequestRequestTypeDef",
|
|
136
161
|
)
|
|
137
162
|
|
|
163
|
+
AuditEventFieldValueUnionTypeDef = TypedDict(
|
|
164
|
+
"AuditEventFieldValueUnionTypeDef",
|
|
165
|
+
{
|
|
166
|
+
"booleanValue": NotRequired[bool],
|
|
167
|
+
"doubleValue": NotRequired[float],
|
|
168
|
+
"emptyValue": NotRequired[Dict[str, Any]],
|
|
169
|
+
"stringValue": NotRequired[str],
|
|
170
|
+
"userArnValue": NotRequired[str],
|
|
171
|
+
},
|
|
172
|
+
)
|
|
173
|
+
UserUnionTypeDef = TypedDict(
|
|
174
|
+
"UserUnionTypeDef",
|
|
175
|
+
{
|
|
176
|
+
"userArn": NotRequired[str],
|
|
177
|
+
},
|
|
178
|
+
)
|
|
138
179
|
FieldIdentifierTypeDef = TypedDict(
|
|
139
180
|
"FieldIdentifierTypeDef",
|
|
140
181
|
{
|
|
@@ -157,7 +198,10 @@ GetFieldResponseTypeDef = TypedDict(
|
|
|
157
198
|
"name": str,
|
|
158
199
|
"namespace": FieldNamespaceType,
|
|
159
200
|
"type": FieldTypeType,
|
|
201
|
+
"createdTime": NotRequired[datetime],
|
|
202
|
+
"deleted": NotRequired[bool],
|
|
160
203
|
"description": NotRequired[str],
|
|
204
|
+
"lastModifiedTime": NotRequired[datetime],
|
|
161
205
|
"tags": NotRequired[Dict[str, str]],
|
|
162
206
|
},
|
|
163
207
|
)
|
|
@@ -165,10 +209,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
165
209
|
"ResponseMetadataTypeDef",
|
|
166
210
|
{
|
|
167
211
|
"RequestId": str,
|
|
168
|
-
"HostId": str,
|
|
169
212
|
"HTTPStatusCode": int,
|
|
170
213
|
"HTTPHeaders": Dict[str, str],
|
|
171
214
|
"RetryAttempts": int,
|
|
215
|
+
"HostId": NotRequired[str],
|
|
172
216
|
},
|
|
173
217
|
)
|
|
174
218
|
FieldOptionTypeDef = TypedDict(
|
|
@@ -237,12 +281,6 @@ CreateFieldRequestRequestTypeDef = TypedDict(
|
|
|
237
281
|
"description": NotRequired[str],
|
|
238
282
|
},
|
|
239
283
|
)
|
|
240
|
-
UserUnionTypeDef = TypedDict(
|
|
241
|
-
"UserUnionTypeDef",
|
|
242
|
-
{
|
|
243
|
-
"userArn": NotRequired[str],
|
|
244
|
-
},
|
|
245
|
-
)
|
|
246
284
|
LayoutConfigurationTypeDef = TypedDict(
|
|
247
285
|
"LayoutConfigurationTypeDef",
|
|
248
286
|
{
|
|
@@ -261,6 +299,27 @@ DeleteDomainRequestRequestTypeDef = TypedDict(
|
|
|
261
299
|
"domainId": str,
|
|
262
300
|
},
|
|
263
301
|
)
|
|
302
|
+
DeleteFieldRequestRequestTypeDef = TypedDict(
|
|
303
|
+
"DeleteFieldRequestRequestTypeDef",
|
|
304
|
+
{
|
|
305
|
+
"domainId": str,
|
|
306
|
+
"fieldId": str,
|
|
307
|
+
},
|
|
308
|
+
)
|
|
309
|
+
DeleteLayoutRequestRequestTypeDef = TypedDict(
|
|
310
|
+
"DeleteLayoutRequestRequestTypeDef",
|
|
311
|
+
{
|
|
312
|
+
"domainId": str,
|
|
313
|
+
"layoutId": str,
|
|
314
|
+
},
|
|
315
|
+
)
|
|
316
|
+
DeleteTemplateRequestRequestTypeDef = TypedDict(
|
|
317
|
+
"DeleteTemplateRequestRequestTypeDef",
|
|
318
|
+
{
|
|
319
|
+
"domainId": str,
|
|
320
|
+
"templateId": str,
|
|
321
|
+
},
|
|
322
|
+
)
|
|
264
323
|
DomainSummaryTypeDef = TypedDict(
|
|
265
324
|
"DomainSummaryTypeDef",
|
|
266
325
|
{
|
|
@@ -291,6 +350,26 @@ FieldSummaryTypeDef = TypedDict(
|
|
|
291
350
|
"type": FieldTypeType,
|
|
292
351
|
},
|
|
293
352
|
)
|
|
353
|
+
FieldValueUnionExtraOutputTypeDef = TypedDict(
|
|
354
|
+
"FieldValueUnionExtraOutputTypeDef",
|
|
355
|
+
{
|
|
356
|
+
"booleanValue": NotRequired[bool],
|
|
357
|
+
"doubleValue": NotRequired[float],
|
|
358
|
+
"emptyValue": NotRequired[Dict[str, Any]],
|
|
359
|
+
"stringValue": NotRequired[str],
|
|
360
|
+
"userArnValue": NotRequired[str],
|
|
361
|
+
},
|
|
362
|
+
)
|
|
363
|
+
FieldValueUnionOutputTypeDef = TypedDict(
|
|
364
|
+
"FieldValueUnionOutputTypeDef",
|
|
365
|
+
{
|
|
366
|
+
"booleanValue": NotRequired[bool],
|
|
367
|
+
"doubleValue": NotRequired[float],
|
|
368
|
+
"emptyValue": NotRequired[Dict[str, Any]],
|
|
369
|
+
"stringValue": NotRequired[str],
|
|
370
|
+
"userArnValue": NotRequired[str],
|
|
371
|
+
},
|
|
372
|
+
)
|
|
294
373
|
FieldValueUnionTypeDef = TypedDict(
|
|
295
374
|
"FieldValueUnionTypeDef",
|
|
296
375
|
{
|
|
@@ -298,6 +377,16 @@ FieldValueUnionTypeDef = TypedDict(
|
|
|
298
377
|
"doubleValue": NotRequired[float],
|
|
299
378
|
"emptyValue": NotRequired[Mapping[str, Any]],
|
|
300
379
|
"stringValue": NotRequired[str],
|
|
380
|
+
"userArnValue": NotRequired[str],
|
|
381
|
+
},
|
|
382
|
+
)
|
|
383
|
+
GetCaseAuditEventsRequestRequestTypeDef = TypedDict(
|
|
384
|
+
"GetCaseAuditEventsRequestRequestTypeDef",
|
|
385
|
+
{
|
|
386
|
+
"caseId": str,
|
|
387
|
+
"domainId": str,
|
|
388
|
+
"maxResults": NotRequired[int],
|
|
389
|
+
"nextToken": NotRequired[str],
|
|
301
390
|
},
|
|
302
391
|
)
|
|
303
392
|
GetCaseEventConfigurationRequestRequestTypeDef = TypedDict(
|
|
@@ -438,6 +527,21 @@ UpdateFieldRequestRequestTypeDef = TypedDict(
|
|
|
438
527
|
"name": NotRequired[str],
|
|
439
528
|
},
|
|
440
529
|
)
|
|
530
|
+
AuditEventFieldTypeDef = TypedDict(
|
|
531
|
+
"AuditEventFieldTypeDef",
|
|
532
|
+
{
|
|
533
|
+
"eventFieldId": str,
|
|
534
|
+
"newValue": AuditEventFieldValueUnionTypeDef,
|
|
535
|
+
"oldValue": NotRequired[AuditEventFieldValueUnionTypeDef],
|
|
536
|
+
},
|
|
537
|
+
)
|
|
538
|
+
AuditEventPerformedByTypeDef = TypedDict(
|
|
539
|
+
"AuditEventPerformedByTypeDef",
|
|
540
|
+
{
|
|
541
|
+
"iamPrincipalArn": str,
|
|
542
|
+
"user": NotRequired[UserUnionTypeDef],
|
|
543
|
+
},
|
|
544
|
+
)
|
|
441
545
|
BatchGetFieldRequestRequestTypeDef = TypedDict(
|
|
442
546
|
"BatchGetFieldRequestRequestTypeDef",
|
|
443
547
|
{
|
|
@@ -445,10 +549,16 @@ BatchGetFieldRequestRequestTypeDef = TypedDict(
|
|
|
445
549
|
"fields": Sequence[FieldIdentifierTypeDef],
|
|
446
550
|
},
|
|
447
551
|
)
|
|
552
|
+
CaseEventIncludedDataOutputTypeDef = TypedDict(
|
|
553
|
+
"CaseEventIncludedDataOutputTypeDef",
|
|
554
|
+
{
|
|
555
|
+
"fields": List[FieldIdentifierTypeDef],
|
|
556
|
+
},
|
|
557
|
+
)
|
|
448
558
|
CaseEventIncludedDataTypeDef = TypedDict(
|
|
449
559
|
"CaseEventIncludedDataTypeDef",
|
|
450
560
|
{
|
|
451
|
-
"fields":
|
|
561
|
+
"fields": Sequence[FieldIdentifierTypeDef],
|
|
452
562
|
},
|
|
453
563
|
)
|
|
454
564
|
GetCaseRequestRequestTypeDef = TypedDict(
|
|
@@ -608,7 +718,10 @@ CreateTemplateRequestRequestTypeDef = TypedDict(
|
|
|
608
718
|
GetTemplateResponseTypeDef = TypedDict(
|
|
609
719
|
"GetTemplateResponseTypeDef",
|
|
610
720
|
{
|
|
721
|
+
"createdTime": datetime,
|
|
722
|
+
"deleted": bool,
|
|
611
723
|
"description": str,
|
|
724
|
+
"lastModifiedTime": datetime,
|
|
612
725
|
"layoutConfiguration": LayoutConfigurationTypeDef,
|
|
613
726
|
"name": str,
|
|
614
727
|
"requiredFields": List[RequiredFieldTypeDef],
|
|
@@ -639,6 +752,13 @@ ListDomainsResponseTypeDef = TypedDict(
|
|
|
639
752
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
640
753
|
},
|
|
641
754
|
)
|
|
755
|
+
FieldGroupOutputTypeDef = TypedDict(
|
|
756
|
+
"FieldGroupOutputTypeDef",
|
|
757
|
+
{
|
|
758
|
+
"fields": List[FieldItemTypeDef],
|
|
759
|
+
"name": NotRequired[str],
|
|
760
|
+
},
|
|
761
|
+
)
|
|
642
762
|
FieldGroupTypeDef = TypedDict(
|
|
643
763
|
"FieldGroupTypeDef",
|
|
644
764
|
{
|
|
@@ -654,6 +774,20 @@ ListFieldsResponseTypeDef = TypedDict(
|
|
|
654
774
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
655
775
|
},
|
|
656
776
|
)
|
|
777
|
+
FieldValueExtraOutputTypeDef = TypedDict(
|
|
778
|
+
"FieldValueExtraOutputTypeDef",
|
|
779
|
+
{
|
|
780
|
+
"id": str,
|
|
781
|
+
"value": FieldValueUnionExtraOutputTypeDef,
|
|
782
|
+
},
|
|
783
|
+
)
|
|
784
|
+
FieldValueOutputTypeDef = TypedDict(
|
|
785
|
+
"FieldValueOutputTypeDef",
|
|
786
|
+
{
|
|
787
|
+
"id": str,
|
|
788
|
+
"value": FieldValueUnionOutputTypeDef,
|
|
789
|
+
},
|
|
790
|
+
)
|
|
657
791
|
FieldValueTypeDef = TypedDict(
|
|
658
792
|
"FieldValueTypeDef",
|
|
659
793
|
{
|
|
@@ -689,6 +823,24 @@ SearchCasesRequestRequestTypeDef = TypedDict(
|
|
|
689
823
|
"sorts": NotRequired[Sequence[SortTypeDef]],
|
|
690
824
|
},
|
|
691
825
|
)
|
|
826
|
+
AuditEventTypeDef = TypedDict(
|
|
827
|
+
"AuditEventTypeDef",
|
|
828
|
+
{
|
|
829
|
+
"eventId": str,
|
|
830
|
+
"fields": List[AuditEventFieldTypeDef],
|
|
831
|
+
"performedTime": datetime,
|
|
832
|
+
"type": AuditEventTypeType,
|
|
833
|
+
"performedBy": NotRequired[AuditEventPerformedByTypeDef],
|
|
834
|
+
"relatedItemType": NotRequired[RelatedItemTypeType],
|
|
835
|
+
},
|
|
836
|
+
)
|
|
837
|
+
EventIncludedDataOutputTypeDef = TypedDict(
|
|
838
|
+
"EventIncludedDataOutputTypeDef",
|
|
839
|
+
{
|
|
840
|
+
"caseData": NotRequired[CaseEventIncludedDataOutputTypeDef],
|
|
841
|
+
"relatedItemData": NotRequired[RelatedItemEventIncludedDataTypeDef],
|
|
842
|
+
},
|
|
843
|
+
)
|
|
692
844
|
EventIncludedDataTypeDef = TypedDict(
|
|
693
845
|
"EventIncludedDataTypeDef",
|
|
694
846
|
{
|
|
@@ -736,19 +888,35 @@ CreateRelatedItemRequestRequestTypeDef = TypedDict(
|
|
|
736
888
|
"performedBy": NotRequired[UserUnionTypeDef],
|
|
737
889
|
},
|
|
738
890
|
)
|
|
891
|
+
SectionOutputTypeDef = TypedDict(
|
|
892
|
+
"SectionOutputTypeDef",
|
|
893
|
+
{
|
|
894
|
+
"fieldGroup": NotRequired[FieldGroupOutputTypeDef],
|
|
895
|
+
},
|
|
896
|
+
)
|
|
739
897
|
SectionTypeDef = TypedDict(
|
|
740
898
|
"SectionTypeDef",
|
|
741
899
|
{
|
|
742
900
|
"fieldGroup": NotRequired[FieldGroupTypeDef],
|
|
743
901
|
},
|
|
744
902
|
)
|
|
745
|
-
|
|
746
|
-
"
|
|
903
|
+
GetCaseResponseTypeDef = TypedDict(
|
|
904
|
+
"GetCaseResponseTypeDef",
|
|
747
905
|
{
|
|
748
|
-
"
|
|
749
|
-
"
|
|
906
|
+
"fields": List[FieldValueOutputTypeDef],
|
|
907
|
+
"nextToken": str,
|
|
908
|
+
"tags": Dict[str, str],
|
|
750
909
|
"templateId": str,
|
|
751
|
-
"
|
|
910
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
911
|
+
},
|
|
912
|
+
)
|
|
913
|
+
SearchCasesResponseItemTypeDef = TypedDict(
|
|
914
|
+
"SearchCasesResponseItemTypeDef",
|
|
915
|
+
{
|
|
916
|
+
"caseId": str,
|
|
917
|
+
"fields": List[FieldValueOutputTypeDef],
|
|
918
|
+
"templateId": str,
|
|
919
|
+
"tags": NotRequired[Dict[str, str]],
|
|
752
920
|
},
|
|
753
921
|
)
|
|
754
922
|
FieldFilterTypeDef = TypedDict(
|
|
@@ -762,31 +930,20 @@ FieldFilterTypeDef = TypedDict(
|
|
|
762
930
|
"lessThanOrEqualTo": NotRequired[FieldValueTypeDef],
|
|
763
931
|
},
|
|
764
932
|
)
|
|
765
|
-
|
|
766
|
-
|
|
933
|
+
FieldValueExtraUnionTypeDef = Union[FieldValueTypeDef, FieldValueExtraOutputTypeDef]
|
|
934
|
+
GetCaseAuditEventsResponseTypeDef = TypedDict(
|
|
935
|
+
"GetCaseAuditEventsResponseTypeDef",
|
|
767
936
|
{
|
|
768
|
-
"
|
|
937
|
+
"auditEvents": List[AuditEventTypeDef],
|
|
769
938
|
"nextToken": str,
|
|
770
|
-
"tags": Dict[str, str],
|
|
771
|
-
"templateId": str,
|
|
772
939
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
773
940
|
},
|
|
774
941
|
)
|
|
775
|
-
|
|
776
|
-
"
|
|
777
|
-
{
|
|
778
|
-
"caseId": str,
|
|
779
|
-
"fields": List[FieldValueTypeDef],
|
|
780
|
-
"templateId": str,
|
|
781
|
-
"tags": NotRequired[Dict[str, str]],
|
|
782
|
-
},
|
|
783
|
-
)
|
|
784
|
-
UpdateCaseRequestRequestTypeDef = TypedDict(
|
|
785
|
-
"UpdateCaseRequestRequestTypeDef",
|
|
942
|
+
EventBridgeConfigurationOutputTypeDef = TypedDict(
|
|
943
|
+
"EventBridgeConfigurationOutputTypeDef",
|
|
786
944
|
{
|
|
787
|
-
"
|
|
788
|
-
"
|
|
789
|
-
"fields": Sequence[FieldValueTypeDef],
|
|
945
|
+
"enabled": bool,
|
|
946
|
+
"includedData": NotRequired[EventIncludedDataOutputTypeDef],
|
|
790
947
|
},
|
|
791
948
|
)
|
|
792
949
|
EventBridgeConfigurationTypeDef = TypedDict(
|
|
@@ -804,12 +961,26 @@ SearchRelatedItemsResponseTypeDef = TypedDict(
|
|
|
804
961
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
805
962
|
},
|
|
806
963
|
)
|
|
964
|
+
LayoutSectionsOutputTypeDef = TypedDict(
|
|
965
|
+
"LayoutSectionsOutputTypeDef",
|
|
966
|
+
{
|
|
967
|
+
"sections": NotRequired[List[SectionOutputTypeDef]],
|
|
968
|
+
},
|
|
969
|
+
)
|
|
807
970
|
LayoutSectionsTypeDef = TypedDict(
|
|
808
971
|
"LayoutSectionsTypeDef",
|
|
809
972
|
{
|
|
810
973
|
"sections": NotRequired[Sequence[SectionTypeDef]],
|
|
811
974
|
},
|
|
812
975
|
)
|
|
976
|
+
SearchCasesResponseTypeDef = TypedDict(
|
|
977
|
+
"SearchCasesResponseTypeDef",
|
|
978
|
+
{
|
|
979
|
+
"cases": List[SearchCasesResponseItemTypeDef],
|
|
980
|
+
"nextToken": str,
|
|
981
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
982
|
+
},
|
|
983
|
+
)
|
|
813
984
|
CaseFilterTypeDef = TypedDict(
|
|
814
985
|
"CaseFilterTypeDef",
|
|
815
986
|
{
|
|
@@ -819,21 +990,35 @@ CaseFilterTypeDef = TypedDict(
|
|
|
819
990
|
"orAll": NotRequired[Sequence[Dict[str, Any]]],
|
|
820
991
|
},
|
|
821
992
|
)
|
|
822
|
-
|
|
823
|
-
"
|
|
993
|
+
CreateCaseRequestRequestTypeDef = TypedDict(
|
|
994
|
+
"CreateCaseRequestRequestTypeDef",
|
|
824
995
|
{
|
|
825
|
-
"
|
|
826
|
-
"
|
|
827
|
-
"
|
|
996
|
+
"domainId": str,
|
|
997
|
+
"fields": Sequence[FieldValueExtraUnionTypeDef],
|
|
998
|
+
"templateId": str,
|
|
999
|
+
"clientToken": NotRequired[str],
|
|
1000
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
1001
|
+
},
|
|
1002
|
+
)
|
|
1003
|
+
UpdateCaseRequestRequestTypeDef = TypedDict(
|
|
1004
|
+
"UpdateCaseRequestRequestTypeDef",
|
|
1005
|
+
{
|
|
1006
|
+
"caseId": str,
|
|
1007
|
+
"domainId": str,
|
|
1008
|
+
"fields": Sequence[FieldValueExtraUnionTypeDef],
|
|
1009
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
828
1010
|
},
|
|
829
1011
|
)
|
|
830
1012
|
GetCaseEventConfigurationResponseTypeDef = TypedDict(
|
|
831
1013
|
"GetCaseEventConfigurationResponseTypeDef",
|
|
832
1014
|
{
|
|
833
|
-
"eventBridge":
|
|
1015
|
+
"eventBridge": EventBridgeConfigurationOutputTypeDef,
|
|
834
1016
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
835
1017
|
},
|
|
836
1018
|
)
|
|
1019
|
+
EventBridgeConfigurationUnionTypeDef = Union[
|
|
1020
|
+
EventBridgeConfigurationTypeDef, EventBridgeConfigurationOutputTypeDef
|
|
1021
|
+
]
|
|
837
1022
|
PutCaseEventConfigurationRequestRequestTypeDef = TypedDict(
|
|
838
1023
|
"PutCaseEventConfigurationRequestRequestTypeDef",
|
|
839
1024
|
{
|
|
@@ -841,6 +1026,13 @@ PutCaseEventConfigurationRequestRequestTypeDef = TypedDict(
|
|
|
841
1026
|
"eventBridge": EventBridgeConfigurationTypeDef,
|
|
842
1027
|
},
|
|
843
1028
|
)
|
|
1029
|
+
BasicLayoutOutputTypeDef = TypedDict(
|
|
1030
|
+
"BasicLayoutOutputTypeDef",
|
|
1031
|
+
{
|
|
1032
|
+
"moreInfo": NotRequired[LayoutSectionsOutputTypeDef],
|
|
1033
|
+
"topPanel": NotRequired[LayoutSectionsOutputTypeDef],
|
|
1034
|
+
},
|
|
1035
|
+
)
|
|
844
1036
|
BasicLayoutTypeDef = TypedDict(
|
|
845
1037
|
"BasicLayoutTypeDef",
|
|
846
1038
|
{
|
|
@@ -859,24 +1051,25 @@ SearchCasesRequestSearchCasesPaginateTypeDef = TypedDict(
|
|
|
859
1051
|
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
860
1052
|
},
|
|
861
1053
|
)
|
|
862
|
-
|
|
863
|
-
"
|
|
1054
|
+
LayoutContentOutputTypeDef = TypedDict(
|
|
1055
|
+
"LayoutContentOutputTypeDef",
|
|
864
1056
|
{
|
|
865
|
-
"basic": NotRequired[
|
|
1057
|
+
"basic": NotRequired[BasicLayoutOutputTypeDef],
|
|
866
1058
|
},
|
|
867
1059
|
)
|
|
868
|
-
|
|
869
|
-
"
|
|
1060
|
+
LayoutContentTypeDef = TypedDict(
|
|
1061
|
+
"LayoutContentTypeDef",
|
|
870
1062
|
{
|
|
871
|
-
"
|
|
872
|
-
"domainId": str,
|
|
873
|
-
"name": str,
|
|
1063
|
+
"basic": NotRequired[BasicLayoutTypeDef],
|
|
874
1064
|
},
|
|
875
1065
|
)
|
|
876
1066
|
GetLayoutResponseTypeDef = TypedDict(
|
|
877
1067
|
"GetLayoutResponseTypeDef",
|
|
878
1068
|
{
|
|
879
|
-
"content":
|
|
1069
|
+
"content": LayoutContentOutputTypeDef,
|
|
1070
|
+
"createdTime": datetime,
|
|
1071
|
+
"deleted": bool,
|
|
1072
|
+
"lastModifiedTime": datetime,
|
|
880
1073
|
"layoutArn": str,
|
|
881
1074
|
"layoutId": str,
|
|
882
1075
|
"name": str,
|
|
@@ -884,6 +1077,15 @@ GetLayoutResponseTypeDef = TypedDict(
|
|
|
884
1077
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
885
1078
|
},
|
|
886
1079
|
)
|
|
1080
|
+
CreateLayoutRequestRequestTypeDef = TypedDict(
|
|
1081
|
+
"CreateLayoutRequestRequestTypeDef",
|
|
1082
|
+
{
|
|
1083
|
+
"content": LayoutContentTypeDef,
|
|
1084
|
+
"domainId": str,
|
|
1085
|
+
"name": str,
|
|
1086
|
+
},
|
|
1087
|
+
)
|
|
1088
|
+
LayoutContentUnionTypeDef = Union[LayoutContentTypeDef, LayoutContentOutputTypeDef]
|
|
887
1089
|
UpdateLayoutRequestRequestTypeDef = TypedDict(
|
|
888
1090
|
"UpdateLayoutRequestRequestTypeDef",
|
|
889
1091
|
{
|
{mypy_boto3_connectcases-1.34.2.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-connectcases
|
|
3
|
-
Version: 1.34.
|
|
4
|
-
Summary: Type annotations for boto3.ConnectCases 1.34.
|
|
3
|
+
Version: 1.34.94
|
|
4
|
+
Summary: Type annotations for boto3.ConnectCases 1.34.94 service generated with mypy-boto3-builder 7.24.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
17
|
Classifier: Natural Language :: English
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -26,8 +25,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
26
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
27
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
|
-
Classifier: Typing ::
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Classifier: Typing :: Stubs Only
|
|
29
|
+
Requires-Python: >=3.8
|
|
31
30
|
Description-Content-Type: text/markdown
|
|
32
31
|
License-File: LICENSE
|
|
33
32
|
Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
@@ -44,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
44
43
|

|
|
45
44
|
|
|
46
45
|
Type annotations for
|
|
47
|
-
[boto3.ConnectCases 1.34.
|
|
46
|
+
[boto3.ConnectCases 1.34.94](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases)
|
|
48
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
49
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
50
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -53,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
53
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
53
|
|
|
55
54
|
Generated by
|
|
56
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.24.0](https://github.com/youtype/mypy_boto3_builder).
|
|
57
56
|
|
|
58
57
|
More information can be found on
|
|
59
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -308,10 +307,10 @@ Full list of `ConnectCases` Literals can be found in
|
|
|
308
307
|
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/literals/).
|
|
309
308
|
|
|
310
309
|
```python
|
|
311
|
-
from mypy_boto3_connectcases.literals import
|
|
310
|
+
from mypy_boto3_connectcases.literals import AuditEventTypeType
|
|
312
311
|
|
|
313
312
|
|
|
314
|
-
def check_value(value:
|
|
313
|
+
def check_value(value: AuditEventTypeType) -> bool: ...
|
|
315
314
|
```
|
|
316
315
|
|
|
317
316
|
<a id="type-definitions"></a>
|
|
@@ -325,10 +324,10 @@ Full list of `ConnectCases` TypeDefs can be found in
|
|
|
325
324
|
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/type_defs/).
|
|
326
325
|
|
|
327
326
|
```python
|
|
328
|
-
from mypy_boto3_connectcases.type_defs import
|
|
327
|
+
from mypy_boto3_connectcases.type_defs import AuditEventFieldValueUnionTypeDef
|
|
329
328
|
|
|
330
329
|
|
|
331
|
-
def get_value() ->
|
|
330
|
+
def get_value() -> AuditEventFieldValueUnionTypeDef:
|
|
332
331
|
return {...}
|
|
333
332
|
```
|
|
334
333
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_connectcases/__init__.py,sha256=qOc6JM8LUbn7fZPwiPbo0EAcUbLbzyIcQG45TlQCM5A,808
|
|
2
|
+
mypy_boto3_connectcases/__init__.pyi,sha256=qOc6JM8LUbn7fZPwiPbo0EAcUbLbzyIcQG45TlQCM5A,808
|
|
3
|
+
mypy_boto3_connectcases/__main__.py,sha256=Zr039MPYyM8cC4n8g7PytswVSSBJdYNcrnNB1Yqbo68,939
|
|
4
|
+
mypy_boto3_connectcases/client.py,sha256=2GKTFLRLKImbp85Fxk4ewUitxZcYWCtSdsIPgL37Df8,24124
|
|
5
|
+
mypy_boto3_connectcases/client.pyi,sha256=WzESKL0ovBMSMLNW94wA0Js0CXa6yUTE7ZYAC7Dp7U4,24121
|
|
6
|
+
mypy_boto3_connectcases/literals.py,sha256=Vvk5caCgEBHlMMlJJQmgvbAKWSJeDT5P3wKfT2W9tds,9423
|
|
7
|
+
mypy_boto3_connectcases/literals.pyi,sha256=Vvk5caCgEBHlMMlJJQmgvbAKWSJeDT5P3wKfT2W9tds,9423
|
|
8
|
+
mypy_boto3_connectcases/paginator.py,sha256=7_g648l3A4SY5WozI9QzxQI7H0pltsyUAuEM2ywJoKc,3392
|
|
9
|
+
mypy_boto3_connectcases/paginator.pyi,sha256=vhXGSeAYYp5-Uy1PGSSmoi6yJ3R6uA8jBDiaTrA1g8A,3389
|
|
10
|
+
mypy_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_connectcases/type_defs.py,sha256=OIgePJa2QSHWcWB97dZHW1MRyhLW6VIC3XohBo4HjGo,30101
|
|
12
|
+
mypy_boto3_connectcases/type_defs.pyi,sha256=OIgePJa2QSHWcWB97dZHW1MRyhLW6VIC3XohBo4HjGo,30101
|
|
13
|
+
mypy_boto3_connectcases/version.py,sha256=R4osyOhdFdWW6UP47Q-8si2wma-dpx0HxDt2P4O17lM,62
|
|
14
|
+
mypy_boto3_connectcases-1.34.94.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
15
|
+
mypy_boto3_connectcases-1.34.94.dist-info/METADATA,sha256=o65BtTqYCldyG_HMKttjz6JV8nanMo0hJzhjpkSuprU,13124
|
|
16
|
+
mypy_boto3_connectcases-1.34.94.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
17
|
+
mypy_boto3_connectcases-1.34.94.dist-info/top_level.txt,sha256=RqxtwisC_SxV6gssbnzrNY0Ytk0di6EH_J9Hkhs2EDE,24
|
|
18
|
+
mypy_boto3_connectcases-1.34.94.dist-info/RECORD,,
|