types-boto3-connectcases 1.40.0__py3-none-any.whl → 1.40.44__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/__init__.py +9 -1
- types_boto3_connectcases/__init__.pyi +9 -1
- types_boto3_connectcases/__main__.py +3 -3
- types_boto3_connectcases/client.py +29 -1
- types_boto3_connectcases/client.pyi +29 -1
- types_boto3_connectcases/literals.py +12 -15
- types_boto3_connectcases/literals.pyi +12 -15
- types_boto3_connectcases/paginator.py +31 -1
- types_boto3_connectcases/paginator.pyi +28 -1
- types_boto3_connectcases/type_defs.py +241 -126
- types_boto3_connectcases/type_defs.pyi +225 -122
- types_boto3_connectcases/version.py +1 -1
- {types_boto3_connectcases-1.40.0.dist-info → types_boto3_connectcases-1.40.44.dist-info}/METADATA +9 -5
- types_boto3_connectcases-1.40.44.dist-info/RECORD +18 -0
- types_boto3_connectcases-1.40.0.dist-info/RECORD +0 -18
- {types_boto3_connectcases-1.40.0.dist-info → types_boto3_connectcases-1.40.44.dist-info}/WHEEL +0 -0
- {types_boto3_connectcases-1.40.0.dist-info → types_boto3_connectcases-1.40.44.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_connectcases-1.40.0.dist-info → types_boto3_connectcases-1.40.44.dist-info}/top_level.txt +0 -0
|
@@ -27,6 +27,7 @@ from .literals import (
|
|
|
27
27
|
FieldTypeType,
|
|
28
28
|
OrderType,
|
|
29
29
|
RelatedItemTypeType,
|
|
30
|
+
SearchAllRelatedItemsSortPropertyType,
|
|
30
31
|
SlaStatusType,
|
|
31
32
|
TemplateStatusType,
|
|
32
33
|
)
|
|
@@ -71,6 +72,9 @@ __all__ = (
|
|
|
71
72
|
"CaseRuleSummaryTypeDef",
|
|
72
73
|
"CaseSummaryTypeDef",
|
|
73
74
|
"CommentContentTypeDef",
|
|
75
|
+
"ConnectCaseContentTypeDef",
|
|
76
|
+
"ConnectCaseFilterTypeDef",
|
|
77
|
+
"ConnectCaseInputContentTypeDef",
|
|
74
78
|
"ContactContentTypeDef",
|
|
75
79
|
"ContactFilterTypeDef",
|
|
76
80
|
"ContactTypeDef",
|
|
@@ -88,6 +92,12 @@ __all__ = (
|
|
|
88
92
|
"CreateRelatedItemResponseTypeDef",
|
|
89
93
|
"CreateTemplateRequestTypeDef",
|
|
90
94
|
"CreateTemplateResponseTypeDef",
|
|
95
|
+
"CustomContentTypeDef",
|
|
96
|
+
"CustomFieldsFilterPaginatorTypeDef",
|
|
97
|
+
"CustomFieldsFilterTypeDef",
|
|
98
|
+
"CustomFilterPaginatorTypeDef",
|
|
99
|
+
"CustomFilterTypeDef",
|
|
100
|
+
"CustomInputContentTypeDef",
|
|
91
101
|
"DeleteCaseRequestTypeDef",
|
|
92
102
|
"DeleteCaseRuleRequestTypeDef",
|
|
93
103
|
"DeleteDomainRequestTypeDef",
|
|
@@ -165,11 +175,17 @@ __all__ = (
|
|
|
165
175
|
"RelatedItemContentTypeDef",
|
|
166
176
|
"RelatedItemEventIncludedDataTypeDef",
|
|
167
177
|
"RelatedItemInputContentTypeDef",
|
|
178
|
+
"RelatedItemTypeFilterPaginatorTypeDef",
|
|
168
179
|
"RelatedItemTypeFilterTypeDef",
|
|
169
180
|
"RequiredCaseRuleOutputTypeDef",
|
|
170
181
|
"RequiredCaseRuleTypeDef",
|
|
171
182
|
"RequiredFieldTypeDef",
|
|
172
183
|
"ResponseMetadataTypeDef",
|
|
184
|
+
"SearchAllRelatedItemsRequestPaginateTypeDef",
|
|
185
|
+
"SearchAllRelatedItemsRequestTypeDef",
|
|
186
|
+
"SearchAllRelatedItemsResponseItemTypeDef",
|
|
187
|
+
"SearchAllRelatedItemsResponseTypeDef",
|
|
188
|
+
"SearchAllRelatedItemsSortTypeDef",
|
|
173
189
|
"SearchCasesRequestPaginateTypeDef",
|
|
174
190
|
"SearchCasesRequestTypeDef",
|
|
175
191
|
"SearchCasesResponseItemTypeDef",
|
|
@@ -199,15 +215,15 @@ __all__ = (
|
|
|
199
215
|
)
|
|
200
216
|
|
|
201
217
|
class AuditEventFieldValueUnionTypeDef(TypedDict):
|
|
202
|
-
|
|
218
|
+
stringValue: NotRequired[str]
|
|
203
219
|
doubleValue: NotRequired[float]
|
|
220
|
+
booleanValue: NotRequired[bool]
|
|
204
221
|
emptyValue: NotRequired[Dict[str, Any]]
|
|
205
|
-
stringValue: NotRequired[str]
|
|
206
222
|
userArnValue: NotRequired[str]
|
|
207
223
|
|
|
208
224
|
class UserUnionTypeDef(TypedDict):
|
|
209
|
-
customEntity: NotRequired[str]
|
|
210
225
|
userArn: NotRequired[str]
|
|
226
|
+
customEntity: NotRequired[str]
|
|
211
227
|
|
|
212
228
|
CaseRuleIdentifierTypeDef = TypedDict(
|
|
213
229
|
"CaseRuleIdentifierTypeDef",
|
|
@@ -218,8 +234,8 @@ CaseRuleIdentifierTypeDef = TypedDict(
|
|
|
218
234
|
CaseRuleErrorTypeDef = TypedDict(
|
|
219
235
|
"CaseRuleErrorTypeDef",
|
|
220
236
|
{
|
|
221
|
-
"errorCode": str,
|
|
222
237
|
"id": str,
|
|
238
|
+
"errorCode": str,
|
|
223
239
|
"message": NotRequired[str],
|
|
224
240
|
},
|
|
225
241
|
)
|
|
@@ -240,56 +256,56 @@ FieldIdentifierTypeDef = TypedDict(
|
|
|
240
256
|
FieldErrorTypeDef = TypedDict(
|
|
241
257
|
"FieldErrorTypeDef",
|
|
242
258
|
{
|
|
243
|
-
"errorCode": str,
|
|
244
259
|
"id": str,
|
|
260
|
+
"errorCode": str,
|
|
245
261
|
"message": NotRequired[str],
|
|
246
262
|
},
|
|
247
263
|
)
|
|
248
264
|
GetFieldResponseTypeDef = TypedDict(
|
|
249
265
|
"GetFieldResponseTypeDef",
|
|
250
266
|
{
|
|
251
|
-
"fieldArn": str,
|
|
252
267
|
"fieldId": str,
|
|
253
268
|
"name": str,
|
|
254
|
-
"
|
|
269
|
+
"fieldArn": str,
|
|
255
270
|
"type": FieldTypeType,
|
|
256
|
-
"
|
|
257
|
-
"deleted": NotRequired[bool],
|
|
271
|
+
"namespace": FieldNamespaceType,
|
|
258
272
|
"description": NotRequired[str],
|
|
259
|
-
"lastModifiedTime": NotRequired[datetime],
|
|
260
273
|
"tags": NotRequired[Dict[str, str]],
|
|
274
|
+
"deleted": NotRequired[bool],
|
|
275
|
+
"createdTime": NotRequired[datetime],
|
|
276
|
+
"lastModifiedTime": NotRequired[datetime],
|
|
261
277
|
},
|
|
262
278
|
)
|
|
263
279
|
|
|
264
280
|
class FieldOptionTypeDef(TypedDict):
|
|
265
|
-
active: bool
|
|
266
281
|
name: str
|
|
267
282
|
value: str
|
|
283
|
+
active: bool
|
|
268
284
|
|
|
269
285
|
class FieldOptionErrorTypeDef(TypedDict):
|
|
270
|
-
errorCode: str
|
|
271
286
|
message: str
|
|
287
|
+
errorCode: str
|
|
272
288
|
value: str
|
|
273
289
|
|
|
274
290
|
class OperandOneTypeDef(TypedDict):
|
|
275
291
|
fieldId: NotRequired[str]
|
|
276
292
|
|
|
277
293
|
class OperandTwoOutputTypeDef(TypedDict):
|
|
294
|
+
stringValue: NotRequired[str]
|
|
278
295
|
booleanValue: NotRequired[bool]
|
|
279
296
|
doubleValue: NotRequired[float]
|
|
280
297
|
emptyValue: NotRequired[Dict[str, Any]]
|
|
281
|
-
stringValue: NotRequired[str]
|
|
282
298
|
|
|
283
299
|
class OperandTwoTypeDef(TypedDict):
|
|
300
|
+
stringValue: NotRequired[str]
|
|
284
301
|
booleanValue: NotRequired[bool]
|
|
285
302
|
doubleValue: NotRequired[float]
|
|
286
303
|
emptyValue: NotRequired[Mapping[str, Any]]
|
|
287
|
-
stringValue: NotRequired[str]
|
|
288
304
|
|
|
289
305
|
class CaseRuleSummaryTypeDef(TypedDict):
|
|
290
|
-
caseRuleArn: str
|
|
291
306
|
caseRuleId: str
|
|
292
307
|
name: str
|
|
308
|
+
caseRuleArn: str
|
|
293
309
|
ruleType: Literal["Required"]
|
|
294
310
|
description: NotRequired[str]
|
|
295
311
|
|
|
@@ -301,10 +317,19 @@ class CommentContentTypeDef(TypedDict):
|
|
|
301
317
|
body: str
|
|
302
318
|
contentType: Literal["Text/Plain"]
|
|
303
319
|
|
|
320
|
+
class ConnectCaseContentTypeDef(TypedDict):
|
|
321
|
+
caseId: str
|
|
322
|
+
|
|
323
|
+
class ConnectCaseFilterTypeDef(TypedDict):
|
|
324
|
+
caseId: NotRequired[str]
|
|
325
|
+
|
|
326
|
+
class ConnectCaseInputContentTypeDef(TypedDict):
|
|
327
|
+
caseId: str
|
|
328
|
+
|
|
304
329
|
class ContactContentTypeDef(TypedDict):
|
|
330
|
+
contactArn: str
|
|
305
331
|
channel: str
|
|
306
332
|
connectedToSystemTime: datetime
|
|
307
|
-
contactArn: str
|
|
308
333
|
|
|
309
334
|
class ContactFilterTypeDef(TypedDict):
|
|
310
335
|
channel: NotRequired[Sequence[str]]
|
|
@@ -337,12 +362,12 @@ class TemplateRuleTypeDef(TypedDict):
|
|
|
337
362
|
fieldId: str
|
|
338
363
|
|
|
339
364
|
class DeleteCaseRequestTypeDef(TypedDict):
|
|
340
|
-
caseId: str
|
|
341
365
|
domainId: str
|
|
366
|
+
caseId: str
|
|
342
367
|
|
|
343
368
|
class DeleteCaseRuleRequestTypeDef(TypedDict):
|
|
344
|
-
caseRuleId: str
|
|
345
369
|
domainId: str
|
|
370
|
+
caseRuleId: str
|
|
346
371
|
|
|
347
372
|
class DeleteDomainRequestTypeDef(TypedDict):
|
|
348
373
|
domainId: str
|
|
@@ -356,8 +381,8 @@ class DeleteLayoutRequestTypeDef(TypedDict):
|
|
|
356
381
|
layoutId: str
|
|
357
382
|
|
|
358
383
|
class DeleteRelatedItemRequestTypeDef(TypedDict):
|
|
359
|
-
caseId: str
|
|
360
384
|
domainId: str
|
|
385
|
+
caseId: str
|
|
361
386
|
relatedItemId: str
|
|
362
387
|
|
|
363
388
|
class DeleteTemplateRequestTypeDef(TypedDict):
|
|
@@ -365,8 +390,8 @@ class DeleteTemplateRequestTypeDef(TypedDict):
|
|
|
365
390
|
templateId: str
|
|
366
391
|
|
|
367
392
|
class DomainSummaryTypeDef(TypedDict):
|
|
368
|
-
domainArn: str
|
|
369
393
|
domainId: str
|
|
394
|
+
domainArn: str
|
|
370
395
|
name: str
|
|
371
396
|
|
|
372
397
|
class RelatedItemEventIncludedDataTypeDef(TypedDict):
|
|
@@ -381,26 +406,26 @@ FieldItemTypeDef = TypedDict(
|
|
|
381
406
|
FieldSummaryTypeDef = TypedDict(
|
|
382
407
|
"FieldSummaryTypeDef",
|
|
383
408
|
{
|
|
384
|
-
"fieldArn": str,
|
|
385
409
|
"fieldId": str,
|
|
410
|
+
"fieldArn": str,
|
|
386
411
|
"name": str,
|
|
387
|
-
"namespace": FieldNamespaceType,
|
|
388
412
|
"type": FieldTypeType,
|
|
413
|
+
"namespace": FieldNamespaceType,
|
|
389
414
|
},
|
|
390
415
|
)
|
|
391
416
|
|
|
392
417
|
class FieldValueUnionOutputTypeDef(TypedDict):
|
|
393
|
-
|
|
418
|
+
stringValue: NotRequired[str]
|
|
394
419
|
doubleValue: NotRequired[float]
|
|
420
|
+
booleanValue: NotRequired[bool]
|
|
395
421
|
emptyValue: NotRequired[Dict[str, Any]]
|
|
396
|
-
stringValue: NotRequired[str]
|
|
397
422
|
userArnValue: NotRequired[str]
|
|
398
423
|
|
|
399
424
|
class FieldValueUnionTypeDef(TypedDict):
|
|
400
|
-
|
|
425
|
+
stringValue: NotRequired[str]
|
|
401
426
|
doubleValue: NotRequired[float]
|
|
427
|
+
booleanValue: NotRequired[bool]
|
|
402
428
|
emptyValue: NotRequired[Mapping[str, Any]]
|
|
403
|
-
stringValue: NotRequired[str]
|
|
404
429
|
userArnValue: NotRequired[str]
|
|
405
430
|
|
|
406
431
|
class FileContentTypeDef(TypedDict):
|
|
@@ -430,8 +455,8 @@ class GetTemplateRequestTypeDef(TypedDict):
|
|
|
430
455
|
templateId: str
|
|
431
456
|
|
|
432
457
|
class LayoutSummaryTypeDef(TypedDict):
|
|
433
|
-
layoutArn: str
|
|
434
458
|
layoutId: str
|
|
459
|
+
layoutArn: str
|
|
435
460
|
name: str
|
|
436
461
|
|
|
437
462
|
class PaginatorConfigTypeDef(TypedDict):
|
|
@@ -445,8 +470,8 @@ class ListCaseRulesRequestTypeDef(TypedDict):
|
|
|
445
470
|
nextToken: NotRequired[str]
|
|
446
471
|
|
|
447
472
|
class ListCasesForContactRequestTypeDef(TypedDict):
|
|
448
|
-
contactArn: str
|
|
449
473
|
domainId: str
|
|
474
|
+
contactArn: str
|
|
450
475
|
maxResults: NotRequired[int]
|
|
451
476
|
nextToken: NotRequired[str]
|
|
452
477
|
|
|
@@ -481,15 +506,19 @@ class ListTemplatesRequestTypeDef(TypedDict):
|
|
|
481
506
|
status: NotRequired[Sequence[TemplateStatusType]]
|
|
482
507
|
|
|
483
508
|
class TemplateSummaryTypeDef(TypedDict):
|
|
509
|
+
templateId: str
|
|
510
|
+
templateArn: str
|
|
484
511
|
name: str
|
|
485
512
|
status: TemplateStatusType
|
|
486
|
-
templateArn: str
|
|
487
|
-
templateId: str
|
|
488
513
|
|
|
489
514
|
class SlaFilterTypeDef(TypedDict):
|
|
490
515
|
name: NotRequired[str]
|
|
491
516
|
status: NotRequired[SlaStatusType]
|
|
492
517
|
|
|
518
|
+
class SearchAllRelatedItemsSortTypeDef(TypedDict):
|
|
519
|
+
sortProperty: SearchAllRelatedItemsSortPropertyType
|
|
520
|
+
sortOrder: OrderType
|
|
521
|
+
|
|
493
522
|
class SortTypeDef(TypedDict):
|
|
494
523
|
fieldId: str
|
|
495
524
|
sortOrder: OrderType
|
|
@@ -505,8 +534,8 @@ class UntagResourceRequestTypeDef(TypedDict):
|
|
|
505
534
|
class UpdateFieldRequestTypeDef(TypedDict):
|
|
506
535
|
domainId: str
|
|
507
536
|
fieldId: str
|
|
508
|
-
description: NotRequired[str]
|
|
509
537
|
name: NotRequired[str]
|
|
538
|
+
description: NotRequired[str]
|
|
510
539
|
|
|
511
540
|
class AuditEventFieldTypeDef(TypedDict):
|
|
512
541
|
eventFieldId: str
|
|
@@ -518,54 +547,54 @@ class AuditEventPerformedByTypeDef(TypedDict):
|
|
|
518
547
|
user: NotRequired[UserUnionTypeDef]
|
|
519
548
|
|
|
520
549
|
class BatchGetCaseRuleRequestTypeDef(TypedDict):
|
|
521
|
-
caseRules: Sequence[CaseRuleIdentifierTypeDef]
|
|
522
550
|
domainId: str
|
|
551
|
+
caseRules: Sequence[CaseRuleIdentifierTypeDef]
|
|
523
552
|
|
|
524
553
|
class CreateCaseResponseTypeDef(TypedDict):
|
|
525
|
-
caseArn: str
|
|
526
554
|
caseId: str
|
|
555
|
+
caseArn: str
|
|
527
556
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
528
557
|
|
|
529
558
|
class CreateCaseRuleResponseTypeDef(TypedDict):
|
|
530
|
-
caseRuleArn: str
|
|
531
559
|
caseRuleId: str
|
|
560
|
+
caseRuleArn: str
|
|
532
561
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
533
562
|
|
|
534
563
|
class CreateDomainResponseTypeDef(TypedDict):
|
|
535
|
-
domainArn: str
|
|
536
564
|
domainId: str
|
|
565
|
+
domainArn: str
|
|
537
566
|
domainStatus: DomainStatusType
|
|
538
567
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
539
568
|
|
|
540
569
|
class CreateFieldResponseTypeDef(TypedDict):
|
|
541
|
-
fieldArn: str
|
|
542
570
|
fieldId: str
|
|
571
|
+
fieldArn: str
|
|
543
572
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
544
573
|
|
|
545
574
|
class CreateLayoutResponseTypeDef(TypedDict):
|
|
546
|
-
layoutArn: str
|
|
547
575
|
layoutId: str
|
|
576
|
+
layoutArn: str
|
|
548
577
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
549
578
|
|
|
550
579
|
class CreateRelatedItemResponseTypeDef(TypedDict):
|
|
551
|
-
relatedItemArn: str
|
|
552
580
|
relatedItemId: str
|
|
581
|
+
relatedItemArn: str
|
|
553
582
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
554
583
|
|
|
555
584
|
class CreateTemplateResponseTypeDef(TypedDict):
|
|
556
|
-
templateArn: str
|
|
557
585
|
templateId: str
|
|
586
|
+
templateArn: str
|
|
558
587
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
559
588
|
|
|
560
589
|
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
561
590
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
562
591
|
|
|
563
592
|
class GetDomainResponseTypeDef(TypedDict):
|
|
564
|
-
createdTime: datetime
|
|
565
|
-
domainArn: str
|
|
566
593
|
domainId: str
|
|
567
|
-
|
|
594
|
+
domainArn: str
|
|
568
595
|
name: str
|
|
596
|
+
createdTime: datetime
|
|
597
|
+
domainStatus: DomainStatusType
|
|
569
598
|
tags: Dict[str, str]
|
|
570
599
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
571
600
|
|
|
@@ -590,8 +619,8 @@ class GetCaseRequestTypeDef(TypedDict):
|
|
|
590
619
|
nextToken: NotRequired[str]
|
|
591
620
|
|
|
592
621
|
class BatchGetFieldResponseTypeDef(TypedDict):
|
|
593
|
-
errors: List[FieldErrorTypeDef]
|
|
594
622
|
fields: List[GetFieldResponseTypeDef]
|
|
623
|
+
errors: List[FieldErrorTypeDef]
|
|
595
624
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
596
625
|
|
|
597
626
|
class BatchPutFieldOptionsRequestTypeDef(TypedDict):
|
|
@@ -634,33 +663,33 @@ class CreateTemplateRequestTypeDef(TypedDict):
|
|
|
634
663
|
description: NotRequired[str]
|
|
635
664
|
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
636
665
|
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
637
|
-
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
638
666
|
status: NotRequired[TemplateStatusType]
|
|
667
|
+
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
639
668
|
|
|
640
669
|
class GetTemplateResponseTypeDef(TypedDict):
|
|
641
|
-
|
|
642
|
-
|
|
670
|
+
templateId: str
|
|
671
|
+
templateArn: str
|
|
672
|
+
name: str
|
|
643
673
|
description: str
|
|
644
|
-
lastModifiedTime: datetime
|
|
645
674
|
layoutConfiguration: LayoutConfigurationTypeDef
|
|
646
|
-
name: str
|
|
647
675
|
requiredFields: List[RequiredFieldTypeDef]
|
|
648
|
-
rules: List[TemplateRuleTypeDef]
|
|
649
|
-
status: TemplateStatusType
|
|
650
676
|
tags: Dict[str, str]
|
|
651
|
-
|
|
652
|
-
|
|
677
|
+
status: TemplateStatusType
|
|
678
|
+
deleted: bool
|
|
679
|
+
createdTime: datetime
|
|
680
|
+
lastModifiedTime: datetime
|
|
681
|
+
rules: List[TemplateRuleTypeDef]
|
|
653
682
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
654
683
|
|
|
655
684
|
class UpdateTemplateRequestTypeDef(TypedDict):
|
|
656
685
|
domainId: str
|
|
657
686
|
templateId: str
|
|
687
|
+
name: NotRequired[str]
|
|
658
688
|
description: NotRequired[str]
|
|
659
689
|
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
660
|
-
name: NotRequired[str]
|
|
661
690
|
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
662
|
-
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
663
691
|
status: NotRequired[TemplateStatusType]
|
|
692
|
+
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
664
693
|
|
|
665
694
|
class ListDomainsResponseTypeDef(TypedDict):
|
|
666
695
|
domains: List[DomainSummaryTypeDef]
|
|
@@ -691,12 +720,12 @@ SlaConfigurationTypeDef = TypedDict(
|
|
|
691
720
|
"SlaConfigurationTypeDef",
|
|
692
721
|
{
|
|
693
722
|
"name": str,
|
|
723
|
+
"type": Literal["CaseField"],
|
|
694
724
|
"status": SlaStatusType,
|
|
695
725
|
"targetTime": datetime,
|
|
696
|
-
"type": Literal["CaseField"],
|
|
697
|
-
"completionTime": NotRequired[datetime],
|
|
698
726
|
"fieldId": NotRequired[str],
|
|
699
727
|
"targetFieldValues": NotRequired[List[FieldValueUnionOutputTypeDef]],
|
|
728
|
+
"completionTime": NotRequired[datetime],
|
|
700
729
|
},
|
|
701
730
|
)
|
|
702
731
|
FieldValueUnionUnionTypeDef = Union[FieldValueUnionTypeDef, FieldValueUnionOutputTypeDef]
|
|
@@ -715,21 +744,15 @@ class ListTemplatesResponseTypeDef(TypedDict):
|
|
|
715
744
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
716
745
|
nextToken: NotRequired[str]
|
|
717
746
|
|
|
718
|
-
class RelatedItemTypeFilterTypeDef(TypedDict):
|
|
719
|
-
comment: NotRequired[Mapping[str, Any]]
|
|
720
|
-
contact: NotRequired[ContactFilterTypeDef]
|
|
721
|
-
file: NotRequired[FileFilterTypeDef]
|
|
722
|
-
sla: NotRequired[SlaFilterTypeDef]
|
|
723
|
-
|
|
724
747
|
AuditEventTypeDef = TypedDict(
|
|
725
748
|
"AuditEventTypeDef",
|
|
726
749
|
{
|
|
727
750
|
"eventId": str,
|
|
728
|
-
"fields": List[AuditEventFieldTypeDef],
|
|
729
|
-
"performedTime": datetime,
|
|
730
751
|
"type": AuditEventTypeType,
|
|
731
|
-
"
|
|
752
|
+
"performedTime": datetime,
|
|
753
|
+
"fields": List[AuditEventFieldTypeDef],
|
|
732
754
|
"relatedItemType": NotRequired[RelatedItemTypeType],
|
|
755
|
+
"performedBy": NotRequired[AuditEventPerformedByTypeDef],
|
|
733
756
|
},
|
|
734
757
|
)
|
|
735
758
|
|
|
@@ -755,17 +778,20 @@ class SectionOutputTypeDef(TypedDict):
|
|
|
755
778
|
class SectionTypeDef(TypedDict):
|
|
756
779
|
fieldGroup: NotRequired[FieldGroupTypeDef]
|
|
757
780
|
|
|
781
|
+
class CustomContentTypeDef(TypedDict):
|
|
782
|
+
fields: List[FieldValueOutputTypeDef]
|
|
783
|
+
|
|
758
784
|
class GetCaseResponseTypeDef(TypedDict):
|
|
759
785
|
fields: List[FieldValueOutputTypeDef]
|
|
760
|
-
tags: Dict[str, str]
|
|
761
786
|
templateId: str
|
|
787
|
+
tags: Dict[str, str]
|
|
762
788
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
763
789
|
nextToken: NotRequired[str]
|
|
764
790
|
|
|
765
791
|
class SearchCasesResponseItemTypeDef(TypedDict):
|
|
766
792
|
caseId: str
|
|
767
|
-
fields: List[FieldValueOutputTypeDef]
|
|
768
793
|
templateId: str
|
|
794
|
+
fields: List[FieldValueOutputTypeDef]
|
|
769
795
|
tags: NotRequired[Dict[str, str]]
|
|
770
796
|
|
|
771
797
|
class SlaContentTypeDef(TypedDict):
|
|
@@ -782,26 +808,13 @@ SlaInputConfigurationTypeDef = TypedDict(
|
|
|
782
808
|
"SlaInputConfigurationTypeDef",
|
|
783
809
|
{
|
|
784
810
|
"name": str,
|
|
785
|
-
"targetSlaMinutes": int,
|
|
786
811
|
"type": Literal["CaseField"],
|
|
812
|
+
"targetSlaMinutes": int,
|
|
787
813
|
"fieldId": NotRequired[str],
|
|
788
814
|
"targetFieldValues": NotRequired[Sequence[FieldValueUnionUnionTypeDef]],
|
|
789
815
|
},
|
|
790
816
|
)
|
|
791
817
|
|
|
792
|
-
class SearchRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
793
|
-
caseId: str
|
|
794
|
-
domainId: str
|
|
795
|
-
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|
|
796
|
-
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
797
|
-
|
|
798
|
-
class SearchRelatedItemsRequestTypeDef(TypedDict):
|
|
799
|
-
caseId: str
|
|
800
|
-
domainId: str
|
|
801
|
-
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|
|
802
|
-
maxResults: NotRequired[int]
|
|
803
|
-
nextToken: NotRequired[str]
|
|
804
|
-
|
|
805
818
|
class GetCaseAuditEventsResponseTypeDef(TypedDict):
|
|
806
819
|
auditEvents: List[AuditEventTypeDef]
|
|
807
820
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -816,12 +829,12 @@ class EventBridgeConfigurationTypeDef(TypedDict):
|
|
|
816
829
|
includedData: NotRequired[EventIncludedDataTypeDef]
|
|
817
830
|
|
|
818
831
|
class RequiredCaseRuleOutputTypeDef(TypedDict):
|
|
819
|
-
conditions: List[BooleanConditionOutputTypeDef]
|
|
820
832
|
defaultValue: bool
|
|
833
|
+
conditions: List[BooleanConditionOutputTypeDef]
|
|
821
834
|
|
|
822
835
|
class RequiredCaseRuleTypeDef(TypedDict):
|
|
823
|
-
conditions: Sequence[BooleanConditionTypeDef]
|
|
824
836
|
defaultValue: bool
|
|
837
|
+
conditions: Sequence[BooleanConditionTypeDef]
|
|
825
838
|
|
|
826
839
|
class LayoutSectionsOutputTypeDef(TypedDict):
|
|
827
840
|
sections: NotRequired[List[SectionOutputTypeDef]]
|
|
@@ -835,10 +848,12 @@ class SearchCasesResponseTypeDef(TypedDict):
|
|
|
835
848
|
nextToken: NotRequired[str]
|
|
836
849
|
|
|
837
850
|
class RelatedItemContentTypeDef(TypedDict):
|
|
838
|
-
comment: NotRequired[CommentContentTypeDef]
|
|
839
851
|
contact: NotRequired[ContactContentTypeDef]
|
|
852
|
+
comment: NotRequired[CommentContentTypeDef]
|
|
840
853
|
file: NotRequired[FileContentTypeDef]
|
|
841
854
|
sla: NotRequired[SlaContentTypeDef]
|
|
855
|
+
connectCase: NotRequired[ConnectCaseContentTypeDef]
|
|
856
|
+
custom: NotRequired[CustomContentTypeDef]
|
|
842
857
|
|
|
843
858
|
FieldValueUnionExtraTypeDef = Union[FieldValueTypeDef, FieldValueOutputTypeDef]
|
|
844
859
|
|
|
@@ -860,64 +875,73 @@ class CaseRuleDetailsTypeDef(TypedDict):
|
|
|
860
875
|
required: NotRequired[RequiredCaseRuleTypeDef]
|
|
861
876
|
|
|
862
877
|
class BasicLayoutOutputTypeDef(TypedDict):
|
|
863
|
-
moreInfo: NotRequired[LayoutSectionsOutputTypeDef]
|
|
864
878
|
topPanel: NotRequired[LayoutSectionsOutputTypeDef]
|
|
879
|
+
moreInfo: NotRequired[LayoutSectionsOutputTypeDef]
|
|
865
880
|
|
|
866
881
|
class BasicLayoutTypeDef(TypedDict):
|
|
867
|
-
moreInfo: NotRequired[LayoutSectionsTypeDef]
|
|
868
882
|
topPanel: NotRequired[LayoutSectionsTypeDef]
|
|
883
|
+
moreInfo: NotRequired[LayoutSectionsTypeDef]
|
|
869
884
|
|
|
870
|
-
|
|
871
|
-
"
|
|
885
|
+
SearchAllRelatedItemsResponseItemTypeDef = TypedDict(
|
|
886
|
+
"SearchAllRelatedItemsResponseItemTypeDef",
|
|
872
887
|
{
|
|
888
|
+
"relatedItemId": str,
|
|
889
|
+
"caseId": str,
|
|
890
|
+
"type": RelatedItemTypeType,
|
|
873
891
|
"associationTime": datetime,
|
|
874
892
|
"content": RelatedItemContentTypeDef,
|
|
893
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
894
|
+
"tags": NotRequired[Dict[str, str]],
|
|
895
|
+
},
|
|
896
|
+
)
|
|
897
|
+
SearchRelatedItemsResponseItemTypeDef = TypedDict(
|
|
898
|
+
"SearchRelatedItemsResponseItemTypeDef",
|
|
899
|
+
{
|
|
875
900
|
"relatedItemId": str,
|
|
876
901
|
"type": RelatedItemTypeType,
|
|
877
|
-
"
|
|
902
|
+
"associationTime": datetime,
|
|
903
|
+
"content": RelatedItemContentTypeDef,
|
|
878
904
|
"tags": NotRequired[Dict[str, str]],
|
|
905
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
879
906
|
},
|
|
880
907
|
)
|
|
881
908
|
|
|
882
909
|
class CreateCaseRequestTypeDef(TypedDict):
|
|
883
910
|
domainId: str
|
|
884
|
-
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
885
911
|
templateId: str
|
|
912
|
+
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
886
913
|
clientToken: NotRequired[str]
|
|
887
914
|
performedBy: NotRequired[UserUnionTypeDef]
|
|
888
915
|
|
|
916
|
+
class CustomInputContentTypeDef(TypedDict):
|
|
917
|
+
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
918
|
+
|
|
889
919
|
class FieldFilterTypeDef(TypedDict):
|
|
890
|
-
contains: NotRequired[FieldValueUnionExtraTypeDef]
|
|
891
920
|
equalTo: NotRequired[FieldValueUnionExtraTypeDef]
|
|
921
|
+
contains: NotRequired[FieldValueUnionExtraTypeDef]
|
|
892
922
|
greaterThan: NotRequired[FieldValueUnionExtraTypeDef]
|
|
893
923
|
greaterThanOrEqualTo: NotRequired[FieldValueUnionExtraTypeDef]
|
|
894
924
|
lessThan: NotRequired[FieldValueUnionExtraTypeDef]
|
|
895
925
|
lessThanOrEqualTo: NotRequired[FieldValueUnionExtraTypeDef]
|
|
896
926
|
|
|
897
927
|
class UpdateCaseRequestTypeDef(TypedDict):
|
|
898
|
-
caseId: str
|
|
899
928
|
domainId: str
|
|
929
|
+
caseId: str
|
|
900
930
|
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
901
931
|
performedBy: NotRequired[UserUnionTypeDef]
|
|
902
932
|
|
|
903
|
-
class RelatedItemInputContentTypeDef(TypedDict):
|
|
904
|
-
comment: NotRequired[CommentContentTypeDef]
|
|
905
|
-
contact: NotRequired[ContactTypeDef]
|
|
906
|
-
file: NotRequired[FileContentTypeDef]
|
|
907
|
-
sla: NotRequired[SlaInputContentTypeDef]
|
|
908
|
-
|
|
909
933
|
class PutCaseEventConfigurationRequestTypeDef(TypedDict):
|
|
910
934
|
domainId: str
|
|
911
935
|
eventBridge: EventBridgeConfigurationUnionTypeDef
|
|
912
936
|
|
|
913
937
|
class GetCaseRuleResponseTypeDef(TypedDict):
|
|
914
|
-
caseRuleArn: str
|
|
915
938
|
caseRuleId: str
|
|
916
939
|
name: str
|
|
940
|
+
caseRuleArn: str
|
|
917
941
|
rule: CaseRuleDetailsOutputTypeDef
|
|
918
|
-
createdTime: NotRequired[datetime]
|
|
919
|
-
deleted: NotRequired[bool]
|
|
920
942
|
description: NotRequired[str]
|
|
943
|
+
deleted: NotRequired[bool]
|
|
944
|
+
createdTime: NotRequired[datetime]
|
|
921
945
|
lastModifiedTime: NotRequired[datetime]
|
|
922
946
|
tags: NotRequired[Dict[str, str]]
|
|
923
947
|
|
|
@@ -929,37 +953,58 @@ class LayoutContentOutputTypeDef(TypedDict):
|
|
|
929
953
|
class LayoutContentTypeDef(TypedDict):
|
|
930
954
|
basic: NotRequired[BasicLayoutTypeDef]
|
|
931
955
|
|
|
956
|
+
class SearchAllRelatedItemsResponseTypeDef(TypedDict):
|
|
957
|
+
relatedItems: List[SearchAllRelatedItemsResponseItemTypeDef]
|
|
958
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
959
|
+
nextToken: NotRequired[str]
|
|
960
|
+
|
|
932
961
|
class SearchRelatedItemsResponseTypeDef(TypedDict):
|
|
933
962
|
relatedItems: List[SearchRelatedItemsResponseItemTypeDef]
|
|
934
963
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
935
964
|
nextToken: NotRequired[str]
|
|
936
965
|
|
|
966
|
+
class RelatedItemInputContentTypeDef(TypedDict):
|
|
967
|
+
contact: NotRequired[ContactTypeDef]
|
|
968
|
+
comment: NotRequired[CommentContentTypeDef]
|
|
969
|
+
file: NotRequired[FileContentTypeDef]
|
|
970
|
+
sla: NotRequired[SlaInputContentTypeDef]
|
|
971
|
+
connectCase: NotRequired[ConnectCaseInputContentTypeDef]
|
|
972
|
+
custom: NotRequired[CustomInputContentTypeDef]
|
|
973
|
+
|
|
937
974
|
CaseFilterPaginatorTypeDef = TypedDict(
|
|
938
975
|
"CaseFilterPaginatorTypeDef",
|
|
939
976
|
{
|
|
940
|
-
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
941
977
|
"field": NotRequired[FieldFilterTypeDef],
|
|
942
978
|
"not": NotRequired[Mapping[str, Any]],
|
|
979
|
+
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
943
980
|
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
944
981
|
},
|
|
945
982
|
)
|
|
946
983
|
CaseFilterTypeDef = TypedDict(
|
|
947
984
|
"CaseFilterTypeDef",
|
|
948
985
|
{
|
|
986
|
+
"field": NotRequired[FieldFilterTypeDef],
|
|
987
|
+
"not": NotRequired[Mapping[str, Any]],
|
|
949
988
|
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
989
|
+
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
990
|
+
},
|
|
991
|
+
)
|
|
992
|
+
CustomFieldsFilterPaginatorTypeDef = TypedDict(
|
|
993
|
+
"CustomFieldsFilterPaginatorTypeDef",
|
|
994
|
+
{
|
|
950
995
|
"field": NotRequired[FieldFilterTypeDef],
|
|
951
996
|
"not": NotRequired[Mapping[str, Any]],
|
|
997
|
+
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
952
998
|
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
953
999
|
},
|
|
954
1000
|
)
|
|
955
|
-
|
|
956
|
-
"
|
|
1001
|
+
CustomFieldsFilterTypeDef = TypedDict(
|
|
1002
|
+
"CustomFieldsFilterTypeDef",
|
|
957
1003
|
{
|
|
958
|
-
"
|
|
959
|
-
"
|
|
960
|
-
"
|
|
961
|
-
"
|
|
962
|
-
"performedBy": NotRequired[UserUnionTypeDef],
|
|
1004
|
+
"field": NotRequired[FieldFilterTypeDef],
|
|
1005
|
+
"not": NotRequired[Mapping[str, Any]],
|
|
1006
|
+
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
1007
|
+
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
963
1008
|
},
|
|
964
1009
|
)
|
|
965
1010
|
|
|
@@ -975,32 +1020,42 @@ class CreateCaseRuleRequestTypeDef(TypedDict):
|
|
|
975
1020
|
description: NotRequired[str]
|
|
976
1021
|
|
|
977
1022
|
class UpdateCaseRuleRequestTypeDef(TypedDict):
|
|
978
|
-
caseRuleId: str
|
|
979
1023
|
domainId: str
|
|
980
|
-
|
|
1024
|
+
caseRuleId: str
|
|
981
1025
|
name: NotRequired[str]
|
|
1026
|
+
description: NotRequired[str]
|
|
982
1027
|
rule: NotRequired[CaseRuleDetailsUnionTypeDef]
|
|
983
1028
|
|
|
984
1029
|
class GetLayoutResponseTypeDef(TypedDict):
|
|
985
|
-
content: LayoutContentOutputTypeDef
|
|
986
|
-
createdTime: datetime
|
|
987
|
-
deleted: bool
|
|
988
|
-
lastModifiedTime: datetime
|
|
989
|
-
layoutArn: str
|
|
990
1030
|
layoutId: str
|
|
1031
|
+
layoutArn: str
|
|
991
1032
|
name: str
|
|
1033
|
+
content: LayoutContentOutputTypeDef
|
|
992
1034
|
tags: Dict[str, str]
|
|
1035
|
+
deleted: bool
|
|
1036
|
+
createdTime: datetime
|
|
1037
|
+
lastModifiedTime: datetime
|
|
993
1038
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
994
1039
|
|
|
995
1040
|
LayoutContentUnionTypeDef = Union[LayoutContentTypeDef, LayoutContentOutputTypeDef]
|
|
1041
|
+
CreateRelatedItemRequestTypeDef = TypedDict(
|
|
1042
|
+
"CreateRelatedItemRequestTypeDef",
|
|
1043
|
+
{
|
|
1044
|
+
"domainId": str,
|
|
1045
|
+
"caseId": str,
|
|
1046
|
+
"type": RelatedItemTypeType,
|
|
1047
|
+
"content": RelatedItemInputContentTypeDef,
|
|
1048
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
1049
|
+
},
|
|
1050
|
+
)
|
|
996
1051
|
SearchCasesRequestPaginateTypeDef = TypedDict(
|
|
997
1052
|
"SearchCasesRequestPaginateTypeDef",
|
|
998
1053
|
{
|
|
999
1054
|
"domainId": str,
|
|
1000
|
-
"fields": NotRequired[Sequence[FieldIdentifierTypeDef]],
|
|
1001
|
-
"filter": NotRequired[CaseFilterPaginatorTypeDef],
|
|
1002
1055
|
"searchTerm": NotRequired[str],
|
|
1056
|
+
"filter": NotRequired[CaseFilterPaginatorTypeDef],
|
|
1003
1057
|
"sorts": NotRequired[Sequence[SortTypeDef]],
|
|
1058
|
+
"fields": NotRequired[Sequence[FieldIdentifierTypeDef]],
|
|
1004
1059
|
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1005
1060
|
},
|
|
1006
1061
|
)
|
|
@@ -1008,22 +1063,70 @@ SearchCasesRequestTypeDef = TypedDict(
|
|
|
1008
1063
|
"SearchCasesRequestTypeDef",
|
|
1009
1064
|
{
|
|
1010
1065
|
"domainId": str,
|
|
1011
|
-
"fields": NotRequired[Sequence[FieldIdentifierTypeDef]],
|
|
1012
|
-
"filter": NotRequired[CaseFilterTypeDef],
|
|
1013
1066
|
"maxResults": NotRequired[int],
|
|
1014
1067
|
"nextToken": NotRequired[str],
|
|
1015
1068
|
"searchTerm": NotRequired[str],
|
|
1069
|
+
"filter": NotRequired[CaseFilterTypeDef],
|
|
1016
1070
|
"sorts": NotRequired[Sequence[SortTypeDef]],
|
|
1071
|
+
"fields": NotRequired[Sequence[FieldIdentifierTypeDef]],
|
|
1017
1072
|
},
|
|
1018
1073
|
)
|
|
1019
1074
|
|
|
1075
|
+
class CustomFilterPaginatorTypeDef(TypedDict):
|
|
1076
|
+
fields: NotRequired[CustomFieldsFilterPaginatorTypeDef]
|
|
1077
|
+
|
|
1078
|
+
class CustomFilterTypeDef(TypedDict):
|
|
1079
|
+
fields: NotRequired[CustomFieldsFilterTypeDef]
|
|
1080
|
+
|
|
1020
1081
|
class CreateLayoutRequestTypeDef(TypedDict):
|
|
1021
|
-
content: LayoutContentUnionTypeDef
|
|
1022
1082
|
domainId: str
|
|
1023
1083
|
name: str
|
|
1084
|
+
content: LayoutContentUnionTypeDef
|
|
1024
1085
|
|
|
1025
1086
|
class UpdateLayoutRequestTypeDef(TypedDict):
|
|
1026
1087
|
domainId: str
|
|
1027
1088
|
layoutId: str
|
|
1028
|
-
content: NotRequired[LayoutContentUnionTypeDef]
|
|
1029
1089
|
name: NotRequired[str]
|
|
1090
|
+
content: NotRequired[LayoutContentUnionTypeDef]
|
|
1091
|
+
|
|
1092
|
+
class RelatedItemTypeFilterPaginatorTypeDef(TypedDict):
|
|
1093
|
+
contact: NotRequired[ContactFilterTypeDef]
|
|
1094
|
+
comment: NotRequired[Mapping[str, Any]]
|
|
1095
|
+
file: NotRequired[FileFilterTypeDef]
|
|
1096
|
+
sla: NotRequired[SlaFilterTypeDef]
|
|
1097
|
+
connectCase: NotRequired[ConnectCaseFilterTypeDef]
|
|
1098
|
+
custom: NotRequired[CustomFilterPaginatorTypeDef]
|
|
1099
|
+
|
|
1100
|
+
class RelatedItemTypeFilterTypeDef(TypedDict):
|
|
1101
|
+
contact: NotRequired[ContactFilterTypeDef]
|
|
1102
|
+
comment: NotRequired[Mapping[str, Any]]
|
|
1103
|
+
file: NotRequired[FileFilterTypeDef]
|
|
1104
|
+
sla: NotRequired[SlaFilterTypeDef]
|
|
1105
|
+
connectCase: NotRequired[ConnectCaseFilterTypeDef]
|
|
1106
|
+
custom: NotRequired[CustomFilterTypeDef]
|
|
1107
|
+
|
|
1108
|
+
class SearchAllRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
1109
|
+
domainId: str
|
|
1110
|
+
filters: NotRequired[Sequence[RelatedItemTypeFilterPaginatorTypeDef]]
|
|
1111
|
+
sorts: NotRequired[Sequence[SearchAllRelatedItemsSortTypeDef]]
|
|
1112
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1113
|
+
|
|
1114
|
+
class SearchRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
1115
|
+
domainId: str
|
|
1116
|
+
caseId: str
|
|
1117
|
+
filters: NotRequired[Sequence[RelatedItemTypeFilterPaginatorTypeDef]]
|
|
1118
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1119
|
+
|
|
1120
|
+
class SearchAllRelatedItemsRequestTypeDef(TypedDict):
|
|
1121
|
+
domainId: str
|
|
1122
|
+
maxResults: NotRequired[int]
|
|
1123
|
+
nextToken: NotRequired[str]
|
|
1124
|
+
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|
|
1125
|
+
sorts: NotRequired[Sequence[SearchAllRelatedItemsSortTypeDef]]
|
|
1126
|
+
|
|
1127
|
+
class SearchRelatedItemsRequestTypeDef(TypedDict):
|
|
1128
|
+
domainId: str
|
|
1129
|
+
caseId: str
|
|
1130
|
+
maxResults: NotRequired[int]
|
|
1131
|
+
nextToken: NotRequired[str]
|
|
1132
|
+
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|