mypy-boto3-redshift 1.33.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 +18 -2
- mypy_boto3_redshift/literals.pyi +18 -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.33.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/LICENSE +1 -1
- {mypy_boto3_redshift-1.33.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.33.0.dist-info/RECORD +0 -20
- {mypy_boto3_redshift-1.33.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/WHEEL +0 -0
- {mypy_boto3_redshift-1.33.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"
|
|
@@ -224,6 +228,8 @@ ServiceName = Literal[
|
|
|
224
228
|
"batch",
|
|
225
229
|
"bcm-data-exports",
|
|
226
230
|
"bedrock",
|
|
231
|
+
"bedrock-agent",
|
|
232
|
+
"bedrock-agent-runtime",
|
|
227
233
|
"bedrock-runtime",
|
|
228
234
|
"billingconductor",
|
|
229
235
|
"braket",
|
|
@@ -236,6 +242,7 @@ ServiceName = Literal[
|
|
|
236
242
|
"chime-sdk-messaging",
|
|
237
243
|
"chime-sdk-voice",
|
|
238
244
|
"cleanrooms",
|
|
245
|
+
"cleanroomsml",
|
|
239
246
|
"cloud9",
|
|
240
247
|
"cloudcontrol",
|
|
241
248
|
"clouddirectory",
|
|
@@ -403,7 +410,9 @@ ServiceName = Literal[
|
|
|
403
410
|
"macie2",
|
|
404
411
|
"managedblockchain",
|
|
405
412
|
"managedblockchain-query",
|
|
413
|
+
"marketplace-agreement",
|
|
406
414
|
"marketplace-catalog",
|
|
415
|
+
"marketplace-deployment",
|
|
407
416
|
"marketplace-entitlement",
|
|
408
417
|
"marketplacecommerceanalytics",
|
|
409
418
|
"mediaconnect",
|
|
@@ -429,9 +438,11 @@ ServiceName = Literal[
|
|
|
429
438
|
"mturk",
|
|
430
439
|
"mwaa",
|
|
431
440
|
"neptune",
|
|
441
|
+
"neptune-graph",
|
|
432
442
|
"neptunedata",
|
|
433
443
|
"network-firewall",
|
|
434
444
|
"networkmanager",
|
|
445
|
+
"networkmonitor",
|
|
435
446
|
"nimble",
|
|
436
447
|
"oam",
|
|
437
448
|
"omics",
|
|
@@ -459,6 +470,8 @@ ServiceName = Literal[
|
|
|
459
470
|
"pricing",
|
|
460
471
|
"privatenetworks",
|
|
461
472
|
"proton",
|
|
473
|
+
"qbusiness",
|
|
474
|
+
"qconnect",
|
|
462
475
|
"qldb",
|
|
463
476
|
"qldb-session",
|
|
464
477
|
"quicksight",
|
|
@@ -527,6 +540,7 @@ ServiceName = Literal[
|
|
|
527
540
|
"stepfunctions",
|
|
528
541
|
"storagegateway",
|
|
529
542
|
"sts",
|
|
543
|
+
"supplychain",
|
|
530
544
|
"support",
|
|
531
545
|
"support-app",
|
|
532
546
|
"swf",
|
|
@@ -604,6 +618,7 @@ PaginatorName = Literal[
|
|
|
604
618
|
"describe_usage_limits",
|
|
605
619
|
"get_reserved_node_exchange_configuration_options",
|
|
606
620
|
"get_reserved_node_exchange_offerings",
|
|
621
|
+
"list_recommendations",
|
|
607
622
|
]
|
|
608
623
|
WaiterName = Literal[
|
|
609
624
|
"cluster_available", "cluster_deleted", "cluster_restored", "snapshot_available"
|
|
@@ -621,6 +636,7 @@ RegionName = Literal[
|
|
|
621
636
|
"ap-southeast-3",
|
|
622
637
|
"ap-southeast-4",
|
|
623
638
|
"ca-central-1",
|
|
639
|
+
"ca-west-1",
|
|
624
640
|
"eu-central-1",
|
|
625
641
|
"eu-central-2",
|
|
626
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"
|
|
@@ -222,6 +228,8 @@ ServiceName = Literal[
|
|
|
222
228
|
"batch",
|
|
223
229
|
"bcm-data-exports",
|
|
224
230
|
"bedrock",
|
|
231
|
+
"bedrock-agent",
|
|
232
|
+
"bedrock-agent-runtime",
|
|
225
233
|
"bedrock-runtime",
|
|
226
234
|
"billingconductor",
|
|
227
235
|
"braket",
|
|
@@ -234,6 +242,7 @@ ServiceName = Literal[
|
|
|
234
242
|
"chime-sdk-messaging",
|
|
235
243
|
"chime-sdk-voice",
|
|
236
244
|
"cleanrooms",
|
|
245
|
+
"cleanroomsml",
|
|
237
246
|
"cloud9",
|
|
238
247
|
"cloudcontrol",
|
|
239
248
|
"clouddirectory",
|
|
@@ -401,7 +410,9 @@ ServiceName = Literal[
|
|
|
401
410
|
"macie2",
|
|
402
411
|
"managedblockchain",
|
|
403
412
|
"managedblockchain-query",
|
|
413
|
+
"marketplace-agreement",
|
|
404
414
|
"marketplace-catalog",
|
|
415
|
+
"marketplace-deployment",
|
|
405
416
|
"marketplace-entitlement",
|
|
406
417
|
"marketplacecommerceanalytics",
|
|
407
418
|
"mediaconnect",
|
|
@@ -427,9 +438,11 @@ ServiceName = Literal[
|
|
|
427
438
|
"mturk",
|
|
428
439
|
"mwaa",
|
|
429
440
|
"neptune",
|
|
441
|
+
"neptune-graph",
|
|
430
442
|
"neptunedata",
|
|
431
443
|
"network-firewall",
|
|
432
444
|
"networkmanager",
|
|
445
|
+
"networkmonitor",
|
|
433
446
|
"nimble",
|
|
434
447
|
"oam",
|
|
435
448
|
"omics",
|
|
@@ -457,6 +470,8 @@ ServiceName = Literal[
|
|
|
457
470
|
"pricing",
|
|
458
471
|
"privatenetworks",
|
|
459
472
|
"proton",
|
|
473
|
+
"qbusiness",
|
|
474
|
+
"qconnect",
|
|
460
475
|
"qldb",
|
|
461
476
|
"qldb-session",
|
|
462
477
|
"quicksight",
|
|
@@ -525,6 +540,7 @@ ServiceName = Literal[
|
|
|
525
540
|
"stepfunctions",
|
|
526
541
|
"storagegateway",
|
|
527
542
|
"sts",
|
|
543
|
+
"supplychain",
|
|
528
544
|
"support",
|
|
529
545
|
"support-app",
|
|
530
546
|
"swf",
|
|
@@ -602,6 +618,7 @@ PaginatorName = Literal[
|
|
|
602
618
|
"describe_usage_limits",
|
|
603
619
|
"get_reserved_node_exchange_configuration_options",
|
|
604
620
|
"get_reserved_node_exchange_offerings",
|
|
621
|
+
"list_recommendations",
|
|
605
622
|
]
|
|
606
623
|
WaiterName = Literal[
|
|
607
624
|
"cluster_available", "cluster_deleted", "cluster_restored", "snapshot_available"
|
|
@@ -619,6 +636,7 @@ RegionName = Literal[
|
|
|
619
636
|
"ap-southeast-3",
|
|
620
637
|
"ap-southeast-4",
|
|
621
638
|
"ca-central-1",
|
|
639
|
+
"ca-west-1",
|
|
622
640
|
"eu-central-1",
|
|
623
641
|
"eu-central-2",
|
|
624
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
|
+
"""
|