types-boto3-connectcases 1.39.2__py3-none-any.whl → 1.40.42__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- types_boto3_connectcases/__main__.py +3 -3
- types_boto3_connectcases/literals.py +8 -14
- types_boto3_connectcases/literals.pyi +8 -14
- types_boto3_connectcases/type_defs.py +197 -126
- types_boto3_connectcases/type_defs.pyi +185 -122
- types_boto3_connectcases/version.py +1 -1
- {types_boto3_connectcases-1.39.2.dist-info → types_boto3_connectcases-1.40.42.dist-info}/METADATA +5 -5
- types_boto3_connectcases-1.40.42.dist-info/RECORD +18 -0
- types_boto3_connectcases-1.39.2.dist-info/RECORD +0 -18
- {types_boto3_connectcases-1.39.2.dist-info → types_boto3_connectcases-1.40.42.dist-info}/WHEEL +0 -0
- {types_boto3_connectcases-1.39.2.dist-info → types_boto3_connectcases-1.40.42.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_connectcases-1.39.2.dist-info → types_boto3_connectcases-1.40.42.dist-info}/top_level.txt +0 -0
|
@@ -71,6 +71,9 @@ __all__ = (
|
|
|
71
71
|
"CaseRuleSummaryTypeDef",
|
|
72
72
|
"CaseSummaryTypeDef",
|
|
73
73
|
"CommentContentTypeDef",
|
|
74
|
+
"ConnectCaseContentTypeDef",
|
|
75
|
+
"ConnectCaseFilterTypeDef",
|
|
76
|
+
"ConnectCaseInputContentTypeDef",
|
|
74
77
|
"ContactContentTypeDef",
|
|
75
78
|
"ContactFilterTypeDef",
|
|
76
79
|
"ContactTypeDef",
|
|
@@ -88,6 +91,12 @@ __all__ = (
|
|
|
88
91
|
"CreateRelatedItemResponseTypeDef",
|
|
89
92
|
"CreateTemplateRequestTypeDef",
|
|
90
93
|
"CreateTemplateResponseTypeDef",
|
|
94
|
+
"CustomContentTypeDef",
|
|
95
|
+
"CustomFieldsFilterPaginatorTypeDef",
|
|
96
|
+
"CustomFieldsFilterTypeDef",
|
|
97
|
+
"CustomFilterPaginatorTypeDef",
|
|
98
|
+
"CustomFilterTypeDef",
|
|
99
|
+
"CustomInputContentTypeDef",
|
|
91
100
|
"DeleteCaseRequestTypeDef",
|
|
92
101
|
"DeleteCaseRuleRequestTypeDef",
|
|
93
102
|
"DeleteDomainRequestTypeDef",
|
|
@@ -165,6 +174,7 @@ __all__ = (
|
|
|
165
174
|
"RelatedItemContentTypeDef",
|
|
166
175
|
"RelatedItemEventIncludedDataTypeDef",
|
|
167
176
|
"RelatedItemInputContentTypeDef",
|
|
177
|
+
"RelatedItemTypeFilterPaginatorTypeDef",
|
|
168
178
|
"RelatedItemTypeFilterTypeDef",
|
|
169
179
|
"RequiredCaseRuleOutputTypeDef",
|
|
170
180
|
"RequiredCaseRuleTypeDef",
|
|
@@ -199,15 +209,15 @@ __all__ = (
|
|
|
199
209
|
)
|
|
200
210
|
|
|
201
211
|
class AuditEventFieldValueUnionTypeDef(TypedDict):
|
|
202
|
-
|
|
212
|
+
stringValue: NotRequired[str]
|
|
203
213
|
doubleValue: NotRequired[float]
|
|
214
|
+
booleanValue: NotRequired[bool]
|
|
204
215
|
emptyValue: NotRequired[Dict[str, Any]]
|
|
205
|
-
stringValue: NotRequired[str]
|
|
206
216
|
userArnValue: NotRequired[str]
|
|
207
217
|
|
|
208
218
|
class UserUnionTypeDef(TypedDict):
|
|
209
|
-
customEntity: NotRequired[str]
|
|
210
219
|
userArn: NotRequired[str]
|
|
220
|
+
customEntity: NotRequired[str]
|
|
211
221
|
|
|
212
222
|
CaseRuleIdentifierTypeDef = TypedDict(
|
|
213
223
|
"CaseRuleIdentifierTypeDef",
|
|
@@ -218,8 +228,8 @@ CaseRuleIdentifierTypeDef = TypedDict(
|
|
|
218
228
|
CaseRuleErrorTypeDef = TypedDict(
|
|
219
229
|
"CaseRuleErrorTypeDef",
|
|
220
230
|
{
|
|
221
|
-
"errorCode": str,
|
|
222
231
|
"id": str,
|
|
232
|
+
"errorCode": str,
|
|
223
233
|
"message": NotRequired[str],
|
|
224
234
|
},
|
|
225
235
|
)
|
|
@@ -240,56 +250,56 @@ FieldIdentifierTypeDef = TypedDict(
|
|
|
240
250
|
FieldErrorTypeDef = TypedDict(
|
|
241
251
|
"FieldErrorTypeDef",
|
|
242
252
|
{
|
|
243
|
-
"errorCode": str,
|
|
244
253
|
"id": str,
|
|
254
|
+
"errorCode": str,
|
|
245
255
|
"message": NotRequired[str],
|
|
246
256
|
},
|
|
247
257
|
)
|
|
248
258
|
GetFieldResponseTypeDef = TypedDict(
|
|
249
259
|
"GetFieldResponseTypeDef",
|
|
250
260
|
{
|
|
251
|
-
"fieldArn": str,
|
|
252
261
|
"fieldId": str,
|
|
253
262
|
"name": str,
|
|
254
|
-
"
|
|
263
|
+
"fieldArn": str,
|
|
255
264
|
"type": FieldTypeType,
|
|
256
|
-
"
|
|
257
|
-
"deleted": NotRequired[bool],
|
|
265
|
+
"namespace": FieldNamespaceType,
|
|
258
266
|
"description": NotRequired[str],
|
|
259
|
-
"lastModifiedTime": NotRequired[datetime],
|
|
260
267
|
"tags": NotRequired[Dict[str, str]],
|
|
268
|
+
"deleted": NotRequired[bool],
|
|
269
|
+
"createdTime": NotRequired[datetime],
|
|
270
|
+
"lastModifiedTime": NotRequired[datetime],
|
|
261
271
|
},
|
|
262
272
|
)
|
|
263
273
|
|
|
264
274
|
class FieldOptionTypeDef(TypedDict):
|
|
265
|
-
active: bool
|
|
266
275
|
name: str
|
|
267
276
|
value: str
|
|
277
|
+
active: bool
|
|
268
278
|
|
|
269
279
|
class FieldOptionErrorTypeDef(TypedDict):
|
|
270
|
-
errorCode: str
|
|
271
280
|
message: str
|
|
281
|
+
errorCode: str
|
|
272
282
|
value: str
|
|
273
283
|
|
|
274
284
|
class OperandOneTypeDef(TypedDict):
|
|
275
285
|
fieldId: NotRequired[str]
|
|
276
286
|
|
|
277
287
|
class OperandTwoOutputTypeDef(TypedDict):
|
|
288
|
+
stringValue: NotRequired[str]
|
|
278
289
|
booleanValue: NotRequired[bool]
|
|
279
290
|
doubleValue: NotRequired[float]
|
|
280
291
|
emptyValue: NotRequired[Dict[str, Any]]
|
|
281
|
-
stringValue: NotRequired[str]
|
|
282
292
|
|
|
283
293
|
class OperandTwoTypeDef(TypedDict):
|
|
294
|
+
stringValue: NotRequired[str]
|
|
284
295
|
booleanValue: NotRequired[bool]
|
|
285
296
|
doubleValue: NotRequired[float]
|
|
286
297
|
emptyValue: NotRequired[Mapping[str, Any]]
|
|
287
|
-
stringValue: NotRequired[str]
|
|
288
298
|
|
|
289
299
|
class CaseRuleSummaryTypeDef(TypedDict):
|
|
290
|
-
caseRuleArn: str
|
|
291
300
|
caseRuleId: str
|
|
292
301
|
name: str
|
|
302
|
+
caseRuleArn: str
|
|
293
303
|
ruleType: Literal["Required"]
|
|
294
304
|
description: NotRequired[str]
|
|
295
305
|
|
|
@@ -301,10 +311,19 @@ class CommentContentTypeDef(TypedDict):
|
|
|
301
311
|
body: str
|
|
302
312
|
contentType: Literal["Text/Plain"]
|
|
303
313
|
|
|
314
|
+
class ConnectCaseContentTypeDef(TypedDict):
|
|
315
|
+
caseId: str
|
|
316
|
+
|
|
317
|
+
class ConnectCaseFilterTypeDef(TypedDict):
|
|
318
|
+
caseId: NotRequired[str]
|
|
319
|
+
|
|
320
|
+
class ConnectCaseInputContentTypeDef(TypedDict):
|
|
321
|
+
caseId: str
|
|
322
|
+
|
|
304
323
|
class ContactContentTypeDef(TypedDict):
|
|
324
|
+
contactArn: str
|
|
305
325
|
channel: str
|
|
306
326
|
connectedToSystemTime: datetime
|
|
307
|
-
contactArn: str
|
|
308
327
|
|
|
309
328
|
class ContactFilterTypeDef(TypedDict):
|
|
310
329
|
channel: NotRequired[Sequence[str]]
|
|
@@ -337,12 +356,12 @@ class TemplateRuleTypeDef(TypedDict):
|
|
|
337
356
|
fieldId: str
|
|
338
357
|
|
|
339
358
|
class DeleteCaseRequestTypeDef(TypedDict):
|
|
340
|
-
caseId: str
|
|
341
359
|
domainId: str
|
|
360
|
+
caseId: str
|
|
342
361
|
|
|
343
362
|
class DeleteCaseRuleRequestTypeDef(TypedDict):
|
|
344
|
-
caseRuleId: str
|
|
345
363
|
domainId: str
|
|
364
|
+
caseRuleId: str
|
|
346
365
|
|
|
347
366
|
class DeleteDomainRequestTypeDef(TypedDict):
|
|
348
367
|
domainId: str
|
|
@@ -356,8 +375,8 @@ class DeleteLayoutRequestTypeDef(TypedDict):
|
|
|
356
375
|
layoutId: str
|
|
357
376
|
|
|
358
377
|
class DeleteRelatedItemRequestTypeDef(TypedDict):
|
|
359
|
-
caseId: str
|
|
360
378
|
domainId: str
|
|
379
|
+
caseId: str
|
|
361
380
|
relatedItemId: str
|
|
362
381
|
|
|
363
382
|
class DeleteTemplateRequestTypeDef(TypedDict):
|
|
@@ -365,8 +384,8 @@ class DeleteTemplateRequestTypeDef(TypedDict):
|
|
|
365
384
|
templateId: str
|
|
366
385
|
|
|
367
386
|
class DomainSummaryTypeDef(TypedDict):
|
|
368
|
-
domainArn: str
|
|
369
387
|
domainId: str
|
|
388
|
+
domainArn: str
|
|
370
389
|
name: str
|
|
371
390
|
|
|
372
391
|
class RelatedItemEventIncludedDataTypeDef(TypedDict):
|
|
@@ -381,26 +400,26 @@ FieldItemTypeDef = TypedDict(
|
|
|
381
400
|
FieldSummaryTypeDef = TypedDict(
|
|
382
401
|
"FieldSummaryTypeDef",
|
|
383
402
|
{
|
|
384
|
-
"fieldArn": str,
|
|
385
403
|
"fieldId": str,
|
|
404
|
+
"fieldArn": str,
|
|
386
405
|
"name": str,
|
|
387
|
-
"namespace": FieldNamespaceType,
|
|
388
406
|
"type": FieldTypeType,
|
|
407
|
+
"namespace": FieldNamespaceType,
|
|
389
408
|
},
|
|
390
409
|
)
|
|
391
410
|
|
|
392
411
|
class FieldValueUnionOutputTypeDef(TypedDict):
|
|
393
|
-
|
|
412
|
+
stringValue: NotRequired[str]
|
|
394
413
|
doubleValue: NotRequired[float]
|
|
414
|
+
booleanValue: NotRequired[bool]
|
|
395
415
|
emptyValue: NotRequired[Dict[str, Any]]
|
|
396
|
-
stringValue: NotRequired[str]
|
|
397
416
|
userArnValue: NotRequired[str]
|
|
398
417
|
|
|
399
418
|
class FieldValueUnionTypeDef(TypedDict):
|
|
400
|
-
|
|
419
|
+
stringValue: NotRequired[str]
|
|
401
420
|
doubleValue: NotRequired[float]
|
|
421
|
+
booleanValue: NotRequired[bool]
|
|
402
422
|
emptyValue: NotRequired[Mapping[str, Any]]
|
|
403
|
-
stringValue: NotRequired[str]
|
|
404
423
|
userArnValue: NotRequired[str]
|
|
405
424
|
|
|
406
425
|
class FileContentTypeDef(TypedDict):
|
|
@@ -430,8 +449,8 @@ class GetTemplateRequestTypeDef(TypedDict):
|
|
|
430
449
|
templateId: str
|
|
431
450
|
|
|
432
451
|
class LayoutSummaryTypeDef(TypedDict):
|
|
433
|
-
layoutArn: str
|
|
434
452
|
layoutId: str
|
|
453
|
+
layoutArn: str
|
|
435
454
|
name: str
|
|
436
455
|
|
|
437
456
|
class PaginatorConfigTypeDef(TypedDict):
|
|
@@ -445,8 +464,8 @@ class ListCaseRulesRequestTypeDef(TypedDict):
|
|
|
445
464
|
nextToken: NotRequired[str]
|
|
446
465
|
|
|
447
466
|
class ListCasesForContactRequestTypeDef(TypedDict):
|
|
448
|
-
contactArn: str
|
|
449
467
|
domainId: str
|
|
468
|
+
contactArn: str
|
|
450
469
|
maxResults: NotRequired[int]
|
|
451
470
|
nextToken: NotRequired[str]
|
|
452
471
|
|
|
@@ -481,10 +500,10 @@ class ListTemplatesRequestTypeDef(TypedDict):
|
|
|
481
500
|
status: NotRequired[Sequence[TemplateStatusType]]
|
|
482
501
|
|
|
483
502
|
class TemplateSummaryTypeDef(TypedDict):
|
|
503
|
+
templateId: str
|
|
504
|
+
templateArn: str
|
|
484
505
|
name: str
|
|
485
506
|
status: TemplateStatusType
|
|
486
|
-
templateArn: str
|
|
487
|
-
templateId: str
|
|
488
507
|
|
|
489
508
|
class SlaFilterTypeDef(TypedDict):
|
|
490
509
|
name: NotRequired[str]
|
|
@@ -505,8 +524,8 @@ class UntagResourceRequestTypeDef(TypedDict):
|
|
|
505
524
|
class UpdateFieldRequestTypeDef(TypedDict):
|
|
506
525
|
domainId: str
|
|
507
526
|
fieldId: str
|
|
508
|
-
description: NotRequired[str]
|
|
509
527
|
name: NotRequired[str]
|
|
528
|
+
description: NotRequired[str]
|
|
510
529
|
|
|
511
530
|
class AuditEventFieldTypeDef(TypedDict):
|
|
512
531
|
eventFieldId: str
|
|
@@ -518,54 +537,54 @@ class AuditEventPerformedByTypeDef(TypedDict):
|
|
|
518
537
|
user: NotRequired[UserUnionTypeDef]
|
|
519
538
|
|
|
520
539
|
class BatchGetCaseRuleRequestTypeDef(TypedDict):
|
|
521
|
-
caseRules: Sequence[CaseRuleIdentifierTypeDef]
|
|
522
540
|
domainId: str
|
|
541
|
+
caseRules: Sequence[CaseRuleIdentifierTypeDef]
|
|
523
542
|
|
|
524
543
|
class CreateCaseResponseTypeDef(TypedDict):
|
|
525
|
-
caseArn: str
|
|
526
544
|
caseId: str
|
|
545
|
+
caseArn: str
|
|
527
546
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
528
547
|
|
|
529
548
|
class CreateCaseRuleResponseTypeDef(TypedDict):
|
|
530
|
-
caseRuleArn: str
|
|
531
549
|
caseRuleId: str
|
|
550
|
+
caseRuleArn: str
|
|
532
551
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
533
552
|
|
|
534
553
|
class CreateDomainResponseTypeDef(TypedDict):
|
|
535
|
-
domainArn: str
|
|
536
554
|
domainId: str
|
|
555
|
+
domainArn: str
|
|
537
556
|
domainStatus: DomainStatusType
|
|
538
557
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
539
558
|
|
|
540
559
|
class CreateFieldResponseTypeDef(TypedDict):
|
|
541
|
-
fieldArn: str
|
|
542
560
|
fieldId: str
|
|
561
|
+
fieldArn: str
|
|
543
562
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
544
563
|
|
|
545
564
|
class CreateLayoutResponseTypeDef(TypedDict):
|
|
546
|
-
layoutArn: str
|
|
547
565
|
layoutId: str
|
|
566
|
+
layoutArn: str
|
|
548
567
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
549
568
|
|
|
550
569
|
class CreateRelatedItemResponseTypeDef(TypedDict):
|
|
551
|
-
relatedItemArn: str
|
|
552
570
|
relatedItemId: str
|
|
571
|
+
relatedItemArn: str
|
|
553
572
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
554
573
|
|
|
555
574
|
class CreateTemplateResponseTypeDef(TypedDict):
|
|
556
|
-
templateArn: str
|
|
557
575
|
templateId: str
|
|
576
|
+
templateArn: str
|
|
558
577
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
559
578
|
|
|
560
579
|
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
561
580
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
562
581
|
|
|
563
582
|
class GetDomainResponseTypeDef(TypedDict):
|
|
564
|
-
createdTime: datetime
|
|
565
|
-
domainArn: str
|
|
566
583
|
domainId: str
|
|
567
|
-
|
|
584
|
+
domainArn: str
|
|
568
585
|
name: str
|
|
586
|
+
createdTime: datetime
|
|
587
|
+
domainStatus: DomainStatusType
|
|
569
588
|
tags: Dict[str, str]
|
|
570
589
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
571
590
|
|
|
@@ -590,8 +609,8 @@ class GetCaseRequestTypeDef(TypedDict):
|
|
|
590
609
|
nextToken: NotRequired[str]
|
|
591
610
|
|
|
592
611
|
class BatchGetFieldResponseTypeDef(TypedDict):
|
|
593
|
-
errors: List[FieldErrorTypeDef]
|
|
594
612
|
fields: List[GetFieldResponseTypeDef]
|
|
613
|
+
errors: List[FieldErrorTypeDef]
|
|
595
614
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
596
615
|
|
|
597
616
|
class BatchPutFieldOptionsRequestTypeDef(TypedDict):
|
|
@@ -634,33 +653,33 @@ class CreateTemplateRequestTypeDef(TypedDict):
|
|
|
634
653
|
description: NotRequired[str]
|
|
635
654
|
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
636
655
|
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
637
|
-
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
638
656
|
status: NotRequired[TemplateStatusType]
|
|
657
|
+
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
639
658
|
|
|
640
659
|
class GetTemplateResponseTypeDef(TypedDict):
|
|
641
|
-
|
|
642
|
-
|
|
660
|
+
templateId: str
|
|
661
|
+
templateArn: str
|
|
662
|
+
name: str
|
|
643
663
|
description: str
|
|
644
|
-
lastModifiedTime: datetime
|
|
645
664
|
layoutConfiguration: LayoutConfigurationTypeDef
|
|
646
|
-
name: str
|
|
647
665
|
requiredFields: List[RequiredFieldTypeDef]
|
|
648
|
-
rules: List[TemplateRuleTypeDef]
|
|
649
|
-
status: TemplateStatusType
|
|
650
666
|
tags: Dict[str, str]
|
|
651
|
-
|
|
652
|
-
|
|
667
|
+
status: TemplateStatusType
|
|
668
|
+
deleted: bool
|
|
669
|
+
createdTime: datetime
|
|
670
|
+
lastModifiedTime: datetime
|
|
671
|
+
rules: List[TemplateRuleTypeDef]
|
|
653
672
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
654
673
|
|
|
655
674
|
class UpdateTemplateRequestTypeDef(TypedDict):
|
|
656
675
|
domainId: str
|
|
657
676
|
templateId: str
|
|
677
|
+
name: NotRequired[str]
|
|
658
678
|
description: NotRequired[str]
|
|
659
679
|
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
660
|
-
name: NotRequired[str]
|
|
661
680
|
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
662
|
-
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
663
681
|
status: NotRequired[TemplateStatusType]
|
|
682
|
+
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
664
683
|
|
|
665
684
|
class ListDomainsResponseTypeDef(TypedDict):
|
|
666
685
|
domains: List[DomainSummaryTypeDef]
|
|
@@ -691,12 +710,12 @@ SlaConfigurationTypeDef = TypedDict(
|
|
|
691
710
|
"SlaConfigurationTypeDef",
|
|
692
711
|
{
|
|
693
712
|
"name": str,
|
|
713
|
+
"type": Literal["CaseField"],
|
|
694
714
|
"status": SlaStatusType,
|
|
695
715
|
"targetTime": datetime,
|
|
696
|
-
"type": Literal["CaseField"],
|
|
697
|
-
"completionTime": NotRequired[datetime],
|
|
698
716
|
"fieldId": NotRequired[str],
|
|
699
717
|
"targetFieldValues": NotRequired[List[FieldValueUnionOutputTypeDef]],
|
|
718
|
+
"completionTime": NotRequired[datetime],
|
|
700
719
|
},
|
|
701
720
|
)
|
|
702
721
|
FieldValueUnionUnionTypeDef = Union[FieldValueUnionTypeDef, FieldValueUnionOutputTypeDef]
|
|
@@ -715,21 +734,15 @@ class ListTemplatesResponseTypeDef(TypedDict):
|
|
|
715
734
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
716
735
|
nextToken: NotRequired[str]
|
|
717
736
|
|
|
718
|
-
class RelatedItemTypeFilterTypeDef(TypedDict):
|
|
719
|
-
comment: NotRequired[Mapping[str, Any]]
|
|
720
|
-
contact: NotRequired[ContactFilterTypeDef]
|
|
721
|
-
file: NotRequired[FileFilterTypeDef]
|
|
722
|
-
sla: NotRequired[SlaFilterTypeDef]
|
|
723
|
-
|
|
724
737
|
AuditEventTypeDef = TypedDict(
|
|
725
738
|
"AuditEventTypeDef",
|
|
726
739
|
{
|
|
727
740
|
"eventId": str,
|
|
728
|
-
"fields": List[AuditEventFieldTypeDef],
|
|
729
|
-
"performedTime": datetime,
|
|
730
741
|
"type": AuditEventTypeType,
|
|
731
|
-
"
|
|
742
|
+
"performedTime": datetime,
|
|
743
|
+
"fields": List[AuditEventFieldTypeDef],
|
|
732
744
|
"relatedItemType": NotRequired[RelatedItemTypeType],
|
|
745
|
+
"performedBy": NotRequired[AuditEventPerformedByTypeDef],
|
|
733
746
|
},
|
|
734
747
|
)
|
|
735
748
|
|
|
@@ -755,17 +768,20 @@ class SectionOutputTypeDef(TypedDict):
|
|
|
755
768
|
class SectionTypeDef(TypedDict):
|
|
756
769
|
fieldGroup: NotRequired[FieldGroupTypeDef]
|
|
757
770
|
|
|
771
|
+
class CustomContentTypeDef(TypedDict):
|
|
772
|
+
fields: List[FieldValueOutputTypeDef]
|
|
773
|
+
|
|
758
774
|
class GetCaseResponseTypeDef(TypedDict):
|
|
759
775
|
fields: List[FieldValueOutputTypeDef]
|
|
760
|
-
tags: Dict[str, str]
|
|
761
776
|
templateId: str
|
|
777
|
+
tags: Dict[str, str]
|
|
762
778
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
763
779
|
nextToken: NotRequired[str]
|
|
764
780
|
|
|
765
781
|
class SearchCasesResponseItemTypeDef(TypedDict):
|
|
766
782
|
caseId: str
|
|
767
|
-
fields: List[FieldValueOutputTypeDef]
|
|
768
783
|
templateId: str
|
|
784
|
+
fields: List[FieldValueOutputTypeDef]
|
|
769
785
|
tags: NotRequired[Dict[str, str]]
|
|
770
786
|
|
|
771
787
|
class SlaContentTypeDef(TypedDict):
|
|
@@ -782,26 +798,13 @@ SlaInputConfigurationTypeDef = TypedDict(
|
|
|
782
798
|
"SlaInputConfigurationTypeDef",
|
|
783
799
|
{
|
|
784
800
|
"name": str,
|
|
785
|
-
"targetSlaMinutes": int,
|
|
786
801
|
"type": Literal["CaseField"],
|
|
802
|
+
"targetSlaMinutes": int,
|
|
787
803
|
"fieldId": NotRequired[str],
|
|
788
804
|
"targetFieldValues": NotRequired[Sequence[FieldValueUnionUnionTypeDef]],
|
|
789
805
|
},
|
|
790
806
|
)
|
|
791
807
|
|
|
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
808
|
class GetCaseAuditEventsResponseTypeDef(TypedDict):
|
|
806
809
|
auditEvents: List[AuditEventTypeDef]
|
|
807
810
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -816,12 +819,12 @@ class EventBridgeConfigurationTypeDef(TypedDict):
|
|
|
816
819
|
includedData: NotRequired[EventIncludedDataTypeDef]
|
|
817
820
|
|
|
818
821
|
class RequiredCaseRuleOutputTypeDef(TypedDict):
|
|
819
|
-
conditions: List[BooleanConditionOutputTypeDef]
|
|
820
822
|
defaultValue: bool
|
|
823
|
+
conditions: List[BooleanConditionOutputTypeDef]
|
|
821
824
|
|
|
822
825
|
class RequiredCaseRuleTypeDef(TypedDict):
|
|
823
|
-
conditions: Sequence[BooleanConditionTypeDef]
|
|
824
826
|
defaultValue: bool
|
|
827
|
+
conditions: Sequence[BooleanConditionTypeDef]
|
|
825
828
|
|
|
826
829
|
class LayoutSectionsOutputTypeDef(TypedDict):
|
|
827
830
|
sections: NotRequired[List[SectionOutputTypeDef]]
|
|
@@ -835,10 +838,12 @@ class SearchCasesResponseTypeDef(TypedDict):
|
|
|
835
838
|
nextToken: NotRequired[str]
|
|
836
839
|
|
|
837
840
|
class RelatedItemContentTypeDef(TypedDict):
|
|
838
|
-
comment: NotRequired[CommentContentTypeDef]
|
|
839
841
|
contact: NotRequired[ContactContentTypeDef]
|
|
842
|
+
comment: NotRequired[CommentContentTypeDef]
|
|
840
843
|
file: NotRequired[FileContentTypeDef]
|
|
841
844
|
sla: NotRequired[SlaContentTypeDef]
|
|
845
|
+
connectCase: NotRequired[ConnectCaseContentTypeDef]
|
|
846
|
+
custom: NotRequired[CustomContentTypeDef]
|
|
842
847
|
|
|
843
848
|
FieldValueUnionExtraTypeDef = Union[FieldValueTypeDef, FieldValueOutputTypeDef]
|
|
844
849
|
|
|
@@ -860,64 +865,61 @@ class CaseRuleDetailsTypeDef(TypedDict):
|
|
|
860
865
|
required: NotRequired[RequiredCaseRuleTypeDef]
|
|
861
866
|
|
|
862
867
|
class BasicLayoutOutputTypeDef(TypedDict):
|
|
863
|
-
moreInfo: NotRequired[LayoutSectionsOutputTypeDef]
|
|
864
868
|
topPanel: NotRequired[LayoutSectionsOutputTypeDef]
|
|
869
|
+
moreInfo: NotRequired[LayoutSectionsOutputTypeDef]
|
|
865
870
|
|
|
866
871
|
class BasicLayoutTypeDef(TypedDict):
|
|
867
|
-
moreInfo: NotRequired[LayoutSectionsTypeDef]
|
|
868
872
|
topPanel: NotRequired[LayoutSectionsTypeDef]
|
|
873
|
+
moreInfo: NotRequired[LayoutSectionsTypeDef]
|
|
869
874
|
|
|
870
875
|
SearchRelatedItemsResponseItemTypeDef = TypedDict(
|
|
871
876
|
"SearchRelatedItemsResponseItemTypeDef",
|
|
872
877
|
{
|
|
873
|
-
"associationTime": datetime,
|
|
874
|
-
"content": RelatedItemContentTypeDef,
|
|
875
878
|
"relatedItemId": str,
|
|
876
879
|
"type": RelatedItemTypeType,
|
|
877
|
-
"
|
|
880
|
+
"associationTime": datetime,
|
|
881
|
+
"content": RelatedItemContentTypeDef,
|
|
878
882
|
"tags": NotRequired[Dict[str, str]],
|
|
883
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
879
884
|
},
|
|
880
885
|
)
|
|
881
886
|
|
|
882
887
|
class CreateCaseRequestTypeDef(TypedDict):
|
|
883
888
|
domainId: str
|
|
884
|
-
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
885
889
|
templateId: str
|
|
890
|
+
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
886
891
|
clientToken: NotRequired[str]
|
|
887
892
|
performedBy: NotRequired[UserUnionTypeDef]
|
|
888
893
|
|
|
894
|
+
class CustomInputContentTypeDef(TypedDict):
|
|
895
|
+
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
896
|
+
|
|
889
897
|
class FieldFilterTypeDef(TypedDict):
|
|
890
|
-
contains: NotRequired[FieldValueUnionExtraTypeDef]
|
|
891
898
|
equalTo: NotRequired[FieldValueUnionExtraTypeDef]
|
|
899
|
+
contains: NotRequired[FieldValueUnionExtraTypeDef]
|
|
892
900
|
greaterThan: NotRequired[FieldValueUnionExtraTypeDef]
|
|
893
901
|
greaterThanOrEqualTo: NotRequired[FieldValueUnionExtraTypeDef]
|
|
894
902
|
lessThan: NotRequired[FieldValueUnionExtraTypeDef]
|
|
895
903
|
lessThanOrEqualTo: NotRequired[FieldValueUnionExtraTypeDef]
|
|
896
904
|
|
|
897
905
|
class UpdateCaseRequestTypeDef(TypedDict):
|
|
898
|
-
caseId: str
|
|
899
906
|
domainId: str
|
|
907
|
+
caseId: str
|
|
900
908
|
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
901
909
|
performedBy: NotRequired[UserUnionTypeDef]
|
|
902
910
|
|
|
903
|
-
class RelatedItemInputContentTypeDef(TypedDict):
|
|
904
|
-
comment: NotRequired[CommentContentTypeDef]
|
|
905
|
-
contact: NotRequired[ContactTypeDef]
|
|
906
|
-
file: NotRequired[FileContentTypeDef]
|
|
907
|
-
sla: NotRequired[SlaInputContentTypeDef]
|
|
908
|
-
|
|
909
911
|
class PutCaseEventConfigurationRequestTypeDef(TypedDict):
|
|
910
912
|
domainId: str
|
|
911
913
|
eventBridge: EventBridgeConfigurationUnionTypeDef
|
|
912
914
|
|
|
913
915
|
class GetCaseRuleResponseTypeDef(TypedDict):
|
|
914
|
-
caseRuleArn: str
|
|
915
916
|
caseRuleId: str
|
|
916
917
|
name: str
|
|
918
|
+
caseRuleArn: str
|
|
917
919
|
rule: CaseRuleDetailsOutputTypeDef
|
|
918
|
-
createdTime: NotRequired[datetime]
|
|
919
|
-
deleted: NotRequired[bool]
|
|
920
920
|
description: NotRequired[str]
|
|
921
|
+
deleted: NotRequired[bool]
|
|
922
|
+
createdTime: NotRequired[datetime]
|
|
921
923
|
lastModifiedTime: NotRequired[datetime]
|
|
922
924
|
tags: NotRequired[Dict[str, str]]
|
|
923
925
|
|
|
@@ -934,32 +936,48 @@ class SearchRelatedItemsResponseTypeDef(TypedDict):
|
|
|
934
936
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
935
937
|
nextToken: NotRequired[str]
|
|
936
938
|
|
|
939
|
+
class RelatedItemInputContentTypeDef(TypedDict):
|
|
940
|
+
contact: NotRequired[ContactTypeDef]
|
|
941
|
+
comment: NotRequired[CommentContentTypeDef]
|
|
942
|
+
file: NotRequired[FileContentTypeDef]
|
|
943
|
+
sla: NotRequired[SlaInputContentTypeDef]
|
|
944
|
+
connectCase: NotRequired[ConnectCaseInputContentTypeDef]
|
|
945
|
+
custom: NotRequired[CustomInputContentTypeDef]
|
|
946
|
+
|
|
937
947
|
CaseFilterPaginatorTypeDef = TypedDict(
|
|
938
948
|
"CaseFilterPaginatorTypeDef",
|
|
939
949
|
{
|
|
940
|
-
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
941
950
|
"field": NotRequired[FieldFilterTypeDef],
|
|
942
951
|
"not": NotRequired[Mapping[str, Any]],
|
|
952
|
+
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
943
953
|
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
944
954
|
},
|
|
945
955
|
)
|
|
946
956
|
CaseFilterTypeDef = TypedDict(
|
|
947
957
|
"CaseFilterTypeDef",
|
|
948
958
|
{
|
|
959
|
+
"field": NotRequired[FieldFilterTypeDef],
|
|
960
|
+
"not": NotRequired[Mapping[str, Any]],
|
|
949
961
|
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
962
|
+
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
963
|
+
},
|
|
964
|
+
)
|
|
965
|
+
CustomFieldsFilterPaginatorTypeDef = TypedDict(
|
|
966
|
+
"CustomFieldsFilterPaginatorTypeDef",
|
|
967
|
+
{
|
|
950
968
|
"field": NotRequired[FieldFilterTypeDef],
|
|
951
969
|
"not": NotRequired[Mapping[str, Any]],
|
|
970
|
+
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
952
971
|
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
953
972
|
},
|
|
954
973
|
)
|
|
955
|
-
|
|
956
|
-
"
|
|
974
|
+
CustomFieldsFilterTypeDef = TypedDict(
|
|
975
|
+
"CustomFieldsFilterTypeDef",
|
|
957
976
|
{
|
|
958
|
-
"
|
|
959
|
-
"
|
|
960
|
-
"
|
|
961
|
-
"
|
|
962
|
-
"performedBy": NotRequired[UserUnionTypeDef],
|
|
977
|
+
"field": NotRequired[FieldFilterTypeDef],
|
|
978
|
+
"not": NotRequired[Mapping[str, Any]],
|
|
979
|
+
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
980
|
+
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
963
981
|
},
|
|
964
982
|
)
|
|
965
983
|
|
|
@@ -975,32 +993,42 @@ class CreateCaseRuleRequestTypeDef(TypedDict):
|
|
|
975
993
|
description: NotRequired[str]
|
|
976
994
|
|
|
977
995
|
class UpdateCaseRuleRequestTypeDef(TypedDict):
|
|
978
|
-
caseRuleId: str
|
|
979
996
|
domainId: str
|
|
980
|
-
|
|
997
|
+
caseRuleId: str
|
|
981
998
|
name: NotRequired[str]
|
|
999
|
+
description: NotRequired[str]
|
|
982
1000
|
rule: NotRequired[CaseRuleDetailsUnionTypeDef]
|
|
983
1001
|
|
|
984
1002
|
class GetLayoutResponseTypeDef(TypedDict):
|
|
985
|
-
content: LayoutContentOutputTypeDef
|
|
986
|
-
createdTime: datetime
|
|
987
|
-
deleted: bool
|
|
988
|
-
lastModifiedTime: datetime
|
|
989
|
-
layoutArn: str
|
|
990
1003
|
layoutId: str
|
|
1004
|
+
layoutArn: str
|
|
991
1005
|
name: str
|
|
1006
|
+
content: LayoutContentOutputTypeDef
|
|
992
1007
|
tags: Dict[str, str]
|
|
1008
|
+
deleted: bool
|
|
1009
|
+
createdTime: datetime
|
|
1010
|
+
lastModifiedTime: datetime
|
|
993
1011
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
994
1012
|
|
|
995
1013
|
LayoutContentUnionTypeDef = Union[LayoutContentTypeDef, LayoutContentOutputTypeDef]
|
|
1014
|
+
CreateRelatedItemRequestTypeDef = TypedDict(
|
|
1015
|
+
"CreateRelatedItemRequestTypeDef",
|
|
1016
|
+
{
|
|
1017
|
+
"domainId": str,
|
|
1018
|
+
"caseId": str,
|
|
1019
|
+
"type": RelatedItemTypeType,
|
|
1020
|
+
"content": RelatedItemInputContentTypeDef,
|
|
1021
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
1022
|
+
},
|
|
1023
|
+
)
|
|
996
1024
|
SearchCasesRequestPaginateTypeDef = TypedDict(
|
|
997
1025
|
"SearchCasesRequestPaginateTypeDef",
|
|
998
1026
|
{
|
|
999
1027
|
"domainId": str,
|
|
1000
|
-
"fields": NotRequired[Sequence[FieldIdentifierTypeDef]],
|
|
1001
|
-
"filter": NotRequired[CaseFilterPaginatorTypeDef],
|
|
1002
1028
|
"searchTerm": NotRequired[str],
|
|
1029
|
+
"filter": NotRequired[CaseFilterPaginatorTypeDef],
|
|
1003
1030
|
"sorts": NotRequired[Sequence[SortTypeDef]],
|
|
1031
|
+
"fields": NotRequired[Sequence[FieldIdentifierTypeDef]],
|
|
1004
1032
|
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1005
1033
|
},
|
|
1006
1034
|
)
|
|
@@ -1008,22 +1036,57 @@ SearchCasesRequestTypeDef = TypedDict(
|
|
|
1008
1036
|
"SearchCasesRequestTypeDef",
|
|
1009
1037
|
{
|
|
1010
1038
|
"domainId": str,
|
|
1011
|
-
"fields": NotRequired[Sequence[FieldIdentifierTypeDef]],
|
|
1012
|
-
"filter": NotRequired[CaseFilterTypeDef],
|
|
1013
1039
|
"maxResults": NotRequired[int],
|
|
1014
1040
|
"nextToken": NotRequired[str],
|
|
1015
1041
|
"searchTerm": NotRequired[str],
|
|
1042
|
+
"filter": NotRequired[CaseFilterTypeDef],
|
|
1016
1043
|
"sorts": NotRequired[Sequence[SortTypeDef]],
|
|
1044
|
+
"fields": NotRequired[Sequence[FieldIdentifierTypeDef]],
|
|
1017
1045
|
},
|
|
1018
1046
|
)
|
|
1019
1047
|
|
|
1048
|
+
class CustomFilterPaginatorTypeDef(TypedDict):
|
|
1049
|
+
fields: NotRequired[CustomFieldsFilterPaginatorTypeDef]
|
|
1050
|
+
|
|
1051
|
+
class CustomFilterTypeDef(TypedDict):
|
|
1052
|
+
fields: NotRequired[CustomFieldsFilterTypeDef]
|
|
1053
|
+
|
|
1020
1054
|
class CreateLayoutRequestTypeDef(TypedDict):
|
|
1021
|
-
content: LayoutContentUnionTypeDef
|
|
1022
1055
|
domainId: str
|
|
1023
1056
|
name: str
|
|
1057
|
+
content: LayoutContentUnionTypeDef
|
|
1024
1058
|
|
|
1025
1059
|
class UpdateLayoutRequestTypeDef(TypedDict):
|
|
1026
1060
|
domainId: str
|
|
1027
1061
|
layoutId: str
|
|
1028
|
-
content: NotRequired[LayoutContentUnionTypeDef]
|
|
1029
1062
|
name: NotRequired[str]
|
|
1063
|
+
content: NotRequired[LayoutContentUnionTypeDef]
|
|
1064
|
+
|
|
1065
|
+
class RelatedItemTypeFilterPaginatorTypeDef(TypedDict):
|
|
1066
|
+
contact: NotRequired[ContactFilterTypeDef]
|
|
1067
|
+
comment: NotRequired[Mapping[str, Any]]
|
|
1068
|
+
file: NotRequired[FileFilterTypeDef]
|
|
1069
|
+
sla: NotRequired[SlaFilterTypeDef]
|
|
1070
|
+
connectCase: NotRequired[ConnectCaseFilterTypeDef]
|
|
1071
|
+
custom: NotRequired[CustomFilterPaginatorTypeDef]
|
|
1072
|
+
|
|
1073
|
+
class RelatedItemTypeFilterTypeDef(TypedDict):
|
|
1074
|
+
contact: NotRequired[ContactFilterTypeDef]
|
|
1075
|
+
comment: NotRequired[Mapping[str, Any]]
|
|
1076
|
+
file: NotRequired[FileFilterTypeDef]
|
|
1077
|
+
sla: NotRequired[SlaFilterTypeDef]
|
|
1078
|
+
connectCase: NotRequired[ConnectCaseFilterTypeDef]
|
|
1079
|
+
custom: NotRequired[CustomFilterTypeDef]
|
|
1080
|
+
|
|
1081
|
+
class SearchRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
1082
|
+
domainId: str
|
|
1083
|
+
caseId: str
|
|
1084
|
+
filters: NotRequired[Sequence[RelatedItemTypeFilterPaginatorTypeDef]]
|
|
1085
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1086
|
+
|
|
1087
|
+
class SearchRelatedItemsRequestTypeDef(TypedDict):
|
|
1088
|
+
domainId: str
|
|
1089
|
+
caseId: str
|
|
1090
|
+
maxResults: NotRequired[int]
|
|
1091
|
+
nextToken: NotRequired[str]
|
|
1092
|
+
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|