types-boto3-connectcases 1.42.3__py3-none-any.whl → 1.42.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/__init__.py +1 -1
- types_boto3_connectcases/__init__.pyi +1 -1
- types_boto3_connectcases/__main__.py +4 -4
- types_boto3_connectcases/client.py +1 -1
- types_boto3_connectcases/client.pyi +1 -1
- types_boto3_connectcases/literals.py +5 -2
- types_boto3_connectcases/literals.pyi +5 -2
- types_boto3_connectcases/paginator.py +1 -1
- types_boto3_connectcases/paginator.pyi +1 -1
- types_boto3_connectcases/type_defs.py +153 -106
- types_boto3_connectcases/type_defs.pyi +139 -97
- types_boto3_connectcases/version.py +2 -2
- {types_boto3_connectcases-1.42.3.dist-info → types_boto3_connectcases-1.42.42.dist-info}/METADATA +4 -4
- types_boto3_connectcases-1.42.42.dist-info/RECORD +18 -0
- {types_boto3_connectcases-1.42.3.dist-info → types_boto3_connectcases-1.42.42.dist-info}/WHEEL +1 -1
- {types_boto3_connectcases-1.42.3.dist-info → types_boto3_connectcases-1.42.42.dist-info}/licenses/LICENSE +1 -1
- types_boto3_connectcases-1.42.3.dist-info/RECORD +0 -18
- {types_boto3_connectcases-1.42.3.dist-info → types_boto3_connectcases-1.42.42.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2026 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 ConnectCases 1.42.
|
|
16
|
-
"Version: 1.42.
|
|
15
|
+
"Type annotations for boto3 ConnectCases 1.42.42\n"
|
|
16
|
+
"Version: 1.42.42\n"
|
|
17
17
|
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_connectcases//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#connectcases\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.42.
|
|
29
|
+
sys.stdout.write("1.42.42\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -3,7 +3,7 @@ Type annotations for connectcases service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/literals/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -43,6 +43,7 @@ __all__ = (
|
|
|
43
43
|
"ServiceName",
|
|
44
44
|
"SlaStatusType",
|
|
45
45
|
"SlaTypeType",
|
|
46
|
+
"TagPropagationResourceTypeType",
|
|
46
47
|
"TemplateStatusType",
|
|
47
48
|
)
|
|
48
49
|
|
|
@@ -62,6 +63,7 @@ SearchCasesPaginatorName = Literal["search_cases"]
|
|
|
62
63
|
SearchRelatedItemsPaginatorName = Literal["search_related_items"]
|
|
63
64
|
SlaStatusType = Literal["Active", "Met", "NotMet", "Overdue"]
|
|
64
65
|
SlaTypeType = Literal["CaseField"]
|
|
66
|
+
TagPropagationResourceTypeType = Literal["Cases"]
|
|
65
67
|
TemplateStatusType = Literal["Active", "Inactive"]
|
|
66
68
|
ConnectCasesServiceName = Literal["connectcases"]
|
|
67
69
|
ServiceName = Literal[
|
|
@@ -205,7 +207,6 @@ ServiceName = Literal[
|
|
|
205
207
|
"eks-auth",
|
|
206
208
|
"elasticache",
|
|
207
209
|
"elasticbeanstalk",
|
|
208
|
-
"elastictranscoder",
|
|
209
210
|
"elb",
|
|
210
211
|
"elbv2",
|
|
211
212
|
"emr",
|
|
@@ -470,6 +471,7 @@ ServiceName = Literal[
|
|
|
470
471
|
"waf-regional",
|
|
471
472
|
"wafv2",
|
|
472
473
|
"wellarchitected",
|
|
474
|
+
"wickr",
|
|
473
475
|
"wisdom",
|
|
474
476
|
"workdocs",
|
|
475
477
|
"workmail",
|
|
@@ -487,6 +489,7 @@ PaginatorName = Literal[
|
|
|
487
489
|
"list_case_rules", "search_all_related_items", "search_cases", "search_related_items"
|
|
488
490
|
]
|
|
489
491
|
RegionName = Literal[
|
|
492
|
+
"af-south-1",
|
|
490
493
|
"ap-northeast-1",
|
|
491
494
|
"ap-northeast-2",
|
|
492
495
|
"ap-southeast-1",
|
|
@@ -3,7 +3,7 @@ Type annotations for connectcases service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/literals/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -42,6 +42,7 @@ __all__ = (
|
|
|
42
42
|
"ServiceName",
|
|
43
43
|
"SlaStatusType",
|
|
44
44
|
"SlaTypeType",
|
|
45
|
+
"TagPropagationResourceTypeType",
|
|
45
46
|
"TemplateStatusType",
|
|
46
47
|
)
|
|
47
48
|
|
|
@@ -60,6 +61,7 @@ SearchCasesPaginatorName = Literal["search_cases"]
|
|
|
60
61
|
SearchRelatedItemsPaginatorName = Literal["search_related_items"]
|
|
61
62
|
SlaStatusType = Literal["Active", "Met", "NotMet", "Overdue"]
|
|
62
63
|
SlaTypeType = Literal["CaseField"]
|
|
64
|
+
TagPropagationResourceTypeType = Literal["Cases"]
|
|
63
65
|
TemplateStatusType = Literal["Active", "Inactive"]
|
|
64
66
|
ConnectCasesServiceName = Literal["connectcases"]
|
|
65
67
|
ServiceName = Literal[
|
|
@@ -203,7 +205,6 @@ ServiceName = Literal[
|
|
|
203
205
|
"eks-auth",
|
|
204
206
|
"elasticache",
|
|
205
207
|
"elasticbeanstalk",
|
|
206
|
-
"elastictranscoder",
|
|
207
208
|
"elb",
|
|
208
209
|
"elbv2",
|
|
209
210
|
"emr",
|
|
@@ -468,6 +469,7 @@ ServiceName = Literal[
|
|
|
468
469
|
"waf-regional",
|
|
469
470
|
"wafv2",
|
|
470
471
|
"wellarchitected",
|
|
472
|
+
"wickr",
|
|
471
473
|
"wisdom",
|
|
472
474
|
"workdocs",
|
|
473
475
|
"workmail",
|
|
@@ -485,6 +487,7 @@ PaginatorName = Literal[
|
|
|
485
487
|
"list_case_rules", "search_all_related_items", "search_cases", "search_related_items"
|
|
486
488
|
]
|
|
487
489
|
RegionName = Literal[
|
|
490
|
+
"af-south-1",
|
|
488
491
|
"ap-northeast-1",
|
|
489
492
|
"ap-northeast-2",
|
|
490
493
|
"ap-southeast-1",
|
|
@@ -3,7 +3,7 @@ Type annotations for connectcases service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -109,6 +109,7 @@ __all__ = (
|
|
|
109
109
|
"EventBridgeConfigurationUnionTypeDef",
|
|
110
110
|
"EventIncludedDataOutputTypeDef",
|
|
111
111
|
"EventIncludedDataTypeDef",
|
|
112
|
+
"FieldAttributesTypeDef",
|
|
112
113
|
"FieldErrorTypeDef",
|
|
113
114
|
"FieldFilterTypeDef",
|
|
114
115
|
"FieldGroupOutputTypeDef",
|
|
@@ -205,9 +206,15 @@ __all__ = (
|
|
|
205
206
|
"SlaInputConfigurationTypeDef",
|
|
206
207
|
"SlaInputContentTypeDef",
|
|
207
208
|
"SortTypeDef",
|
|
209
|
+
"TagFilterTypeDef",
|
|
210
|
+
"TagPropagationConfigurationOutputTypeDef",
|
|
211
|
+
"TagPropagationConfigurationTypeDef",
|
|
212
|
+
"TagPropagationConfigurationUnionTypeDef",
|
|
208
213
|
"TagResourceRequestTypeDef",
|
|
214
|
+
"TagValueTypeDef",
|
|
209
215
|
"TemplateRuleTypeDef",
|
|
210
216
|
"TemplateSummaryTypeDef",
|
|
217
|
+
"TextAttributesTypeDef",
|
|
211
218
|
"UntagResourceRequestTypeDef",
|
|
212
219
|
"UpdateCaseRequestTypeDef",
|
|
213
220
|
"UpdateCaseRuleRequestTypeDef",
|
|
@@ -269,21 +276,6 @@ FieldErrorTypeDef = TypedDict(
|
|
|
269
276
|
"message": NotRequired[str],
|
|
270
277
|
},
|
|
271
278
|
)
|
|
272
|
-
GetFieldResponseTypeDef = TypedDict(
|
|
273
|
-
"GetFieldResponseTypeDef",
|
|
274
|
-
{
|
|
275
|
-
"fieldId": str,
|
|
276
|
-
"name": str,
|
|
277
|
-
"fieldArn": str,
|
|
278
|
-
"type": FieldTypeType,
|
|
279
|
-
"namespace": FieldNamespaceType,
|
|
280
|
-
"description": NotRequired[str],
|
|
281
|
-
"tags": NotRequired[dict[str, str]],
|
|
282
|
-
"deleted": NotRequired[bool],
|
|
283
|
-
"createdTime": NotRequired[datetime],
|
|
284
|
-
"lastModifiedTime": NotRequired[datetime],
|
|
285
|
-
},
|
|
286
|
-
)
|
|
287
279
|
|
|
288
280
|
|
|
289
281
|
class FieldOptionTypeDef(TypedDict):
|
|
@@ -365,17 +357,6 @@ class CreateDomainRequestTypeDef(TypedDict):
|
|
|
365
357
|
name: str
|
|
366
358
|
|
|
367
359
|
|
|
368
|
-
CreateFieldRequestTypeDef = TypedDict(
|
|
369
|
-
"CreateFieldRequestTypeDef",
|
|
370
|
-
{
|
|
371
|
-
"domainId": str,
|
|
372
|
-
"name": str,
|
|
373
|
-
"type": FieldTypeType,
|
|
374
|
-
"description": NotRequired[str],
|
|
375
|
-
},
|
|
376
|
-
)
|
|
377
|
-
|
|
378
|
-
|
|
379
360
|
class LayoutConfigurationTypeDef(TypedDict):
|
|
380
361
|
defaultLayout: NotRequired[str]
|
|
381
362
|
|
|
@@ -434,6 +415,10 @@ class RelatedItemEventIncludedDataTypeDef(TypedDict):
|
|
|
434
415
|
includeContent: bool
|
|
435
416
|
|
|
436
417
|
|
|
418
|
+
class TextAttributesTypeDef(TypedDict):
|
|
419
|
+
isMultiline: bool
|
|
420
|
+
|
|
421
|
+
|
|
437
422
|
FieldItemTypeDef = TypedDict(
|
|
438
423
|
"FieldItemTypeDef",
|
|
439
424
|
{
|
|
@@ -452,18 +437,6 @@ class ParentChildFieldOptionsMappingTypeDef(TypedDict):
|
|
|
452
437
|
childFieldOptionValues: Sequence[str]
|
|
453
438
|
|
|
454
439
|
|
|
455
|
-
FieldSummaryTypeDef = TypedDict(
|
|
456
|
-
"FieldSummaryTypeDef",
|
|
457
|
-
{
|
|
458
|
-
"fieldId": str,
|
|
459
|
-
"fieldArn": str,
|
|
460
|
-
"name": str,
|
|
461
|
-
"type": FieldTypeType,
|
|
462
|
-
"namespace": FieldNamespaceType,
|
|
463
|
-
},
|
|
464
|
-
)
|
|
465
|
-
|
|
466
|
-
|
|
467
440
|
class FieldValueUnionOutputTypeDef(TypedDict):
|
|
468
441
|
stringValue: NotRequired[str]
|
|
469
442
|
doubleValue: NotRequired[float]
|
|
@@ -513,6 +486,11 @@ class GetTemplateRequestTypeDef(TypedDict):
|
|
|
513
486
|
templateId: str
|
|
514
487
|
|
|
515
488
|
|
|
489
|
+
class TagPropagationConfigurationOutputTypeDef(TypedDict):
|
|
490
|
+
resourceType: Literal["Cases"]
|
|
491
|
+
tagMap: dict[str, str]
|
|
492
|
+
|
|
493
|
+
|
|
516
494
|
class LayoutSummaryTypeDef(TypedDict):
|
|
517
495
|
layoutId: str
|
|
518
496
|
layoutArn: str
|
|
@@ -574,13 +552,6 @@ class ListTemplatesRequestTypeDef(TypedDict):
|
|
|
574
552
|
status: NotRequired[Sequence[TemplateStatusType]]
|
|
575
553
|
|
|
576
554
|
|
|
577
|
-
class TemplateSummaryTypeDef(TypedDict):
|
|
578
|
-
templateId: str
|
|
579
|
-
templateArn: str
|
|
580
|
-
name: str
|
|
581
|
-
status: TemplateStatusType
|
|
582
|
-
|
|
583
|
-
|
|
584
555
|
class SlaFilterTypeDef(TypedDict):
|
|
585
556
|
name: NotRequired[str]
|
|
586
557
|
status: NotRequired[SlaStatusType]
|
|
@@ -596,6 +567,16 @@ class SortTypeDef(TypedDict):
|
|
|
596
567
|
sortOrder: OrderType
|
|
597
568
|
|
|
598
569
|
|
|
570
|
+
class TagValueTypeDef(TypedDict):
|
|
571
|
+
key: NotRequired[str]
|
|
572
|
+
value: NotRequired[str]
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
class TagPropagationConfigurationTypeDef(TypedDict):
|
|
576
|
+
resourceType: Literal["Cases"]
|
|
577
|
+
tagMap: Mapping[str, str]
|
|
578
|
+
|
|
579
|
+
|
|
599
580
|
class TagResourceRequestTypeDef(TypedDict):
|
|
600
581
|
arn: str
|
|
601
582
|
tags: Mapping[str, str]
|
|
@@ -606,13 +587,6 @@ class UntagResourceRequestTypeDef(TypedDict):
|
|
|
606
587
|
tagKeys: Sequence[str]
|
|
607
588
|
|
|
608
589
|
|
|
609
|
-
class UpdateFieldRequestTypeDef(TypedDict):
|
|
610
|
-
domainId: str
|
|
611
|
-
fieldId: str
|
|
612
|
-
name: NotRequired[str]
|
|
613
|
-
description: NotRequired[str]
|
|
614
|
-
|
|
615
|
-
|
|
616
590
|
class AuditEventFieldTypeDef(TypedDict):
|
|
617
591
|
eventFieldId: str
|
|
618
592
|
newValue: AuditEventFieldValueUnionTypeDef
|
|
@@ -711,12 +685,6 @@ class GetCaseRequestTypeDef(TypedDict):
|
|
|
711
685
|
nextToken: NotRequired[str]
|
|
712
686
|
|
|
713
687
|
|
|
714
|
-
class BatchGetFieldResponseTypeDef(TypedDict):
|
|
715
|
-
fields: list[GetFieldResponseTypeDef]
|
|
716
|
-
errors: list[FieldErrorTypeDef]
|
|
717
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
718
|
-
|
|
719
|
-
|
|
720
688
|
class BatchPutFieldOptionsRequestTypeDef(TypedDict):
|
|
721
689
|
domainId: str
|
|
722
690
|
fieldId: str
|
|
@@ -758,49 +726,16 @@ class ListCasesForContactResponseTypeDef(TypedDict):
|
|
|
758
726
|
nextToken: NotRequired[str]
|
|
759
727
|
|
|
760
728
|
|
|
761
|
-
class CreateTemplateRequestTypeDef(TypedDict):
|
|
762
|
-
domainId: str
|
|
763
|
-
name: str
|
|
764
|
-
description: NotRequired[str]
|
|
765
|
-
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
766
|
-
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
767
|
-
status: NotRequired[TemplateStatusType]
|
|
768
|
-
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
class GetTemplateResponseTypeDef(TypedDict):
|
|
772
|
-
templateId: str
|
|
773
|
-
templateArn: str
|
|
774
|
-
name: str
|
|
775
|
-
description: str
|
|
776
|
-
layoutConfiguration: LayoutConfigurationTypeDef
|
|
777
|
-
requiredFields: list[RequiredFieldTypeDef]
|
|
778
|
-
tags: dict[str, str]
|
|
779
|
-
status: TemplateStatusType
|
|
780
|
-
deleted: bool
|
|
781
|
-
createdTime: datetime
|
|
782
|
-
lastModifiedTime: datetime
|
|
783
|
-
rules: list[TemplateRuleTypeDef]
|
|
784
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
class UpdateTemplateRequestTypeDef(TypedDict):
|
|
788
|
-
domainId: str
|
|
789
|
-
templateId: str
|
|
790
|
-
name: NotRequired[str]
|
|
791
|
-
description: NotRequired[str]
|
|
792
|
-
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
793
|
-
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
794
|
-
status: NotRequired[TemplateStatusType]
|
|
795
|
-
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
796
|
-
|
|
797
|
-
|
|
798
729
|
class ListDomainsResponseTypeDef(TypedDict):
|
|
799
730
|
domains: list[DomainSummaryTypeDef]
|
|
800
731
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
801
732
|
nextToken: NotRequired[str]
|
|
802
733
|
|
|
803
734
|
|
|
735
|
+
class FieldAttributesTypeDef(TypedDict):
|
|
736
|
+
text: NotRequired[TextAttributesTypeDef]
|
|
737
|
+
|
|
738
|
+
|
|
804
739
|
class FieldGroupOutputTypeDef(TypedDict):
|
|
805
740
|
fields: list[FieldItemTypeDef]
|
|
806
741
|
name: NotRequired[str]
|
|
@@ -823,12 +758,6 @@ class FieldOptionsCaseRuleTypeDef(TypedDict):
|
|
|
823
758
|
childFieldId: NotRequired[str]
|
|
824
759
|
|
|
825
760
|
|
|
826
|
-
class ListFieldsResponseTypeDef(TypedDict):
|
|
827
|
-
fields: list[FieldSummaryTypeDef]
|
|
828
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
829
|
-
nextToken: NotRequired[str]
|
|
830
|
-
|
|
831
|
-
|
|
832
761
|
FieldValueOutputTypeDef = TypedDict(
|
|
833
762
|
"FieldValueOutputTypeDef",
|
|
834
763
|
{
|
|
@@ -851,6 +780,31 @@ SlaConfigurationTypeDef = TypedDict(
|
|
|
851
780
|
FieldValueUnionUnionTypeDef = Union[FieldValueUnionTypeDef, FieldValueUnionOutputTypeDef]
|
|
852
781
|
|
|
853
782
|
|
|
783
|
+
class GetTemplateResponseTypeDef(TypedDict):
|
|
784
|
+
templateId: str
|
|
785
|
+
templateArn: str
|
|
786
|
+
name: str
|
|
787
|
+
description: str
|
|
788
|
+
layoutConfiguration: LayoutConfigurationTypeDef
|
|
789
|
+
requiredFields: list[RequiredFieldTypeDef]
|
|
790
|
+
tags: dict[str, str]
|
|
791
|
+
status: TemplateStatusType
|
|
792
|
+
deleted: bool
|
|
793
|
+
createdTime: datetime
|
|
794
|
+
lastModifiedTime: datetime
|
|
795
|
+
rules: list[TemplateRuleTypeDef]
|
|
796
|
+
tagPropagationConfigurations: list[TagPropagationConfigurationOutputTypeDef]
|
|
797
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
class TemplateSummaryTypeDef(TypedDict):
|
|
801
|
+
templateId: str
|
|
802
|
+
templateArn: str
|
|
803
|
+
name: str
|
|
804
|
+
status: TemplateStatusType
|
|
805
|
+
tagPropagationConfigurations: NotRequired[list[TagPropagationConfigurationOutputTypeDef]]
|
|
806
|
+
|
|
807
|
+
|
|
854
808
|
class ListLayoutsResponseTypeDef(TypedDict):
|
|
855
809
|
layouts: list[LayoutSummaryTypeDef]
|
|
856
810
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -862,12 +816,13 @@ class ListCaseRulesRequestPaginateTypeDef(TypedDict):
|
|
|
862
816
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
863
817
|
|
|
864
818
|
|
|
865
|
-
class
|
|
866
|
-
|
|
867
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
868
|
-
nextToken: NotRequired[str]
|
|
819
|
+
class TagFilterTypeDef(TypedDict):
|
|
820
|
+
equalTo: NotRequired[TagValueTypeDef]
|
|
869
821
|
|
|
870
822
|
|
|
823
|
+
TagPropagationConfigurationUnionTypeDef = Union[
|
|
824
|
+
TagPropagationConfigurationTypeDef, TagPropagationConfigurationOutputTypeDef
|
|
825
|
+
]
|
|
871
826
|
AuditEventTypeDef = TypedDict(
|
|
872
827
|
"AuditEventTypeDef",
|
|
873
828
|
{
|
|
@@ -901,6 +856,53 @@ class BooleanConditionTypeDef(TypedDict):
|
|
|
901
856
|
notEqualTo: NotRequired[BooleanOperandsTypeDef]
|
|
902
857
|
|
|
903
858
|
|
|
859
|
+
CreateFieldRequestTypeDef = TypedDict(
|
|
860
|
+
"CreateFieldRequestTypeDef",
|
|
861
|
+
{
|
|
862
|
+
"domainId": str,
|
|
863
|
+
"name": str,
|
|
864
|
+
"type": FieldTypeType,
|
|
865
|
+
"description": NotRequired[str],
|
|
866
|
+
"attributes": NotRequired[FieldAttributesTypeDef],
|
|
867
|
+
},
|
|
868
|
+
)
|
|
869
|
+
FieldSummaryTypeDef = TypedDict(
|
|
870
|
+
"FieldSummaryTypeDef",
|
|
871
|
+
{
|
|
872
|
+
"fieldId": str,
|
|
873
|
+
"fieldArn": str,
|
|
874
|
+
"name": str,
|
|
875
|
+
"type": FieldTypeType,
|
|
876
|
+
"namespace": FieldNamespaceType,
|
|
877
|
+
"attributes": NotRequired[FieldAttributesTypeDef],
|
|
878
|
+
},
|
|
879
|
+
)
|
|
880
|
+
GetFieldResponseTypeDef = TypedDict(
|
|
881
|
+
"GetFieldResponseTypeDef",
|
|
882
|
+
{
|
|
883
|
+
"fieldId": str,
|
|
884
|
+
"name": str,
|
|
885
|
+
"fieldArn": str,
|
|
886
|
+
"type": FieldTypeType,
|
|
887
|
+
"namespace": FieldNamespaceType,
|
|
888
|
+
"description": NotRequired[str],
|
|
889
|
+
"tags": NotRequired[dict[str, str]],
|
|
890
|
+
"deleted": NotRequired[bool],
|
|
891
|
+
"createdTime": NotRequired[datetime],
|
|
892
|
+
"lastModifiedTime": NotRequired[datetime],
|
|
893
|
+
"attributes": NotRequired[FieldAttributesTypeDef],
|
|
894
|
+
},
|
|
895
|
+
)
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
class UpdateFieldRequestTypeDef(TypedDict):
|
|
899
|
+
domainId: str
|
|
900
|
+
fieldId: str
|
|
901
|
+
name: NotRequired[str]
|
|
902
|
+
description: NotRequired[str]
|
|
903
|
+
attributes: NotRequired[FieldAttributesTypeDef]
|
|
904
|
+
|
|
905
|
+
|
|
904
906
|
class SectionOutputTypeDef(TypedDict):
|
|
905
907
|
fieldGroup: NotRequired[FieldGroupOutputTypeDef]
|
|
906
908
|
|
|
@@ -951,6 +953,35 @@ SlaInputConfigurationTypeDef = TypedDict(
|
|
|
951
953
|
)
|
|
952
954
|
|
|
953
955
|
|
|
956
|
+
class ListTemplatesResponseTypeDef(TypedDict):
|
|
957
|
+
templates: list[TemplateSummaryTypeDef]
|
|
958
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
959
|
+
nextToken: NotRequired[str]
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
class CreateTemplateRequestTypeDef(TypedDict):
|
|
963
|
+
domainId: str
|
|
964
|
+
name: str
|
|
965
|
+
description: NotRequired[str]
|
|
966
|
+
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
967
|
+
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
968
|
+
status: NotRequired[TemplateStatusType]
|
|
969
|
+
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
970
|
+
tagPropagationConfigurations: NotRequired[Sequence[TagPropagationConfigurationUnionTypeDef]]
|
|
971
|
+
|
|
972
|
+
|
|
973
|
+
class UpdateTemplateRequestTypeDef(TypedDict):
|
|
974
|
+
domainId: str
|
|
975
|
+
templateId: str
|
|
976
|
+
name: NotRequired[str]
|
|
977
|
+
description: NotRequired[str]
|
|
978
|
+
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
979
|
+
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
980
|
+
status: NotRequired[TemplateStatusType]
|
|
981
|
+
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
982
|
+
tagPropagationConfigurations: NotRequired[Sequence[TagPropagationConfigurationUnionTypeDef]]
|
|
983
|
+
|
|
984
|
+
|
|
954
985
|
class GetCaseAuditEventsResponseTypeDef(TypedDict):
|
|
955
986
|
auditEvents: list[AuditEventTypeDef]
|
|
956
987
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -987,6 +1018,18 @@ class RequiredCaseRuleTypeDef(TypedDict):
|
|
|
987
1018
|
conditions: Sequence[BooleanConditionTypeDef]
|
|
988
1019
|
|
|
989
1020
|
|
|
1021
|
+
class ListFieldsResponseTypeDef(TypedDict):
|
|
1022
|
+
fields: list[FieldSummaryTypeDef]
|
|
1023
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1024
|
+
nextToken: NotRequired[str]
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
class BatchGetFieldResponseTypeDef(TypedDict):
|
|
1028
|
+
fields: list[GetFieldResponseTypeDef]
|
|
1029
|
+
errors: list[FieldErrorTypeDef]
|
|
1030
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1031
|
+
|
|
1032
|
+
|
|
990
1033
|
class LayoutSectionsOutputTypeDef(TypedDict):
|
|
991
1034
|
sections: NotRequired[list[SectionOutputTypeDef]]
|
|
992
1035
|
|
|
@@ -997,6 +1040,7 @@ class LayoutSectionsTypeDef(TypedDict):
|
|
|
997
1040
|
|
|
998
1041
|
class SearchCasesResponseTypeDef(TypedDict):
|
|
999
1042
|
cases: list[SearchCasesResponseItemTypeDef]
|
|
1043
|
+
totalCount: int
|
|
1000
1044
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1001
1045
|
nextToken: NotRequired[str]
|
|
1002
1046
|
|
|
@@ -1080,6 +1124,7 @@ class CreateCaseRequestTypeDef(TypedDict):
|
|
|
1080
1124
|
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
1081
1125
|
clientToken: NotRequired[str]
|
|
1082
1126
|
performedBy: NotRequired[UserUnionTypeDef]
|
|
1127
|
+
tags: NotRequired[Mapping[str, str]]
|
|
1083
1128
|
|
|
1084
1129
|
|
|
1085
1130
|
class CustomInputContentTypeDef(TypedDict):
|
|
@@ -1156,6 +1201,7 @@ CaseFilterPaginatorTypeDef = TypedDict(
|
|
|
1156
1201
|
{
|
|
1157
1202
|
"field": NotRequired[FieldFilterTypeDef],
|
|
1158
1203
|
"not": NotRequired[Mapping[str, Any]],
|
|
1204
|
+
"tag": NotRequired[TagFilterTypeDef],
|
|
1159
1205
|
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
1160
1206
|
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
1161
1207
|
},
|
|
@@ -1165,6 +1211,7 @@ CaseFilterTypeDef = TypedDict(
|
|
|
1165
1211
|
{
|
|
1166
1212
|
"field": NotRequired[FieldFilterTypeDef],
|
|
1167
1213
|
"not": NotRequired[Mapping[str, Any]],
|
|
1214
|
+
"tag": NotRequired[TagFilterTypeDef],
|
|
1168
1215
|
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
1169
1216
|
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
1170
1217
|
},
|
|
@@ -3,7 +3,7 @@ Type annotations for connectcases service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -108,6 +108,7 @@ __all__ = (
|
|
|
108
108
|
"EventBridgeConfigurationUnionTypeDef",
|
|
109
109
|
"EventIncludedDataOutputTypeDef",
|
|
110
110
|
"EventIncludedDataTypeDef",
|
|
111
|
+
"FieldAttributesTypeDef",
|
|
111
112
|
"FieldErrorTypeDef",
|
|
112
113
|
"FieldFilterTypeDef",
|
|
113
114
|
"FieldGroupOutputTypeDef",
|
|
@@ -204,9 +205,15 @@ __all__ = (
|
|
|
204
205
|
"SlaInputConfigurationTypeDef",
|
|
205
206
|
"SlaInputContentTypeDef",
|
|
206
207
|
"SortTypeDef",
|
|
208
|
+
"TagFilterTypeDef",
|
|
209
|
+
"TagPropagationConfigurationOutputTypeDef",
|
|
210
|
+
"TagPropagationConfigurationTypeDef",
|
|
211
|
+
"TagPropagationConfigurationUnionTypeDef",
|
|
207
212
|
"TagResourceRequestTypeDef",
|
|
213
|
+
"TagValueTypeDef",
|
|
208
214
|
"TemplateRuleTypeDef",
|
|
209
215
|
"TemplateSummaryTypeDef",
|
|
216
|
+
"TextAttributesTypeDef",
|
|
210
217
|
"UntagResourceRequestTypeDef",
|
|
211
218
|
"UpdateCaseRequestTypeDef",
|
|
212
219
|
"UpdateCaseRuleRequestTypeDef",
|
|
@@ -263,21 +270,6 @@ FieldErrorTypeDef = TypedDict(
|
|
|
263
270
|
"message": NotRequired[str],
|
|
264
271
|
},
|
|
265
272
|
)
|
|
266
|
-
GetFieldResponseTypeDef = TypedDict(
|
|
267
|
-
"GetFieldResponseTypeDef",
|
|
268
|
-
{
|
|
269
|
-
"fieldId": str,
|
|
270
|
-
"name": str,
|
|
271
|
-
"fieldArn": str,
|
|
272
|
-
"type": FieldTypeType,
|
|
273
|
-
"namespace": FieldNamespaceType,
|
|
274
|
-
"description": NotRequired[str],
|
|
275
|
-
"tags": NotRequired[dict[str, str]],
|
|
276
|
-
"deleted": NotRequired[bool],
|
|
277
|
-
"createdTime": NotRequired[datetime],
|
|
278
|
-
"lastModifiedTime": NotRequired[datetime],
|
|
279
|
-
},
|
|
280
|
-
)
|
|
281
273
|
|
|
282
274
|
class FieldOptionTypeDef(TypedDict):
|
|
283
275
|
name: str
|
|
@@ -343,16 +335,6 @@ class ContactTypeDef(TypedDict):
|
|
|
343
335
|
class CreateDomainRequestTypeDef(TypedDict):
|
|
344
336
|
name: str
|
|
345
337
|
|
|
346
|
-
CreateFieldRequestTypeDef = TypedDict(
|
|
347
|
-
"CreateFieldRequestTypeDef",
|
|
348
|
-
{
|
|
349
|
-
"domainId": str,
|
|
350
|
-
"name": str,
|
|
351
|
-
"type": FieldTypeType,
|
|
352
|
-
"description": NotRequired[str],
|
|
353
|
-
},
|
|
354
|
-
)
|
|
355
|
-
|
|
356
338
|
class LayoutConfigurationTypeDef(TypedDict):
|
|
357
339
|
defaultLayout: NotRequired[str]
|
|
358
340
|
|
|
@@ -399,6 +381,9 @@ class DomainSummaryTypeDef(TypedDict):
|
|
|
399
381
|
class RelatedItemEventIncludedDataTypeDef(TypedDict):
|
|
400
382
|
includeContent: bool
|
|
401
383
|
|
|
384
|
+
class TextAttributesTypeDef(TypedDict):
|
|
385
|
+
isMultiline: bool
|
|
386
|
+
|
|
402
387
|
FieldItemTypeDef = TypedDict(
|
|
403
388
|
"FieldItemTypeDef",
|
|
404
389
|
{
|
|
@@ -414,17 +399,6 @@ class ParentChildFieldOptionsMappingTypeDef(TypedDict):
|
|
|
414
399
|
parentFieldOptionValue: str
|
|
415
400
|
childFieldOptionValues: Sequence[str]
|
|
416
401
|
|
|
417
|
-
FieldSummaryTypeDef = TypedDict(
|
|
418
|
-
"FieldSummaryTypeDef",
|
|
419
|
-
{
|
|
420
|
-
"fieldId": str,
|
|
421
|
-
"fieldArn": str,
|
|
422
|
-
"name": str,
|
|
423
|
-
"type": FieldTypeType,
|
|
424
|
-
"namespace": FieldNamespaceType,
|
|
425
|
-
},
|
|
426
|
-
)
|
|
427
|
-
|
|
428
402
|
class FieldValueUnionOutputTypeDef(TypedDict):
|
|
429
403
|
stringValue: NotRequired[str]
|
|
430
404
|
doubleValue: NotRequired[float]
|
|
@@ -465,6 +439,10 @@ class GetTemplateRequestTypeDef(TypedDict):
|
|
|
465
439
|
domainId: str
|
|
466
440
|
templateId: str
|
|
467
441
|
|
|
442
|
+
class TagPropagationConfigurationOutputTypeDef(TypedDict):
|
|
443
|
+
resourceType: Literal["Cases"]
|
|
444
|
+
tagMap: dict[str, str]
|
|
445
|
+
|
|
468
446
|
class LayoutSummaryTypeDef(TypedDict):
|
|
469
447
|
layoutId: str
|
|
470
448
|
layoutArn: str
|
|
@@ -516,12 +494,6 @@ class ListTemplatesRequestTypeDef(TypedDict):
|
|
|
516
494
|
nextToken: NotRequired[str]
|
|
517
495
|
status: NotRequired[Sequence[TemplateStatusType]]
|
|
518
496
|
|
|
519
|
-
class TemplateSummaryTypeDef(TypedDict):
|
|
520
|
-
templateId: str
|
|
521
|
-
templateArn: str
|
|
522
|
-
name: str
|
|
523
|
-
status: TemplateStatusType
|
|
524
|
-
|
|
525
497
|
class SlaFilterTypeDef(TypedDict):
|
|
526
498
|
name: NotRequired[str]
|
|
527
499
|
status: NotRequired[SlaStatusType]
|
|
@@ -534,6 +506,14 @@ class SortTypeDef(TypedDict):
|
|
|
534
506
|
fieldId: str
|
|
535
507
|
sortOrder: OrderType
|
|
536
508
|
|
|
509
|
+
class TagValueTypeDef(TypedDict):
|
|
510
|
+
key: NotRequired[str]
|
|
511
|
+
value: NotRequired[str]
|
|
512
|
+
|
|
513
|
+
class TagPropagationConfigurationTypeDef(TypedDict):
|
|
514
|
+
resourceType: Literal["Cases"]
|
|
515
|
+
tagMap: Mapping[str, str]
|
|
516
|
+
|
|
537
517
|
class TagResourceRequestTypeDef(TypedDict):
|
|
538
518
|
arn: str
|
|
539
519
|
tags: Mapping[str, str]
|
|
@@ -542,12 +522,6 @@ class UntagResourceRequestTypeDef(TypedDict):
|
|
|
542
522
|
arn: str
|
|
543
523
|
tagKeys: Sequence[str]
|
|
544
524
|
|
|
545
|
-
class UpdateFieldRequestTypeDef(TypedDict):
|
|
546
|
-
domainId: str
|
|
547
|
-
fieldId: str
|
|
548
|
-
name: NotRequired[str]
|
|
549
|
-
description: NotRequired[str]
|
|
550
|
-
|
|
551
525
|
class AuditEventFieldTypeDef(TypedDict):
|
|
552
526
|
eventFieldId: str
|
|
553
527
|
newValue: AuditEventFieldValueUnionTypeDef
|
|
@@ -629,11 +603,6 @@ class GetCaseRequestTypeDef(TypedDict):
|
|
|
629
603
|
fields: Sequence[FieldIdentifierTypeDef]
|
|
630
604
|
nextToken: NotRequired[str]
|
|
631
605
|
|
|
632
|
-
class BatchGetFieldResponseTypeDef(TypedDict):
|
|
633
|
-
fields: list[GetFieldResponseTypeDef]
|
|
634
|
-
errors: list[FieldErrorTypeDef]
|
|
635
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
636
|
-
|
|
637
606
|
class BatchPutFieldOptionsRequestTypeDef(TypedDict):
|
|
638
607
|
domainId: str
|
|
639
608
|
fieldId: str
|
|
@@ -668,45 +637,14 @@ class ListCasesForContactResponseTypeDef(TypedDict):
|
|
|
668
637
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
669
638
|
nextToken: NotRequired[str]
|
|
670
639
|
|
|
671
|
-
class CreateTemplateRequestTypeDef(TypedDict):
|
|
672
|
-
domainId: str
|
|
673
|
-
name: str
|
|
674
|
-
description: NotRequired[str]
|
|
675
|
-
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
676
|
-
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
677
|
-
status: NotRequired[TemplateStatusType]
|
|
678
|
-
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
679
|
-
|
|
680
|
-
class GetTemplateResponseTypeDef(TypedDict):
|
|
681
|
-
templateId: str
|
|
682
|
-
templateArn: str
|
|
683
|
-
name: str
|
|
684
|
-
description: str
|
|
685
|
-
layoutConfiguration: LayoutConfigurationTypeDef
|
|
686
|
-
requiredFields: list[RequiredFieldTypeDef]
|
|
687
|
-
tags: dict[str, str]
|
|
688
|
-
status: TemplateStatusType
|
|
689
|
-
deleted: bool
|
|
690
|
-
createdTime: datetime
|
|
691
|
-
lastModifiedTime: datetime
|
|
692
|
-
rules: list[TemplateRuleTypeDef]
|
|
693
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
694
|
-
|
|
695
|
-
class UpdateTemplateRequestTypeDef(TypedDict):
|
|
696
|
-
domainId: str
|
|
697
|
-
templateId: str
|
|
698
|
-
name: NotRequired[str]
|
|
699
|
-
description: NotRequired[str]
|
|
700
|
-
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
701
|
-
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
702
|
-
status: NotRequired[TemplateStatusType]
|
|
703
|
-
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
704
|
-
|
|
705
640
|
class ListDomainsResponseTypeDef(TypedDict):
|
|
706
641
|
domains: list[DomainSummaryTypeDef]
|
|
707
642
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
708
643
|
nextToken: NotRequired[str]
|
|
709
644
|
|
|
645
|
+
class FieldAttributesTypeDef(TypedDict):
|
|
646
|
+
text: NotRequired[TextAttributesTypeDef]
|
|
647
|
+
|
|
710
648
|
class FieldGroupOutputTypeDef(TypedDict):
|
|
711
649
|
fields: list[FieldItemTypeDef]
|
|
712
650
|
name: NotRequired[str]
|
|
@@ -725,11 +663,6 @@ class FieldOptionsCaseRuleTypeDef(TypedDict):
|
|
|
725
663
|
parentFieldId: NotRequired[str]
|
|
726
664
|
childFieldId: NotRequired[str]
|
|
727
665
|
|
|
728
|
-
class ListFieldsResponseTypeDef(TypedDict):
|
|
729
|
-
fields: list[FieldSummaryTypeDef]
|
|
730
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
731
|
-
nextToken: NotRequired[str]
|
|
732
|
-
|
|
733
666
|
FieldValueOutputTypeDef = TypedDict(
|
|
734
667
|
"FieldValueOutputTypeDef",
|
|
735
668
|
{
|
|
@@ -751,6 +684,29 @@ SlaConfigurationTypeDef = TypedDict(
|
|
|
751
684
|
)
|
|
752
685
|
FieldValueUnionUnionTypeDef = Union[FieldValueUnionTypeDef, FieldValueUnionOutputTypeDef]
|
|
753
686
|
|
|
687
|
+
class GetTemplateResponseTypeDef(TypedDict):
|
|
688
|
+
templateId: str
|
|
689
|
+
templateArn: str
|
|
690
|
+
name: str
|
|
691
|
+
description: str
|
|
692
|
+
layoutConfiguration: LayoutConfigurationTypeDef
|
|
693
|
+
requiredFields: list[RequiredFieldTypeDef]
|
|
694
|
+
tags: dict[str, str]
|
|
695
|
+
status: TemplateStatusType
|
|
696
|
+
deleted: bool
|
|
697
|
+
createdTime: datetime
|
|
698
|
+
lastModifiedTime: datetime
|
|
699
|
+
rules: list[TemplateRuleTypeDef]
|
|
700
|
+
tagPropagationConfigurations: list[TagPropagationConfigurationOutputTypeDef]
|
|
701
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
702
|
+
|
|
703
|
+
class TemplateSummaryTypeDef(TypedDict):
|
|
704
|
+
templateId: str
|
|
705
|
+
templateArn: str
|
|
706
|
+
name: str
|
|
707
|
+
status: TemplateStatusType
|
|
708
|
+
tagPropagationConfigurations: NotRequired[list[TagPropagationConfigurationOutputTypeDef]]
|
|
709
|
+
|
|
754
710
|
class ListLayoutsResponseTypeDef(TypedDict):
|
|
755
711
|
layouts: list[LayoutSummaryTypeDef]
|
|
756
712
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -760,11 +716,12 @@ class ListCaseRulesRequestPaginateTypeDef(TypedDict):
|
|
|
760
716
|
domainId: str
|
|
761
717
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
762
718
|
|
|
763
|
-
class
|
|
764
|
-
|
|
765
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
766
|
-
nextToken: NotRequired[str]
|
|
719
|
+
class TagFilterTypeDef(TypedDict):
|
|
720
|
+
equalTo: NotRequired[TagValueTypeDef]
|
|
767
721
|
|
|
722
|
+
TagPropagationConfigurationUnionTypeDef = Union[
|
|
723
|
+
TagPropagationConfigurationTypeDef, TagPropagationConfigurationOutputTypeDef
|
|
724
|
+
]
|
|
768
725
|
AuditEventTypeDef = TypedDict(
|
|
769
726
|
"AuditEventTypeDef",
|
|
770
727
|
{
|
|
@@ -793,6 +750,51 @@ class BooleanConditionTypeDef(TypedDict):
|
|
|
793
750
|
equalTo: NotRequired[BooleanOperandsTypeDef]
|
|
794
751
|
notEqualTo: NotRequired[BooleanOperandsTypeDef]
|
|
795
752
|
|
|
753
|
+
CreateFieldRequestTypeDef = TypedDict(
|
|
754
|
+
"CreateFieldRequestTypeDef",
|
|
755
|
+
{
|
|
756
|
+
"domainId": str,
|
|
757
|
+
"name": str,
|
|
758
|
+
"type": FieldTypeType,
|
|
759
|
+
"description": NotRequired[str],
|
|
760
|
+
"attributes": NotRequired[FieldAttributesTypeDef],
|
|
761
|
+
},
|
|
762
|
+
)
|
|
763
|
+
FieldSummaryTypeDef = TypedDict(
|
|
764
|
+
"FieldSummaryTypeDef",
|
|
765
|
+
{
|
|
766
|
+
"fieldId": str,
|
|
767
|
+
"fieldArn": str,
|
|
768
|
+
"name": str,
|
|
769
|
+
"type": FieldTypeType,
|
|
770
|
+
"namespace": FieldNamespaceType,
|
|
771
|
+
"attributes": NotRequired[FieldAttributesTypeDef],
|
|
772
|
+
},
|
|
773
|
+
)
|
|
774
|
+
GetFieldResponseTypeDef = TypedDict(
|
|
775
|
+
"GetFieldResponseTypeDef",
|
|
776
|
+
{
|
|
777
|
+
"fieldId": str,
|
|
778
|
+
"name": str,
|
|
779
|
+
"fieldArn": str,
|
|
780
|
+
"type": FieldTypeType,
|
|
781
|
+
"namespace": FieldNamespaceType,
|
|
782
|
+
"description": NotRequired[str],
|
|
783
|
+
"tags": NotRequired[dict[str, str]],
|
|
784
|
+
"deleted": NotRequired[bool],
|
|
785
|
+
"createdTime": NotRequired[datetime],
|
|
786
|
+
"lastModifiedTime": NotRequired[datetime],
|
|
787
|
+
"attributes": NotRequired[FieldAttributesTypeDef],
|
|
788
|
+
},
|
|
789
|
+
)
|
|
790
|
+
|
|
791
|
+
class UpdateFieldRequestTypeDef(TypedDict):
|
|
792
|
+
domainId: str
|
|
793
|
+
fieldId: str
|
|
794
|
+
name: NotRequired[str]
|
|
795
|
+
description: NotRequired[str]
|
|
796
|
+
attributes: NotRequired[FieldAttributesTypeDef]
|
|
797
|
+
|
|
796
798
|
class SectionOutputTypeDef(TypedDict):
|
|
797
799
|
fieldGroup: NotRequired[FieldGroupOutputTypeDef]
|
|
798
800
|
|
|
@@ -836,6 +838,32 @@ SlaInputConfigurationTypeDef = TypedDict(
|
|
|
836
838
|
},
|
|
837
839
|
)
|
|
838
840
|
|
|
841
|
+
class ListTemplatesResponseTypeDef(TypedDict):
|
|
842
|
+
templates: list[TemplateSummaryTypeDef]
|
|
843
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
844
|
+
nextToken: NotRequired[str]
|
|
845
|
+
|
|
846
|
+
class CreateTemplateRequestTypeDef(TypedDict):
|
|
847
|
+
domainId: str
|
|
848
|
+
name: str
|
|
849
|
+
description: NotRequired[str]
|
|
850
|
+
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
851
|
+
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
852
|
+
status: NotRequired[TemplateStatusType]
|
|
853
|
+
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
854
|
+
tagPropagationConfigurations: NotRequired[Sequence[TagPropagationConfigurationUnionTypeDef]]
|
|
855
|
+
|
|
856
|
+
class UpdateTemplateRequestTypeDef(TypedDict):
|
|
857
|
+
domainId: str
|
|
858
|
+
templateId: str
|
|
859
|
+
name: NotRequired[str]
|
|
860
|
+
description: NotRequired[str]
|
|
861
|
+
layoutConfiguration: NotRequired[LayoutConfigurationTypeDef]
|
|
862
|
+
requiredFields: NotRequired[Sequence[RequiredFieldTypeDef]]
|
|
863
|
+
status: NotRequired[TemplateStatusType]
|
|
864
|
+
rules: NotRequired[Sequence[TemplateRuleTypeDef]]
|
|
865
|
+
tagPropagationConfigurations: NotRequired[Sequence[TagPropagationConfigurationUnionTypeDef]]
|
|
866
|
+
|
|
839
867
|
class GetCaseAuditEventsResponseTypeDef(TypedDict):
|
|
840
868
|
auditEvents: list[AuditEventTypeDef]
|
|
841
869
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -865,6 +893,16 @@ class RequiredCaseRuleTypeDef(TypedDict):
|
|
|
865
893
|
defaultValue: bool
|
|
866
894
|
conditions: Sequence[BooleanConditionTypeDef]
|
|
867
895
|
|
|
896
|
+
class ListFieldsResponseTypeDef(TypedDict):
|
|
897
|
+
fields: list[FieldSummaryTypeDef]
|
|
898
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
899
|
+
nextToken: NotRequired[str]
|
|
900
|
+
|
|
901
|
+
class BatchGetFieldResponseTypeDef(TypedDict):
|
|
902
|
+
fields: list[GetFieldResponseTypeDef]
|
|
903
|
+
errors: list[FieldErrorTypeDef]
|
|
904
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
905
|
+
|
|
868
906
|
class LayoutSectionsOutputTypeDef(TypedDict):
|
|
869
907
|
sections: NotRequired[list[SectionOutputTypeDef]]
|
|
870
908
|
|
|
@@ -873,6 +911,7 @@ class LayoutSectionsTypeDef(TypedDict):
|
|
|
873
911
|
|
|
874
912
|
class SearchCasesResponseTypeDef(TypedDict):
|
|
875
913
|
cases: list[SearchCasesResponseItemTypeDef]
|
|
914
|
+
totalCount: int
|
|
876
915
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
877
916
|
nextToken: NotRequired[str]
|
|
878
917
|
|
|
@@ -945,6 +984,7 @@ class CreateCaseRequestTypeDef(TypedDict):
|
|
|
945
984
|
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
946
985
|
clientToken: NotRequired[str]
|
|
947
986
|
performedBy: NotRequired[UserUnionTypeDef]
|
|
987
|
+
tags: NotRequired[Mapping[str, str]]
|
|
948
988
|
|
|
949
989
|
class CustomInputContentTypeDef(TypedDict):
|
|
950
990
|
fields: Sequence[FieldValueUnionExtraTypeDef]
|
|
@@ -1009,6 +1049,7 @@ CaseFilterPaginatorTypeDef = TypedDict(
|
|
|
1009
1049
|
{
|
|
1010
1050
|
"field": NotRequired[FieldFilterTypeDef],
|
|
1011
1051
|
"not": NotRequired[Mapping[str, Any]],
|
|
1052
|
+
"tag": NotRequired[TagFilterTypeDef],
|
|
1012
1053
|
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
1013
1054
|
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
1014
1055
|
},
|
|
@@ -1018,6 +1059,7 @@ CaseFilterTypeDef = TypedDict(
|
|
|
1018
1059
|
{
|
|
1019
1060
|
"field": NotRequired[FieldFilterTypeDef],
|
|
1020
1061
|
"not": NotRequired[Mapping[str, Any]],
|
|
1062
|
+
"tag": NotRequired[TagFilterTypeDef],
|
|
1021
1063
|
"andAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
1022
1064
|
"orAll": NotRequired[Sequence[Mapping[str, Any]]],
|
|
1023
1065
|
},
|
{types_boto3_connectcases-1.42.3.dist-info → types_boto3_connectcases-1.42.42.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-connectcases
|
|
3
|
-
Version: 1.42.
|
|
4
|
-
Summary: Type annotations for boto3 ConnectCases 1.42.
|
|
3
|
+
Version: 1.42.42
|
|
4
|
+
Summary: Type annotations for boto3 ConnectCases 1.42.42 service generated with mypy-boto3-builder 8.12.0
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
@@ -43,7 +43,7 @@ Dynamic: license-file
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3 ConnectCases 1.42.
|
|
46
|
+
[boto3 ConnectCases 1.42.42](https://pypi.org/project/boto3/) compatible with
|
|
47
47
|
[VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -105,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
105
105
|
isolation.
|
|
106
106
|
|
|
107
107
|
1. Run mypy-boto3-builder in your package root directory:
|
|
108
|
-
`uvx --with 'boto3==1.42.
|
|
108
|
+
`uvx --with 'boto3==1.42.42' mypy-boto3-builder`
|
|
109
109
|
2. Select `boto3` AWS SDK.
|
|
110
110
|
3. Add `ConnectCases` service.
|
|
111
111
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
types_boto3_connectcases/__init__.py,sha256=vUmDNHWb2_ALR65DOe7Fa-NmrOySi9KB1h2Fnjg7GWw,1382
|
|
2
|
+
types_boto3_connectcases/__init__.pyi,sha256=qqcvWUyW9H9QhbYb7pomzU1_COBnFcOAfe_2VQUB-Ps,1381
|
|
3
|
+
types_boto3_connectcases/__main__.py,sha256=F3qkdJsYgTpwA79PRgamL1VSZ_2VPI2ejZ9J9UnGbFU,1005
|
|
4
|
+
types_boto3_connectcases/client.py,sha256=tp0AXdLdpB1jGknogFiXf6ekFmE8FcvuWp9RcSVr37I,28537
|
|
5
|
+
types_boto3_connectcases/client.pyi,sha256=rN090xfPfW3dKPzaSDpTGqVVWUqExAxoPHOagc94f3c,28534
|
|
6
|
+
types_boto3_connectcases/literals.py,sha256=K9Y0Q0g8bluKl2S4U4hRu8-u1kO_rBNbxP1ZWyd2vaM,10953
|
|
7
|
+
types_boto3_connectcases/literals.pyi,sha256=qMFWXhHmCDOMkFY_CIulOFEUVOJ-qbsDwtptnnSgH9s,10951
|
|
8
|
+
types_boto3_connectcases/paginator.py,sha256=RLE7gbFjqbBQlQT1s7gC9uUbUz0rsnsi7v_AfRZoclw,6367
|
|
9
|
+
types_boto3_connectcases/paginator.pyi,sha256=JO5oDYDbzfmMyRD0NdN0JaQubS6dwbUdcYwGd9hmTQ4,6354
|
|
10
|
+
types_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_connectcases/type_defs.py,sha256=WG_giqj5xwoH-kIjxkHrX9ilKEMjuujslF1stWEL9Ck,36634
|
|
12
|
+
types_boto3_connectcases/type_defs.pyi,sha256=M4QmegPw-WdLbAJSuv_f6NzYlzm8TElFie9YhXspJhw,36467
|
|
13
|
+
types_boto3_connectcases/version.py,sha256=e6HoYfetC3qcC0gAdQCVrDkrRgu8bjbOwNSmZtKJDJE,93
|
|
14
|
+
types_boto3_connectcases-1.42.42.dist-info/licenses/LICENSE,sha256=MdPBcMOA_mXHmAaBn41qTH8zP7qsdQfRAIxNJaCq-wE,1070
|
|
15
|
+
types_boto3_connectcases-1.42.42.dist-info/METADATA,sha256=EMeUj5vFNER9Wt1ORUr76e3Yub8shXZeONJsLlZxS9M,15324
|
|
16
|
+
types_boto3_connectcases-1.42.42.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
17
|
+
types_boto3_connectcases-1.42.42.dist-info/top_level.txt,sha256=0H6UGzWA8k7lNFFkG_vDlg1gCNSXEHI49EQW8-HFCT4,25
|
|
18
|
+
types_boto3_connectcases-1.42.42.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
types_boto3_connectcases/__init__.py,sha256=bgJCgG0Je2qZ-ic3KMFF7UrcqNhhY93lddEqzA_JMRM,1382
|
|
2
|
-
types_boto3_connectcases/__init__.pyi,sha256=MPvW-UNuFAHTmftlAmT_A8Lk4Ewtbi_7DgN-hrTzZkQ,1381
|
|
3
|
-
types_boto3_connectcases/__main__.py,sha256=oW56WC0t7BkaVVR8VLxa7Wm7ZStAuUEEU8fCGunszO8,1002
|
|
4
|
-
types_boto3_connectcases/client.py,sha256=llLNWNEOrmiR4hxD5RAjD7o3P8gNhkCYdQbLu3GZe44,28537
|
|
5
|
-
types_boto3_connectcases/client.pyi,sha256=ZhIucgBQqPivZxG_OEDt7_f4K-JvcfvQ60Qun3sotNw,28534
|
|
6
|
-
types_boto3_connectcases/literals.py,sha256=t7mXCzuuO9a25sWY8yMN8PXIFDDJ6aObkl96NWYRSoo,10859
|
|
7
|
-
types_boto3_connectcases/literals.pyi,sha256=IY6hdWfYT3d3qK65UQalcqh_jTpVJK_SI5ZAEXQP2E8,10857
|
|
8
|
-
types_boto3_connectcases/paginator.py,sha256=u2pcPwmMB43ghOEOXOghNdtt-oWClMSoXYvevEOv2YI,6367
|
|
9
|
-
types_boto3_connectcases/paginator.pyi,sha256=l3WeV-So0WnjWw0DPYSw21-pAL0G8rGL1Ae7h-PxlAs,6354
|
|
10
|
-
types_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_connectcases/type_defs.py,sha256=vkAH4u5UXQ-bzu-tSp1AekDuLldfW2phWFWQURCHNj8,34946
|
|
12
|
-
types_boto3_connectcases/type_defs.pyi,sha256=X17ReZfQOCE5rVq0SLsz1MG28Nz3fBMXMwPs-4jkc80,34784
|
|
13
|
-
types_boto3_connectcases/version.py,sha256=GG_me-VWxqUerVNqcPw9hL39jbKNBNmLknphxNF_WPw,92
|
|
14
|
-
types_boto3_connectcases-1.42.3.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_connectcases-1.42.3.dist-info/METADATA,sha256=cORK9dj_3J7qY-v4lU0oFu7azyIrSMNWdWDEoL678s4,15320
|
|
16
|
-
types_boto3_connectcases-1.42.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
types_boto3_connectcases-1.42.3.dist-info/top_level.txt,sha256=0H6UGzWA8k7lNFFkG_vDlg1gCNSXEHI49EQW8-HFCT4,25
|
|
18
|
-
types_boto3_connectcases-1.42.3.dist-info/RECORD,,
|
|
File without changes
|