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.
@@ -13,6 +13,7 @@ Usage::
13
13
  Client,
14
14
  ConnectCasesClient,
15
15
  ListCaseRulesPaginator,
16
+ SearchAllRelatedItemsPaginator,
16
17
  SearchCasesPaginator,
17
18
  SearchRelatedItemsPaginator,
18
19
  )
@@ -21,13 +22,19 @@ Usage::
21
22
  client: ConnectCasesClient = session.client("connectcases")
22
23
 
23
24
  list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
25
+ search_all_related_items_paginator: SearchAllRelatedItemsPaginator = client.get_paginator("search_all_related_items")
24
26
  search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
25
27
  search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
26
28
  ```
27
29
  """
28
30
 
29
31
  from .client import ConnectCasesClient
30
- from .paginator import ListCaseRulesPaginator, SearchCasesPaginator, SearchRelatedItemsPaginator
32
+ from .paginator import (
33
+ ListCaseRulesPaginator,
34
+ SearchAllRelatedItemsPaginator,
35
+ SearchCasesPaginator,
36
+ SearchRelatedItemsPaginator,
37
+ )
31
38
 
32
39
  Client = ConnectCasesClient
33
40
 
@@ -36,6 +43,7 @@ __all__ = (
36
43
  "Client",
37
44
  "ConnectCasesClient",
38
45
  "ListCaseRulesPaginator",
46
+ "SearchAllRelatedItemsPaginator",
39
47
  "SearchCasesPaginator",
40
48
  "SearchRelatedItemsPaginator",
41
49
  )
@@ -13,6 +13,7 @@ Usage::
13
13
  Client,
14
14
  ConnectCasesClient,
15
15
  ListCaseRulesPaginator,
16
+ SearchAllRelatedItemsPaginator,
16
17
  SearchCasesPaginator,
17
18
  SearchRelatedItemsPaginator,
18
19
  )
@@ -21,13 +22,19 @@ Usage::
21
22
  client: ConnectCasesClient = session.client("connectcases")
22
23
 
23
24
  list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
25
+ search_all_related_items_paginator: SearchAllRelatedItemsPaginator = client.get_paginator("search_all_related_items")
24
26
  search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
25
27
  search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
26
28
  ```
27
29
  """
28
30
 
29
31
  from .client import ConnectCasesClient
30
- from .paginator import ListCaseRulesPaginator, SearchCasesPaginator, SearchRelatedItemsPaginator
32
+ from .paginator import (
33
+ ListCaseRulesPaginator,
34
+ SearchAllRelatedItemsPaginator,
35
+ SearchCasesPaginator,
36
+ SearchRelatedItemsPaginator,
37
+ )
31
38
 
32
39
  Client = ConnectCasesClient
33
40
 
@@ -35,6 +42,7 @@ __all__ = (
35
42
  "Client",
36
43
  "ConnectCasesClient",
37
44
  "ListCaseRulesPaginator",
45
+ "SearchAllRelatedItemsPaginator",
38
46
  "SearchCasesPaginator",
39
47
  "SearchRelatedItemsPaginator",
40
48
  )
@@ -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.40.0\n"
16
- "Version: 1.40.0\n"
15
+ "Type annotations for boto3 ConnectCases 1.40.44\n"
16
+ "Version: 1.40.44\n"
17
17
  "Builder version: 8.11.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.40.0\n")
29
+ sys.stdout.write("1.40.44\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -25,7 +25,12 @@ from botocore.client import BaseClient, ClientMeta
25
25
  from botocore.errorfactory import BaseClientExceptions
26
26
  from botocore.exceptions import ClientError as BotocoreClientError
27
27
 
28
- from .paginator import ListCaseRulesPaginator, SearchCasesPaginator, SearchRelatedItemsPaginator
28
+ from .paginator import (
29
+ ListCaseRulesPaginator,
30
+ SearchAllRelatedItemsPaginator,
31
+ SearchCasesPaginator,
32
+ SearchRelatedItemsPaginator,
33
+ )
29
34
  from .type_defs import (
30
35
  BatchGetCaseRuleRequestTypeDef,
31
36
  BatchGetCaseRuleResponseTypeDef,
@@ -84,6 +89,8 @@ from .type_defs import (
84
89
  ListTemplatesRequestTypeDef,
85
90
  ListTemplatesResponseTypeDef,
86
91
  PutCaseEventConfigurationRequestTypeDef,
92
+ SearchAllRelatedItemsRequestTypeDef,
93
+ SearchAllRelatedItemsResponseTypeDef,
87
94
  SearchCasesRequestTypeDef,
88
95
  SearchCasesResponseTypeDef,
89
96
  SearchRelatedItemsRequestTypeDef,
@@ -463,6 +470,16 @@ class ConnectCasesClient(BaseClient):
463
470
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#put_case_event_configuration)
464
471
  """
