types-boto3-redshift 1.36.0__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_redshift/__init__.py +198 -0
- types_boto3_redshift/__init__.pyi +197 -0
- types_boto3_redshift/__main__.py +43 -0
- types_boto3_redshift/client.py +2403 -0
- types_boto3_redshift/client.pyi +2400 -0
- types_boto3_redshift/literals.py +700 -0
- types_boto3_redshift/literals.pyi +698 -0
- types_boto3_redshift/paginator.py +1025 -0
- types_boto3_redshift/paginator.pyi +913 -0
- types_boto3_redshift/py.typed +0 -0
- types_boto3_redshift/type_defs.py +3207 -0
- types_boto3_redshift/type_defs.pyi +2821 -0
- types_boto3_redshift/version.py +7 -0
- types_boto3_redshift/waiter.py +113 -0
- types_boto3_redshift/waiter.pyi +104 -0
- types_boto3_redshift-1.36.0.dist-info/LICENSE +21 -0
- types_boto3_redshift-1.36.0.dist-info/METADATA +649 -0
- types_boto3_redshift-1.36.0.dist-info/RECORD +20 -0
- types_boto3_redshift-1.36.0.dist-info/WHEEL +5 -0
- types_boto3_redshift-1.36.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,913 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for redshift service client paginators.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from boto3.session import Session
|
|
10
|
+
|
|
11
|
+
from types_boto3_redshift.client import RedshiftClient
|
|
12
|
+
from types_boto3_redshift.paginator import (
|
|
13
|
+
DescribeClusterDbRevisionsPaginator,
|
|
14
|
+
DescribeClusterParameterGroupsPaginator,
|
|
15
|
+
DescribeClusterParametersPaginator,
|
|
16
|
+
DescribeClusterSecurityGroupsPaginator,
|
|
17
|
+
DescribeClusterSnapshotsPaginator,
|
|
18
|
+
DescribeClusterSubnetGroupsPaginator,
|
|
19
|
+
DescribeClusterTracksPaginator,
|
|
20
|
+
DescribeClusterVersionsPaginator,
|
|
21
|
+
DescribeClustersPaginator,
|
|
22
|
+
DescribeCustomDomainAssociationsPaginator,
|
|
23
|
+
DescribeDataSharesForConsumerPaginator,
|
|
24
|
+
DescribeDataSharesForProducerPaginator,
|
|
25
|
+
DescribeDataSharesPaginator,
|
|
26
|
+
DescribeDefaultClusterParametersPaginator,
|
|
27
|
+
DescribeEndpointAccessPaginator,
|
|
28
|
+
DescribeEndpointAuthorizationPaginator,
|
|
29
|
+
DescribeEventSubscriptionsPaginator,
|
|
30
|
+
DescribeEventsPaginator,
|
|
31
|
+
DescribeHsmClientCertificatesPaginator,
|
|
32
|
+
DescribeHsmConfigurationsPaginator,
|
|
33
|
+
DescribeInboundIntegrationsPaginator,
|
|
34
|
+
DescribeIntegrationsPaginator,
|
|
35
|
+
DescribeNodeConfigurationOptionsPaginator,
|
|
36
|
+
DescribeOrderableClusterOptionsPaginator,
|
|
37
|
+
DescribeRedshiftIdcApplicationsPaginator,
|
|
38
|
+
DescribeReservedNodeExchangeStatusPaginator,
|
|
39
|
+
DescribeReservedNodeOfferingsPaginator,
|
|
40
|
+
DescribeReservedNodesPaginator,
|
|
41
|
+
DescribeScheduledActionsPaginator,
|
|
42
|
+
DescribeSnapshotCopyGrantsPaginator,
|
|
43
|
+
DescribeSnapshotSchedulesPaginator,
|
|
44
|
+
DescribeTableRestoreStatusPaginator,
|
|
45
|
+
DescribeTagsPaginator,
|
|
46
|
+
DescribeUsageLimitsPaginator,
|
|
47
|
+
GetReservedNodeExchangeConfigurationOptionsPaginator,
|
|
48
|
+
GetReservedNodeExchangeOfferingsPaginator,
|
|
49
|
+
ListRecommendationsPaginator,
|
|
50
|
+
)
|
|
51
|
+
|
|
52
|
+
session = Session()
|
|
53
|
+
client: RedshiftClient = session.client("redshift")
|
|
54
|
+
|
|
55
|
+
describe_cluster_db_revisions_paginator: DescribeClusterDbRevisionsPaginator = client.get_paginator("describe_cluster_db_revisions")
|
|
56
|
+
describe_cluster_parameter_groups_paginator: DescribeClusterParameterGroupsPaginator = client.get_paginator("describe_cluster_parameter_groups")
|
|
57
|
+
describe_cluster_parameters_paginator: DescribeClusterParametersPaginator = client.get_paginator("describe_cluster_parameters")
|
|
58
|
+
describe_cluster_security_groups_paginator: DescribeClusterSecurityGroupsPaginator = client.get_paginator("describe_cluster_security_groups")
|
|
59
|
+
describe_cluster_snapshots_paginator: DescribeClusterSnapshotsPaginator = client.get_paginator("describe_cluster_snapshots")
|
|
60
|
+
describe_cluster_subnet_groups_paginator: DescribeClusterSubnetGroupsPaginator = client.get_paginator("describe_cluster_subnet_groups")
|
|
61
|
+
describe_cluster_tracks_paginator: DescribeClusterTracksPaginator = client.get_paginator("describe_cluster_tracks")
|
|
62
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
63
|
+
describe_clusters_paginator: DescribeClustersPaginator = client.get_paginator("describe_clusters")
|
|
64
|
+
describe_custom_domain_associations_paginator: DescribeCustomDomainAssociationsPaginator = client.get_paginator("describe_custom_domain_associations")
|
|
65
|
+
describe_data_shares_for_consumer_paginator: DescribeDataSharesForConsumerPaginator = client.get_paginator("describe_data_shares_for_consumer")
|
|
66
|
+
describe_data_shares_for_producer_paginator: DescribeDataSharesForProducerPaginator = client.get_paginator("describe_data_shares_for_producer")
|
|
67
|
+
describe_data_shares_paginator: DescribeDataSharesPaginator = client.get_paginator("describe_data_shares")
|
|
68
|
+
describe_default_cluster_parameters_paginator: DescribeDefaultClusterParametersPaginator = client.get_paginator("describe_default_cluster_parameters")
|
|
69
|
+
describe_endpoint_access_paginator: DescribeEndpointAccessPaginator = client.get_paginator("describe_endpoint_access")
|
|
70
|
+
describe_endpoint_authorization_paginator: DescribeEndpointAuthorizationPaginator = client.get_paginator("describe_endpoint_authorization")
|
|
71
|
+
describe_event_subscriptions_paginator: DescribeEventSubscriptionsPaginator = client.get_paginator("describe_event_subscriptions")
|
|
72
|
+
describe_events_paginator: DescribeEventsPaginator = client.get_paginator("describe_events")
|
|
73
|
+
describe_hsm_client_certificates_paginator: DescribeHsmClientCertificatesPaginator = client.get_paginator("describe_hsm_client_certificates")
|
|
74
|
+
describe_hsm_configurations_paginator: DescribeHsmConfigurationsPaginator = client.get_paginator("describe_hsm_configurations")
|
|
75
|
+
describe_inbound_integrations_paginator: DescribeInboundIntegrationsPaginator = client.get_paginator("describe_inbound_integrations")
|
|
76
|
+
describe_integrations_paginator: DescribeIntegrationsPaginator = client.get_paginator("describe_integrations")
|
|
77
|
+
describe_node_configuration_options_paginator: DescribeNodeConfigurationOptionsPaginator = client.get_paginator("describe_node_configuration_options")
|
|
78
|
+
describe_orderable_cluster_options_paginator: DescribeOrderableClusterOptionsPaginator = client.get_paginator("describe_orderable_cluster_options")
|
|
79
|
+
describe_redshift_idc_applications_paginator: DescribeRedshiftIdcApplicationsPaginator = client.get_paginator("describe_redshift_idc_applications")
|
|
80
|
+
describe_reserved_node_exchange_status_paginator: DescribeReservedNodeExchangeStatusPaginator = client.get_paginator("describe_reserved_node_exchange_status")
|
|
81
|
+
describe_reserved_node_offerings_paginator: DescribeReservedNodeOfferingsPaginator = client.get_paginator("describe_reserved_node_offerings")
|
|
82
|
+
describe_reserved_nodes_paginator: DescribeReservedNodesPaginator = client.get_paginator("describe_reserved_nodes")
|
|
83
|
+
describe_scheduled_actions_paginator: DescribeScheduledActionsPaginator = client.get_paginator("describe_scheduled_actions")
|
|
84
|
+
describe_snapshot_copy_grants_paginator: DescribeSnapshotCopyGrantsPaginator = client.get_paginator("describe_snapshot_copy_grants")
|
|
85
|
+
describe_snapshot_schedules_paginator: DescribeSnapshotSchedulesPaginator = client.get_paginator("describe_snapshot_schedules")
|
|
86
|
+
describe_table_restore_status_paginator: DescribeTableRestoreStatusPaginator = client.get_paginator("describe_table_restore_status")
|
|
87
|
+
describe_tags_paginator: DescribeTagsPaginator = client.get_paginator("describe_tags")
|
|
88
|
+
describe_usage_limits_paginator: DescribeUsageLimitsPaginator = client.get_paginator("describe_usage_limits")
|
|
89
|
+
get_reserved_node_exchange_configuration_options_paginator: GetReservedNodeExchangeConfigurationOptionsPaginator = client.get_paginator("get_reserved_node_exchange_configuration_options")
|
|
90
|
+
get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
|
|
91
|
+
list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Copyright 2025 Vlad Emelianov
|
|
95
|
+
"""
|
|
96
|
+
|
|
97
|
+
from __future__ import annotations
|
|
98
|
+
|
|
99
|
+
import sys
|
|
100
|
+
from typing import TYPE_CHECKING
|
|
101
|
+
|
|
102
|
+
from botocore.paginate import PageIterator, Paginator
|
|
103
|
+
|
|
104
|
+
from .type_defs import (
|
|
105
|
+
ClusterDbRevisionsMessageTypeDef,
|
|
106
|
+
ClusterParameterGroupDetailsTypeDef,
|
|
107
|
+
ClusterParameterGroupsMessageTypeDef,
|
|
108
|
+
ClusterSecurityGroupMessageTypeDef,
|
|
109
|
+
ClustersMessageTypeDef,
|
|
110
|
+
ClusterSubnetGroupMessageTypeDef,
|
|
111
|
+
ClusterVersionsMessageTypeDef,
|
|
112
|
+
CustomDomainAssociationsMessageTypeDef,
|
|
113
|
+
DescribeClusterDbRevisionsMessagePaginateTypeDef,
|
|
114
|
+
DescribeClusterParameterGroupsMessagePaginateTypeDef,
|
|
115
|
+
DescribeClusterParametersMessagePaginateTypeDef,
|
|
116
|
+
DescribeClusterSecurityGroupsMessagePaginateTypeDef,
|
|
117
|
+
DescribeClustersMessagePaginateTypeDef,
|
|
118
|
+
DescribeClusterSnapshotsMessagePaginateTypeDef,
|
|
119
|
+
DescribeClusterSubnetGroupsMessagePaginateTypeDef,
|
|
120
|
+
DescribeClusterTracksMessagePaginateTypeDef,
|
|
121
|
+
DescribeClusterVersionsMessagePaginateTypeDef,
|
|
122
|
+
DescribeCustomDomainAssociationsMessagePaginateTypeDef,
|
|
123
|
+
DescribeDataSharesForConsumerMessagePaginateTypeDef,
|
|
124
|
+
DescribeDataSharesForConsumerResultTypeDef,
|
|
125
|
+
DescribeDataSharesForProducerMessagePaginateTypeDef,
|
|
126
|
+
DescribeDataSharesForProducerResultTypeDef,
|
|
127
|
+
DescribeDataSharesMessagePaginateTypeDef,
|
|
128
|
+
DescribeDataSharesResultTypeDef,
|
|
129
|
+
DescribeDefaultClusterParametersMessagePaginateTypeDef,
|
|
130
|
+
DescribeDefaultClusterParametersResultTypeDef,
|
|
131
|
+
DescribeEndpointAccessMessagePaginateTypeDef,
|
|
132
|
+
DescribeEndpointAuthorizationMessagePaginateTypeDef,
|
|
133
|
+
DescribeEventsMessagePaginateTypeDef,
|
|
134
|
+
DescribeEventSubscriptionsMessagePaginateTypeDef,
|
|
135
|
+
DescribeHsmClientCertificatesMessagePaginateTypeDef,
|
|
136
|
+
DescribeHsmConfigurationsMessagePaginateTypeDef,
|
|
137
|
+
DescribeInboundIntegrationsMessagePaginateTypeDef,
|
|
138
|
+
DescribeIntegrationsMessagePaginateTypeDef,
|
|
139
|
+
DescribeNodeConfigurationOptionsMessagePaginateTypeDef,
|
|
140
|
+
DescribeOrderableClusterOptionsMessagePaginateTypeDef,
|
|
141
|
+
DescribeRedshiftIdcApplicationsMessagePaginateTypeDef,
|
|
142
|
+
DescribeRedshiftIdcApplicationsResultTypeDef,
|
|
143
|
+
DescribeReservedNodeExchangeStatusInputMessagePaginateTypeDef,
|
|
144
|
+
DescribeReservedNodeExchangeStatusOutputMessageTypeDef,
|
|
145
|
+
DescribeReservedNodeOfferingsMessagePaginateTypeDef,
|
|
146
|
+
DescribeReservedNodesMessagePaginateTypeDef,
|
|
147
|
+
DescribeScheduledActionsMessagePaginateTypeDef,
|
|
148
|
+
DescribeSnapshotCopyGrantsMessagePaginateTypeDef,
|
|
149
|
+
DescribeSnapshotSchedulesMessagePaginateTypeDef,
|
|
150
|
+
DescribeSnapshotSchedulesOutputMessageTypeDef,
|
|
151
|
+
DescribeTableRestoreStatusMessagePaginateTypeDef,
|
|
152
|
+
DescribeTagsMessagePaginateTypeDef,
|
|
153
|
+
DescribeUsageLimitsMessagePaginateTypeDef,
|
|
154
|
+
EndpointAccessListTypeDef,
|
|
155
|
+
EndpointAuthorizationListTypeDef,
|
|
156
|
+
EventsMessageTypeDef,
|
|
157
|
+
EventSubscriptionsMessageTypeDef,
|
|
158
|
+
GetReservedNodeExchangeConfigurationOptionsInputMessagePaginateTypeDef,
|
|
159
|
+
GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef,
|
|
160
|
+
GetReservedNodeExchangeOfferingsInputMessagePaginateTypeDef,
|
|
161
|
+
GetReservedNodeExchangeOfferingsOutputMessageTypeDef,
|
|
162
|
+
HsmClientCertificateMessageTypeDef,
|
|
163
|
+
HsmConfigurationMessageTypeDef,
|
|
164
|
+
InboundIntegrationsMessageTypeDef,
|
|
165
|
+
IntegrationsMessageTypeDef,
|
|
166
|
+
ListRecommendationsMessagePaginateTypeDef,
|
|
167
|
+
ListRecommendationsResultTypeDef,
|
|
168
|
+
NodeConfigurationOptionsMessageTypeDef,
|
|
169
|
+
OrderableClusterOptionsMessageTypeDef,
|
|
170
|
+
ReservedNodeOfferingsMessageTypeDef,
|
|
171
|
+
ReservedNodesMessageTypeDef,
|
|
172
|
+
ScheduledActionsMessageTypeDef,
|
|
173
|
+
SnapshotCopyGrantMessageTypeDef,
|
|
174
|
+
SnapshotMessageTypeDef,
|
|
175
|
+
TableRestoreStatusMessageTypeDef,
|
|
176
|
+
TaggedResourceListMessageTypeDef,
|
|
177
|
+
TrackListMessageTypeDef,
|
|
178
|
+
UsageLimitListTypeDef,
|
|
179
|
+
)
|
|
180
|
+
|
|
181
|
+
if sys.version_info >= (3, 12):
|
|
182
|
+
from typing import Unpack
|
|
183
|
+
else:
|
|
184
|
+
from typing_extensions import Unpack
|
|
185
|
+
|
|
186
|
+
__all__ = (
|
|
187
|
+
"DescribeClusterDbRevisionsPaginator",
|
|
188
|
+
"DescribeClusterParameterGroupsPaginator",
|
|
189
|
+
"DescribeClusterParametersPaginator",
|
|
190
|
+
"DescribeClusterSecurityGroupsPaginator",
|
|
191
|
+
"DescribeClusterSnapshotsPaginator",
|
|
192
|
+
"DescribeClusterSubnetGroupsPaginator",
|
|
193
|
+
"DescribeClusterTracksPaginator",
|
|
194
|
+
"DescribeClusterVersionsPaginator",
|
|
195
|
+
"DescribeClustersPaginator",
|
|
196
|
+
"DescribeCustomDomainAssociationsPaginator",
|
|
197
|
+
"DescribeDataSharesForConsumerPaginator",
|
|
198
|
+
"DescribeDataSharesForProducerPaginator",
|
|
199
|
+
"DescribeDataSharesPaginator",
|
|
200
|
+
"DescribeDefaultClusterParametersPaginator",
|
|
201
|
+
"DescribeEndpointAccessPaginator",
|
|
202
|
+
"DescribeEndpointAuthorizationPaginator",
|
|
203
|
+
"DescribeEventSubscriptionsPaginator",
|
|
204
|
+
"DescribeEventsPaginator",
|
|
205
|
+
"DescribeHsmClientCertificatesPaginator",
|
|
206
|
+
"DescribeHsmConfigurationsPaginator",
|
|
207
|
+
"DescribeInboundIntegrationsPaginator",
|
|
208
|
+
"DescribeIntegrationsPaginator",
|
|
209
|
+
"DescribeNodeConfigurationOptionsPaginator",
|
|
210
|
+
"DescribeOrderableClusterOptionsPaginator",
|
|
211
|
+
"DescribeRedshiftIdcApplicationsPaginator",
|
|
212
|
+
"DescribeReservedNodeExchangeStatusPaginator",
|
|
213
|
+
"DescribeReservedNodeOfferingsPaginator",
|
|
214
|
+
"DescribeReservedNodesPaginator",
|
|
215
|
+
"DescribeScheduledActionsPaginator",
|
|
216
|
+
"DescribeSnapshotCopyGrantsPaginator",
|
|
217
|
+
"DescribeSnapshotSchedulesPaginator",
|
|
218
|
+
"DescribeTableRestoreStatusPaginator",
|
|
219
|
+
"DescribeTagsPaginator",
|
|
220
|
+
"DescribeUsageLimitsPaginator",
|
|
221
|
+
"GetReservedNodeExchangeConfigurationOptionsPaginator",
|
|
222
|
+
"GetReservedNodeExchangeOfferingsPaginator",
|
|
223
|
+
"ListRecommendationsPaginator",
|
|
224
|
+
)
|
|
225
|
+
|
|
226
|
+
if TYPE_CHECKING:
|
|
227
|
+
_DescribeClusterDbRevisionsPaginatorBase = Paginator[ClusterDbRevisionsMessageTypeDef]
|
|
228
|
+
else:
|
|
229
|
+
_DescribeClusterDbRevisionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
230
|
+
|
|
231
|
+
class DescribeClusterDbRevisionsPaginator(_DescribeClusterDbRevisionsPaginatorBase):
|
|
232
|
+
"""
|
|
233
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterDbRevisions.html#Redshift.Paginator.DescribeClusterDbRevisions)
|
|
234
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclusterdbrevisionspaginator)
|
|
235
|
+
"""
|
|
236
|
+
def paginate( # type: ignore[override]
|
|
237
|
+
self, **kwargs: Unpack[DescribeClusterDbRevisionsMessagePaginateTypeDef]
|
|
238
|
+
) -> PageIterator[ClusterDbRevisionsMessageTypeDef]:
|
|
239
|
+
"""
|
|
240
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterDbRevisions.html#Redshift.Paginator.DescribeClusterDbRevisions.paginate)
|
|
241
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclusterdbrevisionspaginator)
|
|
242
|
+
"""
|
|
243
|
+
|
|
244
|
+
if TYPE_CHECKING:
|
|
245
|
+
_DescribeClusterParameterGroupsPaginatorBase = Paginator[ClusterParameterGroupsMessageTypeDef]
|
|
246
|
+
else:
|
|
247
|
+
_DescribeClusterParameterGroupsPaginatorBase = Paginator # type: ignore[assignment]
|
|
248
|
+
|
|
249
|
+
class DescribeClusterParameterGroupsPaginator(_DescribeClusterParameterGroupsPaginatorBase):
|
|
250
|
+
"""
|
|
251
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterParameterGroups.html#Redshift.Paginator.DescribeClusterParameterGroups)
|
|
252
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclusterparametergroupspaginator)
|
|
253
|
+
"""
|
|
254
|
+
def paginate( # type: ignore[override]
|
|
255
|
+
self, **kwargs: Unpack[DescribeClusterParameterGroupsMessagePaginateTypeDef]
|
|
256
|
+
) -> PageIterator[ClusterParameterGroupsMessageTypeDef]:
|
|
257
|
+
"""
|
|
258
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterParameterGroups.html#Redshift.Paginator.DescribeClusterParameterGroups.paginate)
|
|
259
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclusterparametergroupspaginator)
|
|
260
|
+
"""
|
|
261
|
+
|
|
262
|
+
if TYPE_CHECKING:
|
|
263
|
+
_DescribeClusterParametersPaginatorBase = Paginator[ClusterParameterGroupDetailsTypeDef]
|
|
264
|
+
else:
|
|
265
|
+
_DescribeClusterParametersPaginatorBase = Paginator # type: ignore[assignment]
|
|
266
|
+
|
|
267
|
+
class DescribeClusterParametersPaginator(_DescribeClusterParametersPaginatorBase):
|
|
268
|
+
"""
|
|
269
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterParameters.html#Redshift.Paginator.DescribeClusterParameters)
|
|
270
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclusterparameterspaginator)
|
|
271
|
+
"""
|
|
272
|
+
def paginate( # type: ignore[override]
|
|
273
|
+
self, **kwargs: Unpack[DescribeClusterParametersMessagePaginateTypeDef]
|
|
274
|
+
) -> PageIterator[ClusterParameterGroupDetailsTypeDef]:
|
|
275
|
+
"""
|
|
276
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterParameters.html#Redshift.Paginator.DescribeClusterParameters.paginate)
|
|
277
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclusterparameterspaginator)
|
|
278
|
+
"""
|
|
279
|
+
|
|
280
|
+
if TYPE_CHECKING:
|
|
281
|
+
_DescribeClusterSecurityGroupsPaginatorBase = Paginator[ClusterSecurityGroupMessageTypeDef]
|
|
282
|
+
else:
|
|
283
|
+
_DescribeClusterSecurityGroupsPaginatorBase = Paginator # type: ignore[assignment]
|
|
284
|
+
|
|
285
|
+
class DescribeClusterSecurityGroupsPaginator(_DescribeClusterSecurityGroupsPaginatorBase):
|
|
286
|
+
"""
|
|
287
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterSecurityGroups.html#Redshift.Paginator.DescribeClusterSecurityGroups)
|
|
288
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclustersecuritygroupspaginator)
|
|
289
|
+
"""
|
|
290
|
+
def paginate( # type: ignore[override]
|
|
291
|
+
self, **kwargs: Unpack[DescribeClusterSecurityGroupsMessagePaginateTypeDef]
|
|
292
|
+
) -> PageIterator[ClusterSecurityGroupMessageTypeDef]:
|
|
293
|
+
"""
|
|
294
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterSecurityGroups.html#Redshift.Paginator.DescribeClusterSecurityGroups.paginate)
|
|
295
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclustersecuritygroupspaginator)
|
|
296
|
+
"""
|
|
297
|
+
|
|
298
|
+
if TYPE_CHECKING:
|
|
299
|
+
_DescribeClusterSnapshotsPaginatorBase = Paginator[SnapshotMessageTypeDef]
|
|
300
|
+
else:
|
|
301
|
+
_DescribeClusterSnapshotsPaginatorBase = Paginator # type: ignore[assignment]
|
|
302
|
+
|
|
303
|
+
class DescribeClusterSnapshotsPaginator(_DescribeClusterSnapshotsPaginatorBase):
|
|
304
|
+
"""
|
|
305
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterSnapshots.html#Redshift.Paginator.DescribeClusterSnapshots)
|
|
306
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclustersnapshotspaginator)
|
|
307
|
+
"""
|
|
308
|
+
def paginate( # type: ignore[override]
|
|
309
|
+
self, **kwargs: Unpack[DescribeClusterSnapshotsMessagePaginateTypeDef]
|
|
310
|
+
) -> PageIterator[SnapshotMessageTypeDef]:
|
|
311
|
+
"""
|
|
312
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterSnapshots.html#Redshift.Paginator.DescribeClusterSnapshots.paginate)
|
|
313
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclustersnapshotspaginator)
|
|
314
|
+
"""
|
|
315
|
+
|
|
316
|
+
if TYPE_CHECKING:
|
|
317
|
+
_DescribeClusterSubnetGroupsPaginatorBase = Paginator[ClusterSubnetGroupMessageTypeDef]
|
|
318
|
+
else:
|
|
319
|
+
_DescribeClusterSubnetGroupsPaginatorBase = Paginator # type: ignore[assignment]
|
|
320
|
+
|
|
321
|
+
class DescribeClusterSubnetGroupsPaginator(_DescribeClusterSubnetGroupsPaginatorBase):
|
|
322
|
+
"""
|
|
323
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterSubnetGroups.html#Redshift.Paginator.DescribeClusterSubnetGroups)
|
|
324
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclustersubnetgroupspaginator)
|
|
325
|
+
"""
|
|
326
|
+
def paginate( # type: ignore[override]
|
|
327
|
+
self, **kwargs: Unpack[DescribeClusterSubnetGroupsMessagePaginateTypeDef]
|
|
328
|
+
) -> PageIterator[ClusterSubnetGroupMessageTypeDef]:
|
|
329
|
+
"""
|
|
330
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterSubnetGroups.html#Redshift.Paginator.DescribeClusterSubnetGroups.paginate)
|
|
331
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclustersubnetgroupspaginator)
|
|
332
|
+
"""
|
|
333
|
+
|
|
334
|
+
if TYPE_CHECKING:
|
|
335
|
+
_DescribeClusterTracksPaginatorBase = Paginator[TrackListMessageTypeDef]
|
|
336
|
+
else:
|
|
337
|
+
_DescribeClusterTracksPaginatorBase = Paginator # type: ignore[assignment]
|
|
338
|
+
|
|
339
|
+
class DescribeClusterTracksPaginator(_DescribeClusterTracksPaginatorBase):
|
|
340
|
+
"""
|
|
341
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterTracks.html#Redshift.Paginator.DescribeClusterTracks)
|
|
342
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclustertrackspaginator)
|
|
343
|
+
"""
|
|
344
|
+
def paginate( # type: ignore[override]
|
|
345
|
+
self, **kwargs: Unpack[DescribeClusterTracksMessagePaginateTypeDef]
|
|
346
|
+
) -> PageIterator[TrackListMessageTypeDef]:
|
|
347
|
+
"""
|
|
348
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterTracks.html#Redshift.Paginator.DescribeClusterTracks.paginate)
|
|
349
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclustertrackspaginator)
|
|
350
|
+
"""
|
|
351
|
+
|
|
352
|
+
if TYPE_CHECKING:
|
|
353
|
+
_DescribeClusterVersionsPaginatorBase = Paginator[ClusterVersionsMessageTypeDef]
|
|
354
|
+
else:
|
|
355
|
+
_DescribeClusterVersionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
356
|
+
|
|
357
|
+
class DescribeClusterVersionsPaginator(_DescribeClusterVersionsPaginatorBase):
|
|
358
|
+
"""
|
|
359
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterVersions.html#Redshift.Paginator.DescribeClusterVersions)
|
|
360
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclusterversionspaginator)
|
|
361
|
+
"""
|
|
362
|
+
def paginate( # type: ignore[override]
|
|
363
|
+
self, **kwargs: Unpack[DescribeClusterVersionsMessagePaginateTypeDef]
|
|
364
|
+
) -> PageIterator[ClusterVersionsMessageTypeDef]:
|
|
365
|
+
"""
|
|
366
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusterVersions.html#Redshift.Paginator.DescribeClusterVersions.paginate)
|
|
367
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclusterversionspaginator)
|
|
368
|
+
"""
|
|
369
|
+
|
|
370
|
+
if TYPE_CHECKING:
|
|
371
|
+
_DescribeClustersPaginatorBase = Paginator[ClustersMessageTypeDef]
|
|
372
|
+
else:
|
|
373
|
+
_DescribeClustersPaginatorBase = Paginator # type: ignore[assignment]
|
|
374
|
+
|
|
375
|
+
class DescribeClustersPaginator(_DescribeClustersPaginatorBase):
|
|
376
|
+
"""
|
|
377
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusters.html#Redshift.Paginator.DescribeClusters)
|
|
378
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclusterspaginator)
|
|
379
|
+
"""
|
|
380
|
+
def paginate( # type: ignore[override]
|
|
381
|
+
self, **kwargs: Unpack[DescribeClustersMessagePaginateTypeDef]
|
|
382
|
+
) -> PageIterator[ClustersMessageTypeDef]:
|
|
383
|
+
"""
|
|
384
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeClusters.html#Redshift.Paginator.DescribeClusters.paginate)
|
|
385
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeclusterspaginator)
|
|
386
|
+
"""
|
|
387
|
+
|
|
388
|
+
if TYPE_CHECKING:
|
|
389
|
+
_DescribeCustomDomainAssociationsPaginatorBase = Paginator[
|
|
390
|
+
CustomDomainAssociationsMessageTypeDef
|
|
391
|
+
]
|
|
392
|
+
else:
|
|
393
|
+
_DescribeCustomDomainAssociationsPaginatorBase = Paginator # type: ignore[assignment]
|
|
394
|
+
|
|
395
|
+
class DescribeCustomDomainAssociationsPaginator(_DescribeCustomDomainAssociationsPaginatorBase):
|
|
396
|
+
"""
|
|
397
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeCustomDomainAssociations.html#Redshift.Paginator.DescribeCustomDomainAssociations)
|
|
398
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describecustomdomainassociationspaginator)
|
|
399
|
+
"""
|
|
400
|
+
def paginate( # type: ignore[override]
|
|
401
|
+
self, **kwargs: Unpack[DescribeCustomDomainAssociationsMessagePaginateTypeDef]
|
|
402
|
+
) -> PageIterator[CustomDomainAssociationsMessageTypeDef]:
|
|
403
|
+
"""
|
|
404
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeCustomDomainAssociations.html#Redshift.Paginator.DescribeCustomDomainAssociations.paginate)
|
|
405
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describecustomdomainassociationspaginator)
|
|
406
|
+
"""
|
|
407
|
+
|
|
408
|
+
if TYPE_CHECKING:
|
|
409
|
+
_DescribeDataSharesForConsumerPaginatorBase = Paginator[
|
|
410
|
+
DescribeDataSharesForConsumerResultTypeDef
|
|
411
|
+
]
|
|
412
|
+
else:
|
|
413
|
+
_DescribeDataSharesForConsumerPaginatorBase = Paginator # type: ignore[assignment]
|
|
414
|
+
|
|
415
|
+
class DescribeDataSharesForConsumerPaginator(_DescribeDataSharesForConsumerPaginatorBase):
|
|
416
|
+
"""
|
|
417
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeDataSharesForConsumer.html#Redshift.Paginator.DescribeDataSharesForConsumer)
|
|
418
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describedatasharesforconsumerpaginator)
|
|
419
|
+
"""
|
|
420
|
+
def paginate( # type: ignore[override]
|
|
421
|
+
self, **kwargs: Unpack[DescribeDataSharesForConsumerMessagePaginateTypeDef]
|
|
422
|
+
) -> PageIterator[DescribeDataSharesForConsumerResultTypeDef]:
|
|
423
|
+
"""
|
|
424
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeDataSharesForConsumer.html#Redshift.Paginator.DescribeDataSharesForConsumer.paginate)
|
|
425
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describedatasharesforconsumerpaginator)
|
|
426
|
+
"""
|
|
427
|
+
|
|
428
|
+
if TYPE_CHECKING:
|
|
429
|
+
_DescribeDataSharesForProducerPaginatorBase = Paginator[
|
|
430
|
+
DescribeDataSharesForProducerResultTypeDef
|
|
431
|
+
]
|
|
432
|
+
else:
|
|
433
|
+
_DescribeDataSharesForProducerPaginatorBase = Paginator # type: ignore[assignment]
|
|
434
|
+
|
|
435
|
+
class DescribeDataSharesForProducerPaginator(_DescribeDataSharesForProducerPaginatorBase):
|
|
436
|
+
"""
|
|
437
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeDataSharesForProducer.html#Redshift.Paginator.DescribeDataSharesForProducer)
|
|
438
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describedatasharesforproducerpaginator)
|
|
439
|
+
"""
|
|
440
|
+
def paginate( # type: ignore[override]
|
|
441
|
+
self, **kwargs: Unpack[DescribeDataSharesForProducerMessagePaginateTypeDef]
|
|
442
|
+
) -> PageIterator[DescribeDataSharesForProducerResultTypeDef]:
|
|
443
|
+
"""
|
|
444
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeDataSharesForProducer.html#Redshift.Paginator.DescribeDataSharesForProducer.paginate)
|
|
445
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describedatasharesforproducerpaginator)
|
|
446
|
+
"""
|
|
447
|
+
|
|
448
|
+
if TYPE_CHECKING:
|
|
449
|
+
_DescribeDataSharesPaginatorBase = Paginator[DescribeDataSharesResultTypeDef]
|
|
450
|
+
else:
|
|
451
|
+
_DescribeDataSharesPaginatorBase = Paginator # type: ignore[assignment]
|
|
452
|
+
|
|
453
|
+
class DescribeDataSharesPaginator(_DescribeDataSharesPaginatorBase):
|
|
454
|
+
"""
|
|
455
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeDataShares.html#Redshift.Paginator.DescribeDataShares)
|
|
456
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describedatasharespaginator)
|
|
457
|
+
"""
|
|
458
|
+
def paginate( # type: ignore[override]
|
|
459
|
+
self, **kwargs: Unpack[DescribeDataSharesMessagePaginateTypeDef]
|
|
460
|
+
) -> PageIterator[DescribeDataSharesResultTypeDef]:
|
|
461
|
+
"""
|
|
462
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeDataShares.html#Redshift.Paginator.DescribeDataShares.paginate)
|
|
463
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describedatasharespaginator)
|
|
464
|
+
"""
|
|
465
|
+
|
|
466
|
+
if TYPE_CHECKING:
|
|
467
|
+
_DescribeDefaultClusterParametersPaginatorBase = Paginator[
|
|
468
|
+
DescribeDefaultClusterParametersResultTypeDef
|
|
469
|
+
]
|
|
470
|
+
else:
|
|
471
|
+
_DescribeDefaultClusterParametersPaginatorBase = Paginator # type: ignore[assignment]
|
|
472
|
+
|
|
473
|
+
class DescribeDefaultClusterParametersPaginator(_DescribeDefaultClusterParametersPaginatorBase):
|
|
474
|
+
"""
|
|
475
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeDefaultClusterParameters.html#Redshift.Paginator.DescribeDefaultClusterParameters)
|
|
476
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describedefaultclusterparameterspaginator)
|
|
477
|
+
"""
|
|
478
|
+
def paginate( # type: ignore[override]
|
|
479
|
+
self, **kwargs: Unpack[DescribeDefaultClusterParametersMessagePaginateTypeDef]
|
|
480
|
+
) -> PageIterator[DescribeDefaultClusterParametersResultTypeDef]:
|
|
481
|
+
"""
|
|
482
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeDefaultClusterParameters.html#Redshift.Paginator.DescribeDefaultClusterParameters.paginate)
|
|
483
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describedefaultclusterparameterspaginator)
|
|
484
|
+
"""
|
|
485
|
+
|
|
486
|
+
if TYPE_CHECKING:
|
|
487
|
+
_DescribeEndpointAccessPaginatorBase = Paginator[EndpointAccessListTypeDef]
|
|
488
|
+
else:
|
|
489
|
+
_DescribeEndpointAccessPaginatorBase = Paginator # type: ignore[assignment]
|
|
490
|
+
|
|
491
|
+
class DescribeEndpointAccessPaginator(_DescribeEndpointAccessPaginatorBase):
|
|
492
|
+
"""
|
|
493
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeEndpointAccess.html#Redshift.Paginator.DescribeEndpointAccess)
|
|
494
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeendpointaccesspaginator)
|
|
495
|
+
"""
|
|
496
|
+
def paginate( # type: ignore[override]
|
|
497
|
+
self, **kwargs: Unpack[DescribeEndpointAccessMessagePaginateTypeDef]
|
|
498
|
+
) -> PageIterator[EndpointAccessListTypeDef]:
|
|
499
|
+
"""
|
|
500
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeEndpointAccess.html#Redshift.Paginator.DescribeEndpointAccess.paginate)
|
|
501
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeendpointaccesspaginator)
|
|
502
|
+
"""
|
|
503
|
+
|
|
504
|
+
if TYPE_CHECKING:
|
|
505
|
+
_DescribeEndpointAuthorizationPaginatorBase = Paginator[EndpointAuthorizationListTypeDef]
|
|
506
|
+
else:
|
|
507
|
+
_DescribeEndpointAuthorizationPaginatorBase = Paginator # type: ignore[assignment]
|
|
508
|
+
|
|
509
|
+
class DescribeEndpointAuthorizationPaginator(_DescribeEndpointAuthorizationPaginatorBase):
|
|
510
|
+
"""
|
|
511
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeEndpointAuthorization.html#Redshift.Paginator.DescribeEndpointAuthorization)
|
|
512
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeendpointauthorizationpaginator)
|
|
513
|
+
"""
|
|
514
|
+
def paginate( # type: ignore[override]
|
|
515
|
+
self, **kwargs: Unpack[DescribeEndpointAuthorizationMessagePaginateTypeDef]
|
|
516
|
+
) -> PageIterator[EndpointAuthorizationListTypeDef]:
|
|
517
|
+
"""
|
|
518
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeEndpointAuthorization.html#Redshift.Paginator.DescribeEndpointAuthorization.paginate)
|
|
519
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeendpointauthorizationpaginator)
|
|
520
|
+
"""
|
|
521
|
+
|
|
522
|
+
if TYPE_CHECKING:
|
|
523
|
+
_DescribeEventSubscriptionsPaginatorBase = Paginator[EventSubscriptionsMessageTypeDef]
|
|
524
|
+
else:
|
|
525
|
+
_DescribeEventSubscriptionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
526
|
+
|
|
527
|
+
class DescribeEventSubscriptionsPaginator(_DescribeEventSubscriptionsPaginatorBase):
|
|
528
|
+
"""
|
|
529
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeEventSubscriptions.html#Redshift.Paginator.DescribeEventSubscriptions)
|
|
530
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeeventsubscriptionspaginator)
|
|
531
|
+
"""
|
|
532
|
+
def paginate( # type: ignore[override]
|
|
533
|
+
self, **kwargs: Unpack[DescribeEventSubscriptionsMessagePaginateTypeDef]
|
|
534
|
+
) -> PageIterator[EventSubscriptionsMessageTypeDef]:
|
|
535
|
+
"""
|
|
536
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeEventSubscriptions.html#Redshift.Paginator.DescribeEventSubscriptions.paginate)
|
|
537
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeeventsubscriptionspaginator)
|
|
538
|
+
"""
|
|
539
|
+
|
|
540
|
+
if TYPE_CHECKING:
|
|
541
|
+
_DescribeEventsPaginatorBase = Paginator[EventsMessageTypeDef]
|
|
542
|
+
else:
|
|
543
|
+
_DescribeEventsPaginatorBase = Paginator # type: ignore[assignment]
|
|
544
|
+
|
|
545
|
+
class DescribeEventsPaginator(_DescribeEventsPaginatorBase):
|
|
546
|
+
"""
|
|
547
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeEvents.html#Redshift.Paginator.DescribeEvents)
|
|
548
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeeventspaginator)
|
|
549
|
+
"""
|
|
550
|
+
def paginate( # type: ignore[override]
|
|
551
|
+
self, **kwargs: Unpack[DescribeEventsMessagePaginateTypeDef]
|
|
552
|
+
) -> PageIterator[EventsMessageTypeDef]:
|
|
553
|
+
"""
|
|
554
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeEvents.html#Redshift.Paginator.DescribeEvents.paginate)
|
|
555
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeeventspaginator)
|
|
556
|
+
"""
|
|
557
|
+
|
|
558
|
+
if TYPE_CHECKING:
|
|
559
|
+
_DescribeHsmClientCertificatesPaginatorBase = Paginator[HsmClientCertificateMessageTypeDef]
|
|
560
|
+
else:
|
|
561
|
+
_DescribeHsmClientCertificatesPaginatorBase = Paginator # type: ignore[assignment]
|
|
562
|
+
|
|
563
|
+
class DescribeHsmClientCertificatesPaginator(_DescribeHsmClientCertificatesPaginatorBase):
|
|
564
|
+
"""
|
|
565
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeHsmClientCertificates.html#Redshift.Paginator.DescribeHsmClientCertificates)
|
|
566
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describehsmclientcertificatespaginator)
|
|
567
|
+
"""
|
|
568
|
+
def paginate( # type: ignore[override]
|
|
569
|
+
self, **kwargs: Unpack[DescribeHsmClientCertificatesMessagePaginateTypeDef]
|
|
570
|
+
) -> PageIterator[HsmClientCertificateMessageTypeDef]:
|
|
571
|
+
"""
|
|
572
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeHsmClientCertificates.html#Redshift.Paginator.DescribeHsmClientCertificates.paginate)
|
|
573
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describehsmclientcertificatespaginator)
|
|
574
|
+
"""
|
|
575
|
+
|
|
576
|
+
if TYPE_CHECKING:
|
|
577
|
+
_DescribeHsmConfigurationsPaginatorBase = Paginator[HsmConfigurationMessageTypeDef]
|
|
578
|
+
else:
|
|
579
|
+
_DescribeHsmConfigurationsPaginatorBase = Paginator # type: ignore[assignment]
|
|
580
|
+
|
|
581
|
+
class DescribeHsmConfigurationsPaginator(_DescribeHsmConfigurationsPaginatorBase):
|
|
582
|
+
"""
|
|
583
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeHsmConfigurations.html#Redshift.Paginator.DescribeHsmConfigurations)
|
|
584
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describehsmconfigurationspaginator)
|
|
585
|
+
"""
|
|
586
|
+
def paginate( # type: ignore[override]
|
|
587
|
+
self, **kwargs: Unpack[DescribeHsmConfigurationsMessagePaginateTypeDef]
|
|
588
|
+
) -> PageIterator[HsmConfigurationMessageTypeDef]:
|
|
589
|
+
"""
|
|
590
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeHsmConfigurations.html#Redshift.Paginator.DescribeHsmConfigurations.paginate)
|
|
591
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describehsmconfigurationspaginator)
|
|
592
|
+
"""
|
|
593
|
+
|
|
594
|
+
if TYPE_CHECKING:
|
|
595
|
+
_DescribeInboundIntegrationsPaginatorBase = Paginator[InboundIntegrationsMessageTypeDef]
|
|
596
|
+
else:
|
|
597
|
+
_DescribeInboundIntegrationsPaginatorBase = Paginator # type: ignore[assignment]
|
|
598
|
+
|
|
599
|
+
class DescribeInboundIntegrationsPaginator(_DescribeInboundIntegrationsPaginatorBase):
|
|
600
|
+
"""
|
|
601
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeInboundIntegrations.html#Redshift.Paginator.DescribeInboundIntegrations)
|
|
602
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeinboundintegrationspaginator)
|
|
603
|
+
"""
|
|
604
|
+
def paginate( # type: ignore[override]
|
|
605
|
+
self, **kwargs: Unpack[DescribeInboundIntegrationsMessagePaginateTypeDef]
|
|
606
|
+
) -> PageIterator[InboundIntegrationsMessageTypeDef]:
|
|
607
|
+
"""
|
|
608
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeInboundIntegrations.html#Redshift.Paginator.DescribeInboundIntegrations.paginate)
|
|
609
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeinboundintegrationspaginator)
|
|
610
|
+
"""
|
|
611
|
+
|
|
612
|
+
if TYPE_CHECKING:
|
|
613
|
+
_DescribeIntegrationsPaginatorBase = Paginator[IntegrationsMessageTypeDef]
|
|
614
|
+
else:
|
|
615
|
+
_DescribeIntegrationsPaginatorBase = Paginator # type: ignore[assignment]
|
|
616
|
+
|
|
617
|
+
class DescribeIntegrationsPaginator(_DescribeIntegrationsPaginatorBase):
|
|
618
|
+
"""
|
|
619
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeIntegrations.html#Redshift.Paginator.DescribeIntegrations)
|
|
620
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeintegrationspaginator)
|
|
621
|
+
"""
|
|
622
|
+
def paginate( # type: ignore[override]
|
|
623
|
+
self, **kwargs: Unpack[DescribeIntegrationsMessagePaginateTypeDef]
|
|
624
|
+
) -> PageIterator[IntegrationsMessageTypeDef]:
|
|
625
|
+
"""
|
|
626
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeIntegrations.html#Redshift.Paginator.DescribeIntegrations.paginate)
|
|
627
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeintegrationspaginator)
|
|
628
|
+
"""
|
|
629
|
+
|
|
630
|
+
if TYPE_CHECKING:
|
|
631
|
+
_DescribeNodeConfigurationOptionsPaginatorBase = Paginator[
|
|
632
|
+
NodeConfigurationOptionsMessageTypeDef
|
|
633
|
+
]
|
|
634
|
+
else:
|
|
635
|
+
_DescribeNodeConfigurationOptionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
636
|
+
|
|
637
|
+
class DescribeNodeConfigurationOptionsPaginator(_DescribeNodeConfigurationOptionsPaginatorBase):
|
|
638
|
+
"""
|
|
639
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeNodeConfigurationOptions.html#Redshift.Paginator.DescribeNodeConfigurationOptions)
|
|
640
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describenodeconfigurationoptionspaginator)
|
|
641
|
+
"""
|
|
642
|
+
def paginate( # type: ignore[override]
|
|
643
|
+
self, **kwargs: Unpack[DescribeNodeConfigurationOptionsMessagePaginateTypeDef]
|
|
644
|
+
) -> PageIterator[NodeConfigurationOptionsMessageTypeDef]:
|
|
645
|
+
"""
|
|
646
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeNodeConfigurationOptions.html#Redshift.Paginator.DescribeNodeConfigurationOptions.paginate)
|
|
647
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describenodeconfigurationoptionspaginator)
|
|
648
|
+
"""
|
|
649
|
+
|
|
650
|
+
if TYPE_CHECKING:
|
|
651
|
+
_DescribeOrderableClusterOptionsPaginatorBase = Paginator[OrderableClusterOptionsMessageTypeDef]
|
|
652
|
+
else:
|
|
653
|
+
_DescribeOrderableClusterOptionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
654
|
+
|
|
655
|
+
class DescribeOrderableClusterOptionsPaginator(_DescribeOrderableClusterOptionsPaginatorBase):
|
|
656
|
+
"""
|
|
657
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeOrderableClusterOptions.html#Redshift.Paginator.DescribeOrderableClusterOptions)
|
|
658
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeorderableclusteroptionspaginator)
|
|
659
|
+
"""
|
|
660
|
+
def paginate( # type: ignore[override]
|
|
661
|
+
self, **kwargs: Unpack[DescribeOrderableClusterOptionsMessagePaginateTypeDef]
|
|
662
|
+
) -> PageIterator[OrderableClusterOptionsMessageTypeDef]:
|
|
663
|
+
"""
|
|
664
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeOrderableClusterOptions.html#Redshift.Paginator.DescribeOrderableClusterOptions.paginate)
|
|
665
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeorderableclusteroptionspaginator)
|
|
666
|
+
"""
|
|
667
|
+
|
|
668
|
+
if TYPE_CHECKING:
|
|
669
|
+
_DescribeRedshiftIdcApplicationsPaginatorBase = Paginator[
|
|
670
|
+
DescribeRedshiftIdcApplicationsResultTypeDef
|
|
671
|
+
]
|
|
672
|
+
else:
|
|
673
|
+
_DescribeRedshiftIdcApplicationsPaginatorBase = Paginator # type: ignore[assignment]
|
|
674
|
+
|
|
675
|
+
class DescribeRedshiftIdcApplicationsPaginator(_DescribeRedshiftIdcApplicationsPaginatorBase):
|
|
676
|
+
"""
|
|
677
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeRedshiftIdcApplications.html#Redshift.Paginator.DescribeRedshiftIdcApplications)
|
|
678
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeredshiftidcapplicationspaginator)
|
|
679
|
+
"""
|
|
680
|
+
def paginate( # type: ignore[override]
|
|
681
|
+
self, **kwargs: Unpack[DescribeRedshiftIdcApplicationsMessagePaginateTypeDef]
|
|
682
|
+
) -> PageIterator[DescribeRedshiftIdcApplicationsResultTypeDef]:
|
|
683
|
+
"""
|
|
684
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeRedshiftIdcApplications.html#Redshift.Paginator.DescribeRedshiftIdcApplications.paginate)
|
|
685
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeredshiftidcapplicationspaginator)
|
|
686
|
+
"""
|
|
687
|
+
|
|
688
|
+
if TYPE_CHECKING:
|
|
689
|
+
_DescribeReservedNodeExchangeStatusPaginatorBase = Paginator[
|
|
690
|
+
DescribeReservedNodeExchangeStatusOutputMessageTypeDef
|
|
691
|
+
]
|
|
692
|
+
else:
|
|
693
|
+
_DescribeReservedNodeExchangeStatusPaginatorBase = Paginator # type: ignore[assignment]
|
|
694
|
+
|
|
695
|
+
class DescribeReservedNodeExchangeStatusPaginator(_DescribeReservedNodeExchangeStatusPaginatorBase):
|
|
696
|
+
"""
|
|
697
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeReservedNodeExchangeStatus.html#Redshift.Paginator.DescribeReservedNodeExchangeStatus)
|
|
698
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describereservednodeexchangestatuspaginator)
|
|
699
|
+
"""
|
|
700
|
+
def paginate( # type: ignore[override]
|
|
701
|
+
self, **kwargs: Unpack[DescribeReservedNodeExchangeStatusInputMessagePaginateTypeDef]
|
|
702
|
+
) -> PageIterator[DescribeReservedNodeExchangeStatusOutputMessageTypeDef]:
|
|
703
|
+
"""
|
|
704
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeReservedNodeExchangeStatus.html#Redshift.Paginator.DescribeReservedNodeExchangeStatus.paginate)
|
|
705
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describereservednodeexchangestatuspaginator)
|
|
706
|
+
"""
|
|
707
|
+
|
|
708
|
+
if TYPE_CHECKING:
|
|
709
|
+
_DescribeReservedNodeOfferingsPaginatorBase = Paginator[ReservedNodeOfferingsMessageTypeDef]
|
|
710
|
+
else:
|
|
711
|
+
_DescribeReservedNodeOfferingsPaginatorBase = Paginator # type: ignore[assignment]
|
|
712
|
+
|
|
713
|
+
class DescribeReservedNodeOfferingsPaginator(_DescribeReservedNodeOfferingsPaginatorBase):
|
|
714
|
+
"""
|
|
715
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeReservedNodeOfferings.html#Redshift.Paginator.DescribeReservedNodeOfferings)
|
|
716
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describereservednodeofferingspaginator)
|
|
717
|
+
"""
|
|
718
|
+
def paginate( # type: ignore[override]
|
|
719
|
+
self, **kwargs: Unpack[DescribeReservedNodeOfferingsMessagePaginateTypeDef]
|
|
720
|
+
) -> PageIterator[ReservedNodeOfferingsMessageTypeDef]:
|
|
721
|
+
"""
|
|
722
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeReservedNodeOfferings.html#Redshift.Paginator.DescribeReservedNodeOfferings.paginate)
|
|
723
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describereservednodeofferingspaginator)
|
|
724
|
+
"""
|
|
725
|
+
|
|
726
|
+
if TYPE_CHECKING:
|
|
727
|
+
_DescribeReservedNodesPaginatorBase = Paginator[ReservedNodesMessageTypeDef]
|
|
728
|
+
else:
|
|
729
|
+
_DescribeReservedNodesPaginatorBase = Paginator # type: ignore[assignment]
|
|
730
|
+
|
|
731
|
+
class DescribeReservedNodesPaginator(_DescribeReservedNodesPaginatorBase):
|
|
732
|
+
"""
|
|
733
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeReservedNodes.html#Redshift.Paginator.DescribeReservedNodes)
|
|
734
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describereservednodespaginator)
|
|
735
|
+
"""
|
|
736
|
+
def paginate( # type: ignore[override]
|
|
737
|
+
self, **kwargs: Unpack[DescribeReservedNodesMessagePaginateTypeDef]
|
|
738
|
+
) -> PageIterator[ReservedNodesMessageTypeDef]:
|
|
739
|
+
"""
|
|
740
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeReservedNodes.html#Redshift.Paginator.DescribeReservedNodes.paginate)
|
|
741
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describereservednodespaginator)
|
|
742
|
+
"""
|
|
743
|
+
|
|
744
|
+
if TYPE_CHECKING:
|
|
745
|
+
_DescribeScheduledActionsPaginatorBase = Paginator[ScheduledActionsMessageTypeDef]
|
|
746
|
+
else:
|
|
747
|
+
_DescribeScheduledActionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
748
|
+
|
|
749
|
+
class DescribeScheduledActionsPaginator(_DescribeScheduledActionsPaginatorBase):
|
|
750
|
+
"""
|
|
751
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeScheduledActions.html#Redshift.Paginator.DescribeScheduledActions)
|
|
752
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describescheduledactionspaginator)
|
|
753
|
+
"""
|
|
754
|
+
def paginate( # type: ignore[override]
|
|
755
|
+
self, **kwargs: Unpack[DescribeScheduledActionsMessagePaginateTypeDef]
|
|
756
|
+
) -> PageIterator[ScheduledActionsMessageTypeDef]:
|
|
757
|
+
"""
|
|
758
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeScheduledActions.html#Redshift.Paginator.DescribeScheduledActions.paginate)
|
|
759
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describescheduledactionspaginator)
|
|
760
|
+
"""
|
|
761
|
+
|
|
762
|
+
if TYPE_CHECKING:
|
|
763
|
+
_DescribeSnapshotCopyGrantsPaginatorBase = Paginator[SnapshotCopyGrantMessageTypeDef]
|
|
764
|
+
else:
|
|
765
|
+
_DescribeSnapshotCopyGrantsPaginatorBase = Paginator # type: ignore[assignment]
|
|
766
|
+
|
|
767
|
+
class DescribeSnapshotCopyGrantsPaginator(_DescribeSnapshotCopyGrantsPaginatorBase):
|
|
768
|
+
"""
|
|
769
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeSnapshotCopyGrants.html#Redshift.Paginator.DescribeSnapshotCopyGrants)
|
|
770
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describesnapshotcopygrantspaginator)
|
|
771
|
+
"""
|
|
772
|
+
def paginate( # type: ignore[override]
|
|
773
|
+
self, **kwargs: Unpack[DescribeSnapshotCopyGrantsMessagePaginateTypeDef]
|
|
774
|
+
) -> PageIterator[SnapshotCopyGrantMessageTypeDef]:
|
|
775
|
+
"""
|
|
776
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeSnapshotCopyGrants.html#Redshift.Paginator.DescribeSnapshotCopyGrants.paginate)
|
|
777
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describesnapshotcopygrantspaginator)
|
|
778
|
+
"""
|
|
779
|
+
|
|
780
|
+
if TYPE_CHECKING:
|
|
781
|
+
_DescribeSnapshotSchedulesPaginatorBase = Paginator[
|
|
782
|
+
DescribeSnapshotSchedulesOutputMessageTypeDef
|
|
783
|
+
]
|
|
784
|
+
else:
|
|
785
|
+
_DescribeSnapshotSchedulesPaginatorBase = Paginator # type: ignore[assignment]
|
|
786
|
+
|
|
787
|
+
class DescribeSnapshotSchedulesPaginator(_DescribeSnapshotSchedulesPaginatorBase):
|
|
788
|
+
"""
|
|
789
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeSnapshotSchedules.html#Redshift.Paginator.DescribeSnapshotSchedules)
|
|
790
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describesnapshotschedulespaginator)
|
|
791
|
+
"""
|
|
792
|
+
def paginate( # type: ignore[override]
|
|
793
|
+
self, **kwargs: Unpack[DescribeSnapshotSchedulesMessagePaginateTypeDef]
|
|
794
|
+
) -> PageIterator[DescribeSnapshotSchedulesOutputMessageTypeDef]:
|
|
795
|
+
"""
|
|
796
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeSnapshotSchedules.html#Redshift.Paginator.DescribeSnapshotSchedules.paginate)
|
|
797
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describesnapshotschedulespaginator)
|
|
798
|
+
"""
|
|
799
|
+
|
|
800
|
+
if TYPE_CHECKING:
|
|
801
|
+
_DescribeTableRestoreStatusPaginatorBase = Paginator[TableRestoreStatusMessageTypeDef]
|
|
802
|
+
else:
|
|
803
|
+
_DescribeTableRestoreStatusPaginatorBase = Paginator # type: ignore[assignment]
|
|
804
|
+
|
|
805
|
+
class DescribeTableRestoreStatusPaginator(_DescribeTableRestoreStatusPaginatorBase):
|
|
806
|
+
"""
|
|
807
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeTableRestoreStatus.html#Redshift.Paginator.DescribeTableRestoreStatus)
|
|
808
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describetablerestorestatuspaginator)
|
|
809
|
+
"""
|
|
810
|
+
def paginate( # type: ignore[override]
|
|
811
|
+
self, **kwargs: Unpack[DescribeTableRestoreStatusMessagePaginateTypeDef]
|
|
812
|
+
) -> PageIterator[TableRestoreStatusMessageTypeDef]:
|
|
813
|
+
"""
|
|
814
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeTableRestoreStatus.html#Redshift.Paginator.DescribeTableRestoreStatus.paginate)
|
|
815
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describetablerestorestatuspaginator)
|
|
816
|
+
"""
|
|
817
|
+
|
|
818
|
+
if TYPE_CHECKING:
|
|
819
|
+
_DescribeTagsPaginatorBase = Paginator[TaggedResourceListMessageTypeDef]
|
|
820
|
+
else:
|
|
821
|
+
_DescribeTagsPaginatorBase = Paginator # type: ignore[assignment]
|
|
822
|
+
|
|
823
|
+
class DescribeTagsPaginator(_DescribeTagsPaginatorBase):
|
|
824
|
+
"""
|
|
825
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeTags.html#Redshift.Paginator.DescribeTags)
|
|
826
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describetagspaginator)
|
|
827
|
+
"""
|
|
828
|
+
def paginate( # type: ignore[override]
|
|
829
|
+
self, **kwargs: Unpack[DescribeTagsMessagePaginateTypeDef]
|
|
830
|
+
) -> PageIterator[TaggedResourceListMessageTypeDef]:
|
|
831
|
+
"""
|
|
832
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeTags.html#Redshift.Paginator.DescribeTags.paginate)
|
|
833
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describetagspaginator)
|
|
834
|
+
"""
|
|
835
|
+
|
|
836
|
+
if TYPE_CHECKING:
|
|
837
|
+
_DescribeUsageLimitsPaginatorBase = Paginator[UsageLimitListTypeDef]
|
|
838
|
+
else:
|
|
839
|
+
_DescribeUsageLimitsPaginatorBase = Paginator # type: ignore[assignment]
|
|
840
|
+
|
|
841
|
+
class DescribeUsageLimitsPaginator(_DescribeUsageLimitsPaginatorBase):
|
|
842
|
+
"""
|
|
843
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeUsageLimits.html#Redshift.Paginator.DescribeUsageLimits)
|
|
844
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeusagelimitspaginator)
|
|
845
|
+
"""
|
|
846
|
+
def paginate( # type: ignore[override]
|
|
847
|
+
self, **kwargs: Unpack[DescribeUsageLimitsMessagePaginateTypeDef]
|
|
848
|
+
) -> PageIterator[UsageLimitListTypeDef]:
|
|
849
|
+
"""
|
|
850
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/DescribeUsageLimits.html#Redshift.Paginator.DescribeUsageLimits.paginate)
|
|
851
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#describeusagelimitspaginator)
|
|
852
|
+
"""
|
|
853
|
+
|
|
854
|
+
if TYPE_CHECKING:
|
|
855
|
+
_GetReservedNodeExchangeConfigurationOptionsPaginatorBase = Paginator[
|
|
856
|
+
GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef
|
|
857
|
+
]
|
|
858
|
+
else:
|
|
859
|
+
_GetReservedNodeExchangeConfigurationOptionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
860
|
+
|
|
861
|
+
class GetReservedNodeExchangeConfigurationOptionsPaginator(
|
|
862
|
+
_GetReservedNodeExchangeConfigurationOptionsPaginatorBase
|
|
863
|
+
):
|
|
864
|
+
"""
|
|
865
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/GetReservedNodeExchangeConfigurationOptions.html#Redshift.Paginator.GetReservedNodeExchangeConfigurationOptions)
|
|
866
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#getreservednodeexchangeconfigurationoptionspaginator)
|
|
867
|
+
"""
|
|
868
|
+
def paginate( # type: ignore[override]
|
|
869
|
+
self,
|
|
870
|
+
**kwargs: Unpack[GetReservedNodeExchangeConfigurationOptionsInputMessagePaginateTypeDef],
|
|
871
|
+
) -> PageIterator[GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef]:
|
|
872
|
+
"""
|
|
873
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/GetReservedNodeExchangeConfigurationOptions.html#Redshift.Paginator.GetReservedNodeExchangeConfigurationOptions.paginate)
|
|
874
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#getreservednodeexchangeconfigurationoptionspaginator)
|
|
875
|
+
"""
|
|
876
|
+
|
|
877
|
+
if TYPE_CHECKING:
|
|
878
|
+
_GetReservedNodeExchangeOfferingsPaginatorBase = Paginator[
|
|
879
|
+
GetReservedNodeExchangeOfferingsOutputMessageTypeDef
|
|
880
|
+
]
|
|
881
|
+
else:
|
|
882
|
+
_GetReservedNodeExchangeOfferingsPaginatorBase = Paginator # type: ignore[assignment]
|
|
883
|
+
|
|
884
|
+
class GetReservedNodeExchangeOfferingsPaginator(_GetReservedNodeExchangeOfferingsPaginatorBase):
|
|
885
|
+
"""
|
|
886
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/GetReservedNodeExchangeOfferings.html#Redshift.Paginator.GetReservedNodeExchangeOfferings)
|
|
887
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#getreservednodeexchangeofferingspaginator)
|
|
888
|
+
"""
|
|
889
|
+
def paginate( # type: ignore[override]
|
|
890
|
+
self, **kwargs: Unpack[GetReservedNodeExchangeOfferingsInputMessagePaginateTypeDef]
|
|
891
|
+
) -> PageIterator[GetReservedNodeExchangeOfferingsOutputMessageTypeDef]:
|
|
892
|
+
"""
|
|
893
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/GetReservedNodeExchangeOfferings.html#Redshift.Paginator.GetReservedNodeExchangeOfferings.paginate)
|
|
894
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#getreservednodeexchangeofferingspaginator)
|
|
895
|
+
"""
|
|
896
|
+
|
|
897
|
+
if TYPE_CHECKING:
|
|
898
|
+
_ListRecommendationsPaginatorBase = Paginator[ListRecommendationsResultTypeDef]
|
|
899
|
+
else:
|
|
900
|
+
_ListRecommendationsPaginatorBase = Paginator # type: ignore[assignment]
|
|
901
|
+
|
|
902
|
+
class ListRecommendationsPaginator(_ListRecommendationsPaginatorBase):
|
|
903
|
+
"""
|
|
904
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/ListRecommendations.html#Redshift.Paginator.ListRecommendations)
|
|
905
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#listrecommendationspaginator)
|
|
906
|
+
"""
|
|
907
|
+
def paginate( # type: ignore[override]
|
|
908
|
+
self, **kwargs: Unpack[ListRecommendationsMessagePaginateTypeDef]
|
|
909
|
+
) -> PageIterator[ListRecommendationsResultTypeDef]:
|
|
910
|
+
"""
|
|
911
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/paginator/ListRecommendations.html#Redshift.Paginator.ListRecommendations.paginate)
|
|
912
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/paginators/#listrecommendationspaginator)
|
|
913
|
+
"""
|