mypy-boto3-redshift 1.34.0__py3-none-any.whl → 1.34.37__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.
Potentially problematic release.
This version of mypy-boto3-redshift might be problematic. Click here for more details.
- mypy_boto3_redshift/__init__.py +4 -1
- mypy_boto3_redshift/__init__.pyi +4 -0
- mypy_boto3_redshift/__main__.py +8 -7
- mypy_boto3_redshift/client.py +95 -68
- mypy_boto3_redshift/client.pyi +95 -67
- mypy_boto3_redshift/literals.py +11 -2
- mypy_boto3_redshift/literals.pyi +11 -0
- mypy_boto3_redshift/paginator.py +51 -29
- mypy_boto3_redshift/paginator.pyi +50 -28
- mypy_boto3_redshift/type_defs.py +66 -1
- mypy_boto3_redshift/type_defs.pyi +66 -0
- mypy_boto3_redshift/version.py +1 -1
- mypy_boto3_redshift/waiter.py +4 -4
- mypy_boto3_redshift/waiter.pyi +4 -4
- {mypy_boto3_redshift-1.34.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/LICENSE +1 -1
- {mypy_boto3_redshift-1.34.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/METADATA +10 -7
- mypy_boto3_redshift-1.34.37.dist-info/RECORD +20 -0
- mypy_boto3_redshift-1.34.0.dist-info/RECORD +0 -20
- {mypy_boto3_redshift-1.34.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/WHEEL +0 -0
- {mypy_boto3_redshift-1.34.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/top_level.txt +0 -0
mypy_boto3_redshift/literals.py
CHANGED
|
@@ -19,7 +19,6 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
__all__ = (
|
|
24
23
|
"ActionTypeType",
|
|
25
24
|
"AquaConfigurationStatusType",
|
|
@@ -66,12 +65,15 @@ __all__ = (
|
|
|
66
65
|
"DescribeUsageLimitsPaginatorName",
|
|
67
66
|
"GetReservedNodeExchangeConfigurationOptionsPaginatorName",
|
|
68
67
|
"GetReservedNodeExchangeOfferingsPaginatorName",
|
|
68
|
+
"ImpactRankingTypeType",
|
|
69
|
+
"ListRecommendationsPaginatorName",
|
|
69
70
|
"LogDestinationTypeType",
|
|
70
71
|
"ModeType",
|
|
71
72
|
"NodeConfigurationOptionsFilterNameType",
|
|
72
73
|
"OperatorTypeType",
|
|
73
74
|
"ParameterApplyTypeType",
|
|
74
75
|
"PartnerIntegrationStatusType",
|
|
76
|
+
"RecommendedActionTypeType",
|
|
75
77
|
"ReservedNodeExchangeActionTypeType",
|
|
76
78
|
"ReservedNodeExchangeStatusTypeType",
|
|
77
79
|
"ReservedNodeOfferingTypeType",
|
|
@@ -98,7 +100,6 @@ __all__ = (
|
|
|
98
100
|
"RegionName",
|
|
99
101
|
)
|
|
100
102
|
|
|
101
|
-
|
|
102
103
|
ActionTypeType = Literal["recommend-node-config", "resize-cluster", "restore-cluster"]
|
|
103
104
|
AquaConfigurationStatusType = Literal["auto", "disabled", "enabled"]
|
|
104
105
|
AquaStatusType = Literal["applying", "disabled", "enabled"]
|
|
@@ -150,6 +151,8 @@ GetReservedNodeExchangeConfigurationOptionsPaginatorName = Literal[
|
|
|
150
151
|
"get_reserved_node_exchange_configuration_options"
|
|
151
152
|
]
|
|
152
153
|
GetReservedNodeExchangeOfferingsPaginatorName = Literal["get_reserved_node_exchange_offerings"]
|
|
154
|
+
ImpactRankingTypeType = Literal["HIGH", "LOW", "MEDIUM"]
|
|
155
|
+
ListRecommendationsPaginatorName = Literal["list_recommendations"]
|
|
153
156
|
LogDestinationTypeType = Literal["cloudwatch", "s3"]
|
|
154
157
|
ModeType = Literal["high-performance", "standard"]
|
|
155
158
|
NodeConfigurationOptionsFilterNameType = Literal[
|
|
@@ -158,6 +161,7 @@ NodeConfigurationOptionsFilterNameType = Literal[
|
|
|
158
161
|
OperatorTypeType = Literal["between", "eq", "ge", "gt", "in", "le", "lt"]
|
|
159
162
|
ParameterApplyTypeType = Literal["dynamic", "static"]
|
|
160
163
|
PartnerIntegrationStatusType = Literal["Active", "ConnectionFailure", "Inactive", "RuntimeFailure"]
|
|
164
|
+
RecommendedActionTypeType = Literal["CLI", "SQL"]
|
|
161
165
|
ReservedNodeExchangeActionTypeType = Literal["resize-cluster", "restore-cluster"]
|
|
162
166
|
ReservedNodeExchangeStatusTypeType = Literal[
|
|
163
167
|
"FAILED", "IN_PROGRESS", "PENDING", "REQUESTED", "RETRYING", "SUCCEEDED"
|
|
@@ -434,9 +438,11 @@ ServiceName = Literal[
|
|
|
434
438
|
"mturk",
|
|
435
439
|
"mwaa",
|
|
436
440
|
"neptune",
|
|
441
|
+
"neptune-graph",
|
|
437
442
|
"neptunedata",
|
|
438
443
|
"network-firewall",
|
|
439
444
|
"networkmanager",
|
|
445
|
+
"networkmonitor",
|
|
440
446
|
"nimble",
|
|
441
447
|
"oam",
|
|
442
448
|
"omics",
|
|
@@ -534,6 +540,7 @@ ServiceName = Literal[
|
|
|
534
540
|
"stepfunctions",
|
|
535
541
|
"storagegateway",
|
|
536
542
|
"sts",
|
|
543
|
+
"supplychain",
|
|
537
544
|
"support",
|
|
538
545
|
"support-app",
|
|
539
546
|
"swf",
|
|
@@ -611,6 +618,7 @@ PaginatorName = Literal[
|
|
|
611
618
|
"describe_usage_limits",
|
|
612
619
|
"get_reserved_node_exchange_configuration_options",
|
|
613
620
|
"get_reserved_node_exchange_offerings",
|
|
621
|
+
"list_recommendations",
|
|
614
622
|
]
|
|
615
623
|
WaiterName = Literal[
|
|
616
624
|
"cluster_available", "cluster_deleted", "cluster_restored", "snapshot_available"
|
|
@@ -628,6 +636,7 @@ RegionName = Literal[
|
|
|
628
636
|
"ap-southeast-3",
|
|
629
637
|
"ap-southeast-4",
|
|
630
638
|
"ca-central-1",
|
|
639
|
+
"ca-west-1",
|
|
631
640
|
"eu-central-1",
|
|
632
641
|
"eu-central-2",
|
|
633
642
|
"eu-north-1",
|
mypy_boto3_redshift/literals.pyi
CHANGED
|
@@ -65,12 +65,15 @@ __all__ = (
|
|
|
65
65
|
"DescribeUsageLimitsPaginatorName",
|
|
66
66
|
"GetReservedNodeExchangeConfigurationOptionsPaginatorName",
|
|
67
67
|
"GetReservedNodeExchangeOfferingsPaginatorName",
|
|
68
|
+
"ImpactRankingTypeType",
|
|
69
|
+
"ListRecommendationsPaginatorName",
|
|
68
70
|
"LogDestinationTypeType",
|
|
69
71
|
"ModeType",
|
|
70
72
|
"NodeConfigurationOptionsFilterNameType",
|
|
71
73
|
"OperatorTypeType",
|
|
72
74
|
"ParameterApplyTypeType",
|
|
73
75
|
"PartnerIntegrationStatusType",
|
|
76
|
+
"RecommendedActionTypeType",
|
|
74
77
|
"ReservedNodeExchangeActionTypeType",
|
|
75
78
|
"ReservedNodeExchangeStatusTypeType",
|
|
76
79
|
"ReservedNodeOfferingTypeType",
|
|
@@ -148,6 +151,8 @@ GetReservedNodeExchangeConfigurationOptionsPaginatorName = Literal[
|
|
|
148
151
|
"get_reserved_node_exchange_configuration_options"
|
|
149
152
|
]
|
|
150
153
|
GetReservedNodeExchangeOfferingsPaginatorName = Literal["get_reserved_node_exchange_offerings"]
|
|
154
|
+
ImpactRankingTypeType = Literal["HIGH", "LOW", "MEDIUM"]
|
|
155
|
+
ListRecommendationsPaginatorName = Literal["list_recommendations"]
|
|
151
156
|
LogDestinationTypeType = Literal["cloudwatch", "s3"]
|
|
152
157
|
ModeType = Literal["high-performance", "standard"]
|
|
153
158
|
NodeConfigurationOptionsFilterNameType = Literal[
|
|
@@ -156,6 +161,7 @@ NodeConfigurationOptionsFilterNameType = Literal[
|
|
|
156
161
|
OperatorTypeType = Literal["between", "eq", "ge", "gt", "in", "le", "lt"]
|
|
157
162
|
ParameterApplyTypeType = Literal["dynamic", "static"]
|
|
158
163
|
PartnerIntegrationStatusType = Literal["Active", "ConnectionFailure", "Inactive", "RuntimeFailure"]
|
|
164
|
+
RecommendedActionTypeType = Literal["CLI", "SQL"]
|
|
159
165
|
ReservedNodeExchangeActionTypeType = Literal["resize-cluster", "restore-cluster"]
|
|
160
166
|
ReservedNodeExchangeStatusTypeType = Literal[
|
|
161
167
|
"FAILED", "IN_PROGRESS", "PENDING", "REQUESTED", "RETRYING", "SUCCEEDED"
|
|
@@ -432,9 +438,11 @@ ServiceName = Literal[
|
|
|
432
438
|
"mturk",
|
|
433
439
|
"mwaa",
|
|
434
440
|
"neptune",
|
|
441
|
+
"neptune-graph",
|
|
435
442
|
"neptunedata",
|
|
436
443
|
"network-firewall",
|
|
437
444
|
"networkmanager",
|
|
445
|
+
"networkmonitor",
|
|
438
446
|
"nimble",
|
|
439
447
|
"oam",
|
|
440
448
|
"omics",
|
|
@@ -532,6 +540,7 @@ ServiceName = Literal[
|
|
|
532
540
|
"stepfunctions",
|
|
533
541
|
"storagegateway",
|
|
534
542
|
"sts",
|
|
543
|
+
"supplychain",
|
|
535
544
|
"support",
|
|
536
545
|
"support-app",
|
|
537
546
|
"swf",
|
|
@@ -609,6 +618,7 @@ PaginatorName = Literal[
|
|
|
609
618
|
"describe_usage_limits",
|
|
610
619
|
"get_reserved_node_exchange_configuration_options",
|
|
611
620
|
"get_reserved_node_exchange_offerings",
|
|
621
|
+
"list_recommendations",
|
|
612
622
|
]
|
|
613
623
|
WaiterName = Literal[
|
|
614
624
|
"cluster_available", "cluster_deleted", "cluster_restored", "snapshot_available"
|
|
@@ -626,6 +636,7 @@ RegionName = Literal[
|
|
|
626
636
|
"ap-southeast-3",
|
|
627
637
|
"ap-southeast-4",
|
|
628
638
|
"ca-central-1",
|
|
639
|
+
"ca-west-1",
|
|
629
640
|
"eu-central-1",
|
|
630
641
|
"eu-central-2",
|
|
631
642
|
"eu-north-1",
|
mypy_boto3_redshift/paginator.py
CHANGED
|
@@ -45,6 +45,7 @@ Usage::
|
|
|
45
45
|
DescribeUsageLimitsPaginator,
|
|
46
46
|
GetReservedNodeExchangeConfigurationOptionsPaginator,
|
|
47
47
|
GetReservedNodeExchangeOfferingsPaginator,
|
|
48
|
+
ListRecommendationsPaginator,
|
|
48
49
|
)
|
|
49
50
|
|
|
50
51
|
session = Session()
|
|
@@ -85,6 +86,7 @@ Usage::
|
|
|
85
86
|
describe_usage_limits_paginator: DescribeUsageLimitsPaginator = client.get_paginator("describe_usage_limits")
|
|
86
87
|
get_reserved_node_exchange_configuration_options_paginator: GetReservedNodeExchangeConfigurationOptionsPaginator = client.get_paginator("get_reserved_node_exchange_configuration_options")
|
|
87
88
|
get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
|
|
89
|
+
list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
|
|
88
90
|
```
|
|
89
91
|
"""
|
|
90
92
|
|
|
@@ -126,6 +128,7 @@ from .type_defs import (
|
|
|
126
128
|
HsmClientCertificateMessageTypeDef,
|
|
127
129
|
HsmConfigurationMessageTypeDef,
|
|
128
130
|
InboundIntegrationsMessageTypeDef,
|
|
131
|
+
ListRecommendationsResultTypeDef,
|
|
129
132
|
NodeConfigurationOptionsFilterTypeDef,
|
|
130
133
|
NodeConfigurationOptionsMessageTypeDef,
|
|
131
134
|
OrderableClusterOptionsMessageTypeDef,
|
|
@@ -180,9 +183,9 @@ __all__ = (
|
|
|
180
183
|
"DescribeUsageLimitsPaginator",
|
|
181
184
|
"GetReservedNodeExchangeConfigurationOptionsPaginator",
|
|
182
185
|
"GetReservedNodeExchangeOfferingsPaginator",
|
|
186
|
+
"ListRecommendationsPaginator",
|
|
183
187
|
)
|
|
184
188
|
|
|
185
|
-
|
|
186
189
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
187
190
|
|
|
188
191
|
|
|
@@ -220,7 +223,7 @@ class DescribeClusterParameterGroupsPaginator(Paginator):
|
|
|
220
223
|
ParameterGroupName: str = ...,
|
|
221
224
|
TagKeys: Sequence[str] = ...,
|
|
222
225
|
TagValues: Sequence[str] = ...,
|
|
223
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
226
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
224
227
|
) -> _PageIterator[ClusterParameterGroupsMessageTypeDef]:
|
|
225
228
|
"""
|
|
226
229
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterParameterGroups.paginate)
|
|
@@ -239,7 +242,7 @@ class DescribeClusterParametersPaginator(Paginator):
|
|
|
239
242
|
*,
|
|
240
243
|
ParameterGroupName: str,
|
|
241
244
|
Source: str = ...,
|
|
242
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
245
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
243
246
|
) -> _PageIterator[ClusterParameterGroupDetailsTypeDef]:
|
|
244
247
|
"""
|
|
245
248
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterParameters.paginate)
|
|
@@ -259,7 +262,7 @@ class DescribeClusterSecurityGroupsPaginator(Paginator):
|
|
|
259
262
|
ClusterSecurityGroupName: str = ...,
|
|
260
263
|
TagKeys: Sequence[str] = ...,
|
|
261
264
|
TagValues: Sequence[str] = ...,
|
|
262
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
265
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
263
266
|
) -> _PageIterator[ClusterSecurityGroupMessageTypeDef]:
|
|
264
267
|
"""
|
|
265
268
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterSecurityGroups.paginate)
|
|
@@ -287,7 +290,7 @@ class DescribeClusterSnapshotsPaginator(Paginator):
|
|
|
287
290
|
TagValues: Sequence[str] = ...,
|
|
288
291
|
ClusterExists: bool = ...,
|
|
289
292
|
SortingEntities: Sequence[SnapshotSortingEntityTypeDef] = ...,
|
|
290
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
293
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
291
294
|
) -> _PageIterator[SnapshotMessageTypeDef]:
|
|
292
295
|
"""
|
|
293
296
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterSnapshots.paginate)
|
|
@@ -307,7 +310,7 @@ class DescribeClusterSubnetGroupsPaginator(Paginator):
|
|
|
307
310
|
ClusterSubnetGroupName: str = ...,
|
|
308
311
|
TagKeys: Sequence[str] = ...,
|
|
309
312
|
TagValues: Sequence[str] = ...,
|
|
310
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
313
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
311
314
|
) -> _PageIterator[ClusterSubnetGroupMessageTypeDef]:
|
|
312
315
|
"""
|
|
313
316
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterSubnetGroups.paginate)
|
|
@@ -341,7 +344,7 @@ class DescribeClusterVersionsPaginator(Paginator):
|
|
|
341
344
|
*,
|
|
342
345
|
ClusterVersion: str = ...,
|
|
343
346
|
ClusterParameterGroupFamily: str = ...,
|
|
344
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
347
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
345
348
|
) -> _PageIterator[ClusterVersionsMessageTypeDef]:
|
|
346
349
|
"""
|
|
347
350
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterVersions.paginate)
|
|
@@ -361,7 +364,7 @@ class DescribeClustersPaginator(Paginator):
|
|
|
361
364
|
ClusterIdentifier: str = ...,
|
|
362
365
|
TagKeys: Sequence[str] = ...,
|
|
363
366
|
TagValues: Sequence[str] = ...,
|
|
364
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
367
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
365
368
|
) -> _PageIterator[ClustersMessageTypeDef]:
|
|
366
369
|
"""
|
|
367
370
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusters.paginate)
|
|
@@ -380,7 +383,7 @@ class DescribeCustomDomainAssociationsPaginator(Paginator):
|
|
|
380
383
|
*,
|
|
381
384
|
CustomDomainName: str = ...,
|
|
382
385
|
CustomDomainCertificateArn: str = ...,
|
|
383
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
386
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
384
387
|
) -> _PageIterator[CustomDomainAssociationsMessageTypeDef]:
|
|
385
388
|
"""
|
|
386
389
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeCustomDomainAssociations.paginate)
|
|
@@ -414,7 +417,7 @@ class DescribeDataSharesForConsumerPaginator(Paginator):
|
|
|
414
417
|
*,
|
|
415
418
|
ConsumerArn: str = ...,
|
|
416
419
|
Status: DataShareStatusForConsumerType = ...,
|
|
417
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
420
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
418
421
|
) -> _PageIterator[DescribeDataSharesForConsumerResultTypeDef]:
|
|
419
422
|
"""
|
|
420
423
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeDataSharesForConsumer.paginate)
|
|
@@ -433,7 +436,7 @@ class DescribeDataSharesForProducerPaginator(Paginator):
|
|
|
433
436
|
*,
|
|
434
437
|
ProducerArn: str = ...,
|
|
435
438
|
Status: DataShareStatusForProducerType = ...,
|
|
436
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
439
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
437
440
|
) -> _PageIterator[DescribeDataSharesForProducerResultTypeDef]:
|
|
438
441
|
"""
|
|
439
442
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeDataSharesForProducer.paginate)
|
|
@@ -469,7 +472,7 @@ class DescribeEndpointAccessPaginator(Paginator):
|
|
|
469
472
|
ResourceOwner: str = ...,
|
|
470
473
|
EndpointName: str = ...,
|
|
471
474
|
VpcId: str = ...,
|
|
472
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
475
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
473
476
|
) -> _PageIterator[EndpointAccessListTypeDef]:
|
|
474
477
|
"""
|
|
475
478
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeEndpointAccess.paginate)
|
|
@@ -489,7 +492,7 @@ class DescribeEndpointAuthorizationPaginator(Paginator):
|
|
|
489
492
|
ClusterIdentifier: str = ...,
|
|
490
493
|
Account: str = ...,
|
|
491
494
|
Grantee: bool = ...,
|
|
492
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
495
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
493
496
|
) -> _PageIterator[EndpointAuthorizationListTypeDef]:
|
|
494
497
|
"""
|
|
495
498
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeEndpointAuthorization.paginate)
|
|
@@ -509,7 +512,7 @@ class DescribeEventSubscriptionsPaginator(Paginator):
|
|
|
509
512
|
SubscriptionName: str = ...,
|
|
510
513
|
TagKeys: Sequence[str] = ...,
|
|
511
514
|
TagValues: Sequence[str] = ...,
|
|
512
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
515
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
513
516
|
) -> _PageIterator[EventSubscriptionsMessageTypeDef]:
|
|
514
517
|
"""
|
|
515
518
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeEventSubscriptions.paginate)
|
|
@@ -531,7 +534,7 @@ class DescribeEventsPaginator(Paginator):
|
|
|
531
534
|
StartTime: TimestampTypeDef = ...,
|
|
532
535
|
EndTime: TimestampTypeDef = ...,
|
|
533
536
|
Duration: int = ...,
|
|
534
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
537
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
535
538
|
) -> _PageIterator[EventsMessageTypeDef]:
|
|
536
539
|
"""
|
|
537
540
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeEvents.paginate)
|
|
@@ -551,7 +554,7 @@ class DescribeHsmClientCertificatesPaginator(Paginator):
|
|
|
551
554
|
HsmClientCertificateIdentifier: str = ...,
|
|
552
555
|
TagKeys: Sequence[str] = ...,
|
|
553
556
|
TagValues: Sequence[str] = ...,
|
|
554
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
557
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
555
558
|
) -> _PageIterator[HsmClientCertificateMessageTypeDef]:
|
|
556
559
|
"""
|
|
557
560
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeHsmClientCertificates.paginate)
|
|
@@ -571,7 +574,7 @@ class DescribeHsmConfigurationsPaginator(Paginator):
|
|
|
571
574
|
HsmConfigurationIdentifier: str = ...,
|
|
572
575
|
TagKeys: Sequence[str] = ...,
|
|
573
576
|
TagValues: Sequence[str] = ...,
|
|
574
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
577
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
575
578
|
) -> _PageIterator[HsmConfigurationMessageTypeDef]:
|
|
576
579
|
"""
|
|
577
580
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeHsmConfigurations.paginate)
|
|
@@ -590,7 +593,7 @@ class DescribeInboundIntegrationsPaginator(Paginator):
|
|
|
590
593
|
*,
|
|
591
594
|
IntegrationArn: str = ...,
|
|
592
595
|
TargetArn: str = ...,
|
|
593
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
596
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
594
597
|
) -> _PageIterator[InboundIntegrationsMessageTypeDef]:
|
|
595
598
|
"""
|
|
596
599
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeInboundIntegrations.paginate)
|
|
@@ -613,7 +616,7 @@ class DescribeNodeConfigurationOptionsPaginator(Paginator):
|
|
|
613
616
|
SnapshotArn: str = ...,
|
|
614
617
|
OwnerAccount: str = ...,
|
|
615
618
|
Filters: Sequence[NodeConfigurationOptionsFilterTypeDef] = ...,
|
|
616
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
619
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
617
620
|
) -> _PageIterator[NodeConfigurationOptionsMessageTypeDef]:
|
|
618
621
|
"""
|
|
619
622
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeNodeConfigurationOptions.paginate)
|
|
@@ -632,7 +635,7 @@ class DescribeOrderableClusterOptionsPaginator(Paginator):
|
|
|
632
635
|
*,
|
|
633
636
|
ClusterVersion: str = ...,
|
|
634
637
|
NodeType: str = ...,
|
|
635
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
638
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
636
639
|
) -> _PageIterator[OrderableClusterOptionsMessageTypeDef]:
|
|
637
640
|
"""
|
|
638
641
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeOrderableClusterOptions.paginate)
|
|
@@ -650,7 +653,7 @@ class DescribeRedshiftIdcApplicationsPaginator(Paginator):
|
|
|
650
653
|
self,
|
|
651
654
|
*,
|
|
652
655
|
RedshiftIdcApplicationArn: str = ...,
|
|
653
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
656
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
654
657
|
) -> _PageIterator[DescribeRedshiftIdcApplicationsResultPaginatorTypeDef]:
|
|
655
658
|
"""
|
|
656
659
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeRedshiftIdcApplications.paginate)
|
|
@@ -669,7 +672,7 @@ class DescribeReservedNodeExchangeStatusPaginator(Paginator):
|
|
|
669
672
|
*,
|
|
670
673
|
ReservedNodeId: str = ...,
|
|
671
674
|
ReservedNodeExchangeRequestId: str = ...,
|
|
672
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
675
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
673
676
|
) -> _PageIterator[DescribeReservedNodeExchangeStatusOutputMessageTypeDef]:
|
|
674
677
|
"""
|
|
675
678
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeReservedNodeExchangeStatus.paginate)
|
|
@@ -722,7 +725,7 @@ class DescribeScheduledActionsPaginator(Paginator):
|
|
|
722
725
|
EndTime: TimestampTypeDef = ...,
|
|
723
726
|
Active: bool = ...,
|
|
724
727
|
Filters: Sequence[ScheduledActionFilterTypeDef] = ...,
|
|
725
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
728
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
726
729
|
) -> _PageIterator[ScheduledActionsMessageTypeDef]:
|
|
727
730
|
"""
|
|
728
731
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeScheduledActions.paginate)
|
|
@@ -742,7 +745,7 @@ class DescribeSnapshotCopyGrantsPaginator(Paginator):
|
|
|
742
745
|
SnapshotCopyGrantName: str = ...,
|
|
743
746
|
TagKeys: Sequence[str] = ...,
|
|
744
747
|
TagValues: Sequence[str] = ...,
|
|
745
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
748
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
746
749
|
) -> _PageIterator[SnapshotCopyGrantMessageTypeDef]:
|
|
747
750
|
"""
|
|
748
751
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeSnapshotCopyGrants.paginate)
|
|
@@ -763,7 +766,7 @@ class DescribeSnapshotSchedulesPaginator(Paginator):
|
|
|
763
766
|
ScheduleIdentifier: str = ...,
|
|
764
767
|
TagKeys: Sequence[str] = ...,
|
|
765
768
|
TagValues: Sequence[str] = ...,
|
|
766
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
769
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
767
770
|
) -> _PageIterator[DescribeSnapshotSchedulesOutputMessageTypeDef]:
|
|
768
771
|
"""
|
|
769
772
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeSnapshotSchedules.paginate)
|
|
@@ -782,7 +785,7 @@ class DescribeTableRestoreStatusPaginator(Paginator):
|
|
|
782
785
|
*,
|
|
783
786
|
ClusterIdentifier: str = ...,
|
|
784
787
|
TableRestoreRequestId: str = ...,
|
|
785
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
788
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
786
789
|
) -> _PageIterator[TableRestoreStatusMessageTypeDef]:
|
|
787
790
|
"""
|
|
788
791
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeTableRestoreStatus.paginate)
|
|
@@ -803,7 +806,7 @@ class DescribeTagsPaginator(Paginator):
|
|
|
803
806
|
ResourceType: str = ...,
|
|
804
807
|
TagKeys: Sequence[str] = ...,
|
|
805
808
|
TagValues: Sequence[str] = ...,
|
|
806
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
809
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
807
810
|
) -> _PageIterator[TaggedResourceListMessageTypeDef]:
|
|
808
811
|
"""
|
|
809
812
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeTags.paginate)
|
|
@@ -825,7 +828,7 @@ class DescribeUsageLimitsPaginator(Paginator):
|
|
|
825
828
|
FeatureType: UsageLimitFeatureTypeType = ...,
|
|
826
829
|
TagKeys: Sequence[str] = ...,
|
|
827
830
|
TagValues: Sequence[str] = ...,
|
|
828
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
831
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
829
832
|
) -> _PageIterator[UsageLimitListTypeDef]:
|
|
830
833
|
"""
|
|
831
834
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeUsageLimits.paginate)
|
|
@@ -845,7 +848,7 @@ class GetReservedNodeExchangeConfigurationOptionsPaginator(Paginator):
|
|
|
845
848
|
ActionType: ReservedNodeExchangeActionTypeType,
|
|
846
849
|
ClusterIdentifier: str = ...,
|
|
847
850
|
SnapshotIdentifier: str = ...,
|
|
848
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
851
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
849
852
|
) -> _PageIterator[GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef]:
|
|
850
853
|
"""
|
|
851
854
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.GetReservedNodeExchangeConfigurationOptions.paginate)
|
|
@@ -866,3 +869,22 @@ class GetReservedNodeExchangeOfferingsPaginator(Paginator):
|
|
|
866
869
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.GetReservedNodeExchangeOfferings.paginate)
|
|
867
870
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#getreservednodeexchangeofferingspaginator)
|
|
868
871
|
"""
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
class ListRecommendationsPaginator(Paginator):
|
|
875
|
+
"""
|
|
876
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.ListRecommendations)
|
|
877
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#listrecommendationspaginator)
|
|
878
|
+
"""
|
|
879
|
+
|
|
880
|
+
def paginate(
|
|
881
|
+
self,
|
|
882
|
+
*,
|
|
883
|
+
ClusterIdentifier: str = ...,
|
|
884
|
+
NamespaceArn: str = ...,
|
|
885
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
886
|
+
) -> _PageIterator[ListRecommendationsResultTypeDef]:
|
|
887
|
+
"""
|
|
888
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.ListRecommendations.paginate)
|
|
889
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#listrecommendationspaginator)
|
|
890
|
+
"""
|