465
472
 
473
+ def search_all_related_items(
474
+ self, **kwargs: Unpack[SearchAllRelatedItemsRequestTypeDef]
475
+ ) -> SearchAllRelatedItemsResponseTypeDef:
476
+ """
477
+ Searches for related items across all cases within a domain.
478
+
479
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/search_all_related_items.html)
480
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#search_all_related_items)
481
+ """
482
+
466
483
  def search_cases(
467
484
  self, **kwargs: Unpack[SearchCasesRequestTypeDef]
468
485
  ) -> SearchCasesResponseTypeDef:
@@ -557,6 +574,17 @@ class ConnectCasesClient(BaseClient):
557
574
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#get_paginator)
558
575
  """
559
576
 
577
+ @overload # type: ignore[override]
578
+ def get_paginator( # type: ignore[override]
579
+ self, operation_name: Literal["search_all_related_items"]
580
+ ) -> SearchAllRelatedItemsPaginator:
581
+ """
582
+ Create a paginator for an operation.
583
+
584
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/get_paginator.html)
585
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#get_paginator)
586
+ """
587
+
560
588
  @overload # type: ignore[override]
561
589
  def get_paginator( # type: ignore[override]
562
590
  self, operation_name: Literal["search_cases"]
@@ -25,7 +25,12 @@ from botocore.client import BaseClient, ClientMeta
25
25
  from botocore.errorfactory import BaseClientExceptions
26
26
  from botocore.exceptions import ClientError as BotocoreClientError
27
27
 
28
- from .paginator import ListCaseRulesPaginator, SearchCasesPaginator, SearchRelatedItemsPaginator
28
+ from .paginator import (
29
+ ListCaseRulesPaginator,
30
+ SearchAllRelatedItemsPaginator,
31
+ SearchCasesPaginator,
32
+ SearchRelatedItemsPaginator,
33
+ )
29
34
  from .type_defs import (
30
35
  BatchGetCaseRuleRequestTypeDef,
31
36
  BatchGetCaseRuleResponseTypeDef,
@@ -84,6 +89,8 @@ from .type_defs import (
84
89
  ListTemplatesRequestTypeDef,
85
90
  ListTemplatesResponseTypeDef,
86
91
  PutCaseEventConfigurationRequestTypeDef,
92
+ SearchAllRelatedItemsRequestTypeDef,
93
+ SearchAllRelatedItemsResponseTypeDef,
87
94
  SearchCasesRequestTypeDef,
88
95
  SearchCasesResponseTypeDef,
89
96
  SearchRelatedItemsRequestTypeDef,
@@ -460,6 +467,16 @@ class ConnectCasesClient(BaseClient):
460
467
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#put_case_event_configuration)
461
468
  """
462
469
 
470
+ def search_all_related_items(
471
+ self, **kwargs: Unpack[SearchAllRelatedItemsRequestTypeDef]
472
+ ) -> SearchAllRelatedItemsResponseTypeDef:
473
+ """
474
+ Searches for related items across all cases within a domain.
475
+
476
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/search_all_related_items.html)
477
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#search_all_related_items)
478
+ """
479
+
463
480
  def search_cases(
464
481
  self, **kwargs: Unpack[SearchCasesRequestTypeDef]
465
482
  ) -> SearchCasesResponseTypeDef:
@@ -554,6 +571,17 @@ class ConnectCasesClient(BaseClient):
554
571
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#get_paginator)
555
572
  """
556
573
 
574
+ @overload # type: ignore[override]
575
+ def get_paginator( # type: ignore[override]
576
+ self, operation_name: Literal["search_all_related_items"]
577
+ ) -> SearchAllRelatedItemsPaginator:
578
+ """
579
+ Create a paginator for an operation.
580
+
581
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/get_paginator.html)
582
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#get_paginator)
583
+ """
584
+
557
585
  @overload # type: ignore[override]
558
586
  def get_paginator( # type: ignore[override]
559
587
  self, operation_name: Literal["search_cases"]
@@ -36,6 +36,8 @@ __all__ = (
36
36
  "RelatedItemTypeType",
37
37
  "ResourceServiceName",
38
38
  "RuleTypeType",
39
+ "SearchAllRelatedItemsPaginatorName",
40
+ "SearchAllRelatedItemsSortPropertyType",
39
41
  "SearchCasesPaginatorName",
40
42
  "SearchRelatedItemsPaginatorName",
41
43
  "ServiceName",
@@ -52,8 +54,10 @@ FieldNamespaceType = Literal["Custom", "System"]
52
54
  FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text", "Url", "User"]
53
55
  ListCaseRulesPaginatorName = Literal["list_case_rules"]
54
56
  OrderType = Literal["Asc", "Desc"]
55
- RelatedItemTypeType = Literal["Comment", "Contact", "File", "Sla"]
57
+ RelatedItemTypeType = Literal["Comment", "ConnectCase", "Contact", "Custom", "File", "Sla"]
56
58
  RuleTypeType = Literal["Required"]
59
+ SearchAllRelatedItemsPaginatorName = Literal["search_all_related_items"]
60
+ SearchAllRelatedItemsSortPropertyType = Literal["AssociationTime", "CaseId"]
57
61
  SearchCasesPaginatorName = Literal["search_cases"]
58
62
  SearchRelatedItemsPaginatorName = Literal["search_related_items"]
59
63
  SlaStatusType = Literal["Active", "Met", "NotMet", "Overdue"]
@@ -87,6 +91,7 @@ ServiceName = Literal[
87
91
  "appstream",
88
92
  "appsync",
89
93
  "apptest",
94
+ "arc-region-switch",
90
95
  "arc-zonal-shift",
91
96
  "artifact",
92
97
  "athena",
@@ -98,8 +103,10 @@ ServiceName = Literal[
98
103
  "backup-gateway",
99
104
  "backupsearch",
100
105
  "batch",
106
+ "bcm-dashboards",
101
107
  "bcm-data-exports",
102
108
  "bcm-pricing-calculator",
109
+ "bcm-recommended-actions",
103
110
  "bedrock",
104
111
  "bedrock-agent",
105
112
  "bedrock-agent-runtime",
@@ -341,8 +348,6 @@ ServiceName = Literal[
341
348
  "omics",
342
349
  "opensearch",
343
350
  "opensearchserverless",
344
- "opsworks",
345
- "opsworkscm",
346
351
  "organizations",
347
352
  "osis",
348
353
  "outposts",
@@ -424,7 +429,6 @@ ServiceName = Literal[
424
429
  "shield",
425
430
  "signer",
426
431
  "simspaceweaver",
427
- "sms",
428
432
  "snow-device-management",
429
433
  "snowball",
430
434
  "sns",
@@ -475,18 +479,11 @@ ServiceName = Literal[
475
479
  "xray",
476
480
  ]
477
481
  ResourceServiceName = Literal[
478
- "cloudformation",
479
- "cloudwatch",
480
- "dynamodb",
481
- "ec2",
482
- "glacier",
483
- "iam",
484
- "opsworks",
485
- "s3",
486
- "sns",
487
- "sqs",
482
+ "cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
483
+ ]
484
+ PaginatorName = Literal[
485
+ "list_case_rules", "search_all_related_items", "search_cases", "search_related_items"
488
486
  ]
489
- PaginatorName = Literal["list_case_rules", "search_cases", "search_related_items"]
490
487
  RegionName = Literal[
491
488
  "ap-northeast-1",
492
489
  "ap-northeast-2",
@@ -35,6 +35,8 @@ __all__ = (
35
35
  "RelatedItemTypeType",
36
36
  "ResourceServiceName",
37
37
  "RuleTypeType",
38
+ "SearchAllRelatedItemsPaginatorName",
39
+ "SearchAllRelatedItemsSortPropertyType",
38
40
  "SearchCasesPaginatorName",
39
41
  "SearchRelatedItemsPaginatorName",
40
42
  "ServiceName",
@@ -50,8 +52,10 @@ FieldNamespaceType = Literal["Custom", "System"]
50
52
  FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text", "Url", "User"]
51
53
  ListCaseRulesPaginatorName = Literal["list_case_rules"]
52
54
  OrderType = Literal["Asc", "Desc"]
53
- RelatedItemTypeType = Literal["Comment", "Contact", "File", "Sla"]
55
+ RelatedItemTypeType = Literal["Comment", "ConnectCase", "Contact", "Custom", "File", "Sla"]
54
56
  RuleTypeType = Literal["Required"]
57
+ SearchAllRelatedItemsPaginatorName = Literal["search_all_related_items"]
58
+ SearchAllRelatedItemsSortPropertyType = Literal["AssociationTime", "CaseId"]
55
59
  SearchCasesPaginatorName = Literal["search_cases"]
56
60
  SearchRelatedItemsPaginatorName = Literal["search_related_items"]
57
61
  SlaStatusType = Literal["Active", "Met", "NotMet", "Overdue"]
@@ -85,6 +89,7 @@ ServiceName = Literal[
85
89
  "appstream",
86
90
  "appsync",
87
91
  "apptest",
92
+ "arc-region-switch",
88
93
  "arc-zonal-shift",
89
94
  "artifact",
90
95
  "athena",
@@ -96,8 +101,10 @@ ServiceName = Literal[
96
101
  "backup-gateway",
97
102
  "backupsearch",
98
103
  "batch",
104
+ "bcm-dashboards",
99
105
  "bcm-data-exports",
100
106
  "bcm-pricing-calculator",
107
+ "bcm-recommended-actions",
101
108
  "bedrock",
102
109
  "bedrock-agent",
103
110
  "bedrock-agent-runtime",
@@ -339,8 +346,6 @@ ServiceName = Literal[
339
346
  "omics",
340
347
  "opensearch",
341
348
  "opensearchserverless",
342
- "opsworks",
343
- "opsworkscm",
344
349
  "organizations",
345
350
  "osis",
346
351
  "outposts",
@@ -422,7 +427,6 @@ ServiceName = Literal[
422
427
  "shield",
423
428
  "signer",
424
429
  "simspaceweaver",
425
- "sms",
426
430
  "snow-device-management",
427
431
  "snowball",
428
432
  "sns",
@@ -473,18 +477,11 @@ ServiceName = Literal[
473
477
  "xray",
474
478
  ]
475
479
  ResourceServiceName = Literal[
476
- "cloudformation",
477
- "cloudwatch",
478
- "dynamodb",
479
- "ec2",
480
- "glacier",
481
- "iam",
482
- "opsworks",
483
- "s3",
484
- "sns",
485
- "sqs",
480
+ "cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
481
+ ]
482
+ PaginatorName = Literal[
483
+ "list_case_rules", "search_all_related_items", "search_cases", "search_related_items"
486
484
  ]
487
- PaginatorName = Literal["list_case_rules", "search_cases", "search_related_items"]
488
485
  RegionName = Literal[
489
486
  "ap-northeast-1",
490
487
  "ap-northeast-2",
@@ -13,6 +13,7 @@ Usage::
13
13
  from types_boto3_connectcases.client import ConnectCasesClient
14
14
  from types_boto3_connectcases.paginator import (
15
15
  ListCaseRulesPaginator,
16
+ SearchAllRelatedItemsPaginator,
16
17
  SearchCasesPaginator,
17
18
  SearchRelatedItemsPaginator,
18
19
  )
@@ -21,6 +22,7 @@ Usage::
21
22
  client: ConnectCasesClient = session.client("connectcases")
22
23
 
23
24
  list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
25
+ search_all_related_items_paginator: SearchAllRelatedItemsPaginator = client.get_paginator("search_all_related_items")
24
26
  search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
25
27
  search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
26
28
  ```
@@ -36,6 +38,8 @@ from botocore.paginate import PageIterator, Paginator
36
38
  from .type_defs import (
37
39
  ListCaseRulesRequestPaginateTypeDef,
38
40
  ListCaseRulesResponseTypeDef,
41
+ SearchAllRelatedItemsRequestPaginateTypeDef,
42
+ SearchAllRelatedItemsResponseTypeDef,
39
43
  SearchCasesRequestPaginateTypeDef,
40
44
  SearchCasesResponseTypeDef,
41
45
  SearchRelatedItemsRequestPaginateTypeDef,
@@ -48,7 +52,12 @@ else:
48
52
  from typing_extensions import Unpack
49
53
 
50
54
 
51
- __all__ = ("ListCaseRulesPaginator", "SearchCasesPaginator", "SearchRelatedItemsPaginator")
55
+ __all__ = (
56
+ "ListCaseRulesPaginator",
57
+ "SearchAllRelatedItemsPaginator",
58
+ "SearchCasesPaginator",
59
+ "SearchRelatedItemsPaginator",
60
+ )
52
61
 
53
62
 
54
63
  if TYPE_CHECKING:
@@ -72,6 +81,27 @@ class ListCaseRulesPaginator(_ListCaseRulesPaginatorBase):
72
81
  """
73
82
 
74
83
 
84
+ if TYPE_CHECKING:
85
+ _SearchAllRelatedItemsPaginatorBase = Paginator[SearchAllRelatedItemsResponseTypeDef]
86
+ else:
87
+ _SearchAllRelatedItemsPaginatorBase = Paginator # type: ignore[assignment]
88
+
89
+
90
+ class SearchAllRelatedItemsPaginator(_SearchAllRelatedItemsPaginatorBase):
91
+ """
92
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchAllRelatedItems.html#ConnectCases.Paginator.SearchAllRelatedItems)
93
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchallrelateditemspaginator)
94
+ """
95
+
96
+ def paginate( # type: ignore[override]
97
+ self, **kwargs: Unpack[SearchAllRelatedItemsRequestPaginateTypeDef]
98
+ ) -> PageIterator[SearchAllRelatedItemsResponseTypeDef]:
99
+ """
100
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchAllRelatedItems.html#ConnectCases.Paginator.SearchAllRelatedItems.paginate)
101
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchallrelateditemspaginator)
102
+ """
103
+
104
+
75
105
  if TYPE_CHECKING:
76
106
  _SearchCasesPaginatorBase = Paginator[SearchCasesResponseTypeDef]
77
107
  else:
@@ -13,6 +13,7 @@ Usage::
13
13
  from types_boto3_connectcases.client import ConnectCasesClient
14
14
  from types_boto3_connectcases.paginator import (
15
15
  ListCaseRulesPaginator,
16
+ SearchAllRelatedItemsPaginator,
16
17
  SearchCasesPaginator,
17
18
  SearchRelatedItemsPaginator,
18
19
  )
@@ -21,6 +22,7 @@ Usage::
21
22
  client: ConnectCasesClient = session.client("connectcases")
22
23
 
23
24
  list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
25
+ search_all_related_items_paginator: SearchAllRelatedItemsPaginator = client.get_paginator("search_all_related_items")
24
26
  search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
25
27
  search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
26
28
  ```
@@ -36,6 +38,8 @@ from botocore.paginate import PageIterator, Paginator
36
38
  from .type_defs import (
37
39
  ListCaseRulesRequestPaginateTypeDef,
38
40
  ListCaseRulesResponseTypeDef,
41
+ SearchAllRelatedItemsRequestPaginateTypeDef,
42
+ SearchAllRelatedItemsResponseTypeDef,
39
43
  SearchCasesRequestPaginateTypeDef,
40
44
  SearchCasesResponseTypeDef,
41
45
  SearchRelatedItemsRequestPaginateTypeDef,
@@ -47,7 +51,12 @@ if sys.version_info >= (3, 12):
47
51
  else:
48
52
  from typing_extensions import Unpack
49
53
 
50
- __all__ = ("ListCaseRulesPaginator", "SearchCasesPaginator", "SearchRelatedItemsPaginator")
54
+ __all__ = (
55
+ "ListCaseRulesPaginator",
56
+ "SearchAllRelatedItemsPaginator",
57
+ "SearchCasesPaginator",
58
+ "SearchRelatedItemsPaginator",
59
+ )
51
60
 
52
61
  if TYPE_CHECKING:
53
62
  _ListCaseRulesPaginatorBase = Paginator[ListCaseRulesResponseTypeDef]
@@ -67,6 +76,24 @@ class ListCaseRulesPaginator(_ListCaseRulesPaginatorBase):
67
76
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#listcaserulespaginator)
68
77
  """
69
78
 
79
+ if TYPE_CHECKING:
80
+ _SearchAllRelatedItemsPaginatorBase = Paginator[SearchAllRelatedItemsResponseTypeDef]
81
+ else:
82
+ _SearchAllRelatedItemsPaginatorBase = Paginator # type: ignore[assignment]
83
+
84
+ class SearchAllRelatedItemsPaginator(_SearchAllRelatedItemsPaginatorBase):
85
+ """
86
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchAllRelatedItems.html#ConnectCases.Paginator.SearchAllRelatedItems)
87
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchallrelateditemspaginator)
88
+ """
89
+ def paginate( # type: ignore[override]
90
+ self, **kwargs: Unpack[SearchAllRelatedItemsRequestPaginateTypeDef]
91
+ ) -> PageIterator[SearchAllRelatedItemsResponseTypeDef]:
92
+ """
93
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchAllRelatedItems.html#ConnectCases.Paginator.SearchAllRelatedItems.paginate)
94
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchallrelateditemspaginator)
95
+ """
96
+
70
97
  if TYPE_CHECKING:
71
98
  _SearchCasesPaginatorBase = Paginator[SearchCasesResponseTypeDef]
72
99
  else: