types-boto3-redshift 1.35.74__py3-none-any.whl → 1.35.97__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 +1 -1
- types_boto3_redshift/__init__.pyi +1 -1
- types_boto3_redshift/__main__.py +9 -8
- types_boto3_redshift/client.py +108 -101
- types_boto3_redshift/client.pyi +108 -100
- types_boto3_redshift/literals.py +6 -4
- types_boto3_redshift/literals.pyi +6 -4
- types_boto3_redshift/paginator.py +432 -263
- types_boto3_redshift/paginator.pyi +396 -262
- types_boto3_redshift/type_defs.py +89 -117
- types_boto3_redshift/type_defs.pyi +89 -115
- types_boto3_redshift/version.py +2 -2
- types_boto3_redshift/waiter.py +17 -11
- types_boto3_redshift/waiter.pyi +17 -11
- {types_boto3_redshift-1.35.74.dist-info → types_boto3_redshift-1.35.97.dist-info}/LICENSE +1 -1
- {types_boto3_redshift-1.35.74.dist-info → types_boto3_redshift-1.35.97.dist-info}/METADATA +35 -9
- types_boto3_redshift-1.35.97.dist-info/RECORD +20 -0
- {types_boto3_redshift-1.35.74.dist-info → types_boto3_redshift-1.35.97.dist-info}/WHEEL +1 -1
- types_boto3_redshift-1.35.74.dist-info/RECORD +0 -20
- {types_boto3_redshift-1.35.74.dist-info → types_boto3_redshift-1.35.97.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for redshift service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/type_defs/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,12 +11,14 @@ Usage::
|
|
|
11
11
|
data: AcceptReservedNodeExchangeInputMessageRequestTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import sys
|
|
18
20
|
from datetime import datetime
|
|
19
|
-
from typing import
|
|
21
|
+
from typing import Union
|
|
20
22
|
|
|
21
23
|
from .literals import (
|
|
22
24
|
ActionTypeType,
|
|
@@ -55,6 +57,12 @@ from .literals import (
|
|
|
55
57
|
ZeroETLIntegrationStatusType,
|
|
56
58
|
)
|
|
57
59
|
|
|
60
|
+
if sys.version_info >= (3, 9):
|
|
61
|
+
from builtins import dict as Dict
|
|
62
|
+
from builtins import list as List
|
|
63
|
+
from collections.abc import Mapping, Sequence
|
|
64
|
+
else:
|
|
65
|
+
from typing import Dict, List, Mapping, Sequence
|
|
58
66
|
if sys.version_info >= (3, 12):
|
|
59
67
|
from typing import Literal, NotRequired, TypedDict
|
|
60
68
|
else:
|
|
@@ -179,90 +187,88 @@ __all__ = (
|
|
|
179
187
|
"DescribeAccountAttributesMessageRequestTypeDef",
|
|
180
188
|
"DescribeAuthenticationProfilesMessageRequestTypeDef",
|
|
181
189
|
"DescribeAuthenticationProfilesResultTypeDef",
|
|
182
|
-
"
|
|
190
|
+
"DescribeClusterDbRevisionsMessagePaginateTypeDef",
|
|
183
191
|
"DescribeClusterDbRevisionsMessageRequestTypeDef",
|
|
184
|
-
"
|
|
192
|
+
"DescribeClusterParameterGroupsMessagePaginateTypeDef",
|
|
185
193
|
"DescribeClusterParameterGroupsMessageRequestTypeDef",
|
|
186
|
-
"
|
|
194
|
+
"DescribeClusterParametersMessagePaginateTypeDef",
|
|
187
195
|
"DescribeClusterParametersMessageRequestTypeDef",
|
|
188
|
-
"
|
|
196
|
+
"DescribeClusterSecurityGroupsMessagePaginateTypeDef",
|
|
189
197
|
"DescribeClusterSecurityGroupsMessageRequestTypeDef",
|
|
190
|
-
"
|
|
198
|
+
"DescribeClusterSnapshotsMessagePaginateTypeDef",
|
|
191
199
|
"DescribeClusterSnapshotsMessageRequestTypeDef",
|
|
192
|
-
"
|
|
193
|
-
"
|
|
200
|
+
"DescribeClusterSnapshotsMessageWaitTypeDef",
|
|
201
|
+
"DescribeClusterSubnetGroupsMessagePaginateTypeDef",
|
|
194
202
|
"DescribeClusterSubnetGroupsMessageRequestTypeDef",
|
|
195
|
-
"
|
|
203
|
+
"DescribeClusterTracksMessagePaginateTypeDef",
|
|
196
204
|
"DescribeClusterTracksMessageRequestTypeDef",
|
|
197
|
-
"
|
|
205
|
+
"DescribeClusterVersionsMessagePaginateTypeDef",
|
|
198
206
|
"DescribeClusterVersionsMessageRequestTypeDef",
|
|
199
|
-
"
|
|
200
|
-
"DescribeClustersMessageClusterDeletedWaitTypeDef",
|
|
201
|
-
"DescribeClustersMessageClusterRestoredWaitTypeDef",
|
|
202
|
-
"DescribeClustersMessageDescribeClustersPaginateTypeDef",
|
|
207
|
+
"DescribeClustersMessagePaginateTypeDef",
|
|
203
208
|
"DescribeClustersMessageRequestTypeDef",
|
|
204
|
-
"
|
|
209
|
+
"DescribeClustersMessageWaitTypeDef",
|
|
210
|
+
"DescribeCustomDomainAssociationsMessagePaginateTypeDef",
|
|
205
211
|
"DescribeCustomDomainAssociationsMessageRequestTypeDef",
|
|
206
|
-
"
|
|
212
|
+
"DescribeDataSharesForConsumerMessagePaginateTypeDef",
|
|
207
213
|
"DescribeDataSharesForConsumerMessageRequestTypeDef",
|
|
208
214
|
"DescribeDataSharesForConsumerResultTypeDef",
|
|
209
|
-
"
|
|
215
|
+
"DescribeDataSharesForProducerMessagePaginateTypeDef",
|
|
210
216
|
"DescribeDataSharesForProducerMessageRequestTypeDef",
|
|
211
217
|
"DescribeDataSharesForProducerResultTypeDef",
|
|
212
|
-
"
|
|
218
|
+
"DescribeDataSharesMessagePaginateTypeDef",
|
|
213
219
|
"DescribeDataSharesMessageRequestTypeDef",
|
|
214
220
|
"DescribeDataSharesResultTypeDef",
|
|
215
|
-
"
|
|
221
|
+
"DescribeDefaultClusterParametersMessagePaginateTypeDef",
|
|
216
222
|
"DescribeDefaultClusterParametersMessageRequestTypeDef",
|
|
217
223
|
"DescribeDefaultClusterParametersResultTypeDef",
|
|
218
|
-
"
|
|
224
|
+
"DescribeEndpointAccessMessagePaginateTypeDef",
|
|
219
225
|
"DescribeEndpointAccessMessageRequestTypeDef",
|
|
220
|
-
"
|
|
226
|
+
"DescribeEndpointAuthorizationMessagePaginateTypeDef",
|
|
221
227
|
"DescribeEndpointAuthorizationMessageRequestTypeDef",
|
|
222
228
|
"DescribeEventCategoriesMessageRequestTypeDef",
|
|
223
|
-
"
|
|
229
|
+
"DescribeEventSubscriptionsMessagePaginateTypeDef",
|
|
224
230
|
"DescribeEventSubscriptionsMessageRequestTypeDef",
|
|
225
|
-
"
|
|
231
|
+
"DescribeEventsMessagePaginateTypeDef",
|
|
226
232
|
"DescribeEventsMessageRequestTypeDef",
|
|
227
|
-
"
|
|
233
|
+
"DescribeHsmClientCertificatesMessagePaginateTypeDef",
|
|
228
234
|
"DescribeHsmClientCertificatesMessageRequestTypeDef",
|
|
229
|
-
"
|
|
235
|
+
"DescribeHsmConfigurationsMessagePaginateTypeDef",
|
|
230
236
|
"DescribeHsmConfigurationsMessageRequestTypeDef",
|
|
231
|
-
"
|
|
237
|
+
"DescribeInboundIntegrationsMessagePaginateTypeDef",
|
|
232
238
|
"DescribeInboundIntegrationsMessageRequestTypeDef",
|
|
233
239
|
"DescribeIntegrationsFilterTypeDef",
|
|
234
|
-
"
|
|
240
|
+
"DescribeIntegrationsMessagePaginateTypeDef",
|
|
235
241
|
"DescribeIntegrationsMessageRequestTypeDef",
|
|
236
242
|
"DescribeLoggingStatusMessageRequestTypeDef",
|
|
237
|
-
"
|
|
243
|
+
"DescribeNodeConfigurationOptionsMessagePaginateTypeDef",
|
|
238
244
|
"DescribeNodeConfigurationOptionsMessageRequestTypeDef",
|
|
239
|
-
"
|
|
245
|
+
"DescribeOrderableClusterOptionsMessagePaginateTypeDef",
|
|
240
246
|
"DescribeOrderableClusterOptionsMessageRequestTypeDef",
|
|
241
247
|
"DescribePartnersInputMessageRequestTypeDef",
|
|
242
248
|
"DescribePartnersOutputMessageTypeDef",
|
|
243
|
-
"
|
|
249
|
+
"DescribeRedshiftIdcApplicationsMessagePaginateTypeDef",
|
|
244
250
|
"DescribeRedshiftIdcApplicationsMessageRequestTypeDef",
|
|
245
251
|
"DescribeRedshiftIdcApplicationsResultTypeDef",
|
|
246
|
-
"
|
|
252
|
+
"DescribeReservedNodeExchangeStatusInputMessagePaginateTypeDef",
|
|
247
253
|
"DescribeReservedNodeExchangeStatusInputMessageRequestTypeDef",
|
|
248
254
|
"DescribeReservedNodeExchangeStatusOutputMessageTypeDef",
|
|
249
|
-
"
|
|
255
|
+
"DescribeReservedNodeOfferingsMessagePaginateTypeDef",
|
|
250
256
|
"DescribeReservedNodeOfferingsMessageRequestTypeDef",
|
|
251
|
-
"
|
|
257
|
+
"DescribeReservedNodesMessagePaginateTypeDef",
|
|
252
258
|
"DescribeReservedNodesMessageRequestTypeDef",
|
|
253
259
|
"DescribeResizeMessageRequestTypeDef",
|
|
254
|
-
"
|
|
260
|
+
"DescribeScheduledActionsMessagePaginateTypeDef",
|
|
255
261
|
"DescribeScheduledActionsMessageRequestTypeDef",
|
|
256
|
-
"
|
|
262
|
+
"DescribeSnapshotCopyGrantsMessagePaginateTypeDef",
|
|
257
263
|
"DescribeSnapshotCopyGrantsMessageRequestTypeDef",
|
|
258
|
-
"
|
|
264
|
+
"DescribeSnapshotSchedulesMessagePaginateTypeDef",
|
|
259
265
|
"DescribeSnapshotSchedulesMessageRequestTypeDef",
|
|
260
266
|
"DescribeSnapshotSchedulesOutputMessageTypeDef",
|
|
261
|
-
"
|
|
267
|
+
"DescribeTableRestoreStatusMessagePaginateTypeDef",
|
|
262
268
|
"DescribeTableRestoreStatusMessageRequestTypeDef",
|
|
263
|
-
"
|
|
269
|
+
"DescribeTagsMessagePaginateTypeDef",
|
|
264
270
|
"DescribeTagsMessageRequestTypeDef",
|
|
265
|
-
"
|
|
271
|
+
"DescribeUsageLimitsMessagePaginateTypeDef",
|
|
266
272
|
"DescribeUsageLimitsMessageRequestTypeDef",
|
|
267
273
|
"DisableLoggingMessageRequestTypeDef",
|
|
268
274
|
"DisableSnapshotCopyMessageRequestTypeDef",
|
|
@@ -292,10 +298,10 @@ __all__ = (
|
|
|
292
298
|
"FailoverPrimaryComputeResultTypeDef",
|
|
293
299
|
"GetClusterCredentialsMessageRequestTypeDef",
|
|
294
300
|
"GetClusterCredentialsWithIAMMessageRequestTypeDef",
|
|
295
|
-
"
|
|
301
|
+
"GetReservedNodeExchangeConfigurationOptionsInputMessagePaginateTypeDef",
|
|
296
302
|
"GetReservedNodeExchangeConfigurationOptionsInputMessageRequestTypeDef",
|
|
297
303
|
"GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef",
|
|
298
|
-
"
|
|
304
|
+
"GetReservedNodeExchangeOfferingsInputMessagePaginateTypeDef",
|
|
299
305
|
"GetReservedNodeExchangeOfferingsInputMessageRequestTypeDef",
|
|
300
306
|
"GetReservedNodeExchangeOfferingsOutputMessageTypeDef",
|
|
301
307
|
"GetResourcePolicyMessageRequestTypeDef",
|
|
@@ -314,7 +320,7 @@ __all__ = (
|
|
|
314
320
|
"IntegrationsMessageTypeDef",
|
|
315
321
|
"LakeFormationQueryTypeDef",
|
|
316
322
|
"LakeFormationScopeUnionTypeDef",
|
|
317
|
-
"
|
|
323
|
+
"ListRecommendationsMessagePaginateTypeDef",
|
|
318
324
|
"ListRecommendationsMessageRequestTypeDef",
|
|
319
325
|
"ListRecommendationsResultTypeDef",
|
|
320
326
|
"LoggingStatusTypeDef",
|
|
@@ -1867,95 +1873,91 @@ class DataShareTypeDef(TypedDict):
|
|
|
1867
1873
|
ManagedBy: NotRequired[str]
|
|
1868
1874
|
DataShareType: NotRequired[Literal["INTERNAL"]]
|
|
1869
1875
|
|
|
1870
|
-
class
|
|
1876
|
+
class DescribeClusterDbRevisionsMessagePaginateTypeDef(TypedDict):
|
|
1871
1877
|
ClusterIdentifier: NotRequired[str]
|
|
1872
1878
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1873
1879
|
|
|
1874
|
-
class
|
|
1880
|
+
class DescribeClusterParameterGroupsMessagePaginateTypeDef(TypedDict):
|
|
1875
1881
|
ParameterGroupName: NotRequired[str]
|
|
1876
1882
|
TagKeys: NotRequired[Sequence[str]]
|
|
1877
1883
|
TagValues: NotRequired[Sequence[str]]
|
|
1878
1884
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1879
1885
|
|
|
1880
|
-
class
|
|
1886
|
+
class DescribeClusterParametersMessagePaginateTypeDef(TypedDict):
|
|
1881
1887
|
ParameterGroupName: str
|
|
1882
1888
|
Source: NotRequired[str]
|
|
1883
1889
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1884
1890
|
|
|
1885
|
-
class
|
|
1891
|
+
class DescribeClusterSecurityGroupsMessagePaginateTypeDef(TypedDict):
|
|
1886
1892
|
ClusterSecurityGroupName: NotRequired[str]
|
|
1887
1893
|
TagKeys: NotRequired[Sequence[str]]
|
|
1888
1894
|
TagValues: NotRequired[Sequence[str]]
|
|
1889
1895
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1890
1896
|
|
|
1891
|
-
class
|
|
1897
|
+
class DescribeClusterSubnetGroupsMessagePaginateTypeDef(TypedDict):
|
|
1892
1898
|
ClusterSubnetGroupName: NotRequired[str]
|
|
1893
1899
|
TagKeys: NotRequired[Sequence[str]]
|
|
1894
1900
|
TagValues: NotRequired[Sequence[str]]
|
|
1895
1901
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1896
1902
|
|
|
1897
|
-
class
|
|
1903
|
+
class DescribeClusterTracksMessagePaginateTypeDef(TypedDict):
|
|
1898
1904
|
MaintenanceTrackName: NotRequired[str]
|
|
1899
1905
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1900
1906
|
|
|
1901
|
-
class
|
|
1907
|
+
class DescribeClusterVersionsMessagePaginateTypeDef(TypedDict):
|
|
1902
1908
|
ClusterVersion: NotRequired[str]
|
|
1903
1909
|
ClusterParameterGroupFamily: NotRequired[str]
|
|
1904
1910
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1905
1911
|
|
|
1906
|
-
class
|
|
1912
|
+
class DescribeClustersMessagePaginateTypeDef(TypedDict):
|
|
1907
1913
|
ClusterIdentifier: NotRequired[str]
|
|
1908
1914
|
TagKeys: NotRequired[Sequence[str]]
|
|
1909
1915
|
TagValues: NotRequired[Sequence[str]]
|
|
1910
1916
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1911
1917
|
|
|
1912
|
-
class
|
|
1913
|
-
TypedDict
|
|
1914
|
-
):
|
|
1918
|
+
class DescribeCustomDomainAssociationsMessagePaginateTypeDef(TypedDict):
|
|
1915
1919
|
CustomDomainName: NotRequired[str]
|
|
1916
1920
|
CustomDomainCertificateArn: NotRequired[str]
|
|
1917
1921
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1918
1922
|
|
|
1919
|
-
class
|
|
1923
|
+
class DescribeDataSharesForConsumerMessagePaginateTypeDef(TypedDict):
|
|
1920
1924
|
ConsumerArn: NotRequired[str]
|
|
1921
1925
|
Status: NotRequired[DataShareStatusForConsumerType]
|
|
1922
1926
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1923
1927
|
|
|
1924
|
-
class
|
|
1928
|
+
class DescribeDataSharesForProducerMessagePaginateTypeDef(TypedDict):
|
|
1925
1929
|
ProducerArn: NotRequired[str]
|
|
1926
1930
|
Status: NotRequired[DataShareStatusForProducerType]
|
|
1927
1931
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1928
1932
|
|
|
1929
|
-
class
|
|
1933
|
+
class DescribeDataSharesMessagePaginateTypeDef(TypedDict):
|
|
1930
1934
|
DataShareArn: NotRequired[str]
|
|
1931
1935
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1932
1936
|
|
|
1933
|
-
class
|
|
1934
|
-
TypedDict
|
|
1935
|
-
):
|
|
1937
|
+
class DescribeDefaultClusterParametersMessagePaginateTypeDef(TypedDict):
|
|
1936
1938
|
ParameterGroupFamily: str
|
|
1937
1939
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1938
1940
|
|
|
1939
|
-
class
|
|
1941
|
+
class DescribeEndpointAccessMessagePaginateTypeDef(TypedDict):
|
|
1940
1942
|
ClusterIdentifier: NotRequired[str]
|
|
1941
1943
|
ResourceOwner: NotRequired[str]
|
|
1942
1944
|
EndpointName: NotRequired[str]
|
|
1943
1945
|
VpcId: NotRequired[str]
|
|
1944
1946
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1945
1947
|
|
|
1946
|
-
class
|
|
1948
|
+
class DescribeEndpointAuthorizationMessagePaginateTypeDef(TypedDict):
|
|
1947
1949
|
ClusterIdentifier: NotRequired[str]
|
|
1948
1950
|
Account: NotRequired[str]
|
|
1949
1951
|
Grantee: NotRequired[bool]
|
|
1950
1952
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1951
1953
|
|
|
1952
|
-
class
|
|
1954
|
+
class DescribeEventSubscriptionsMessagePaginateTypeDef(TypedDict):
|
|
1953
1955
|
SubscriptionName: NotRequired[str]
|
|
1954
1956
|
TagKeys: NotRequired[Sequence[str]]
|
|
1955
1957
|
TagValues: NotRequired[Sequence[str]]
|
|
1956
1958
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1957
1959
|
|
|
1958
|
-
class
|
|
1960
|
+
class DescribeEventsMessagePaginateTypeDef(TypedDict):
|
|
1959
1961
|
SourceIdentifier: NotRequired[str]
|
|
1960
1962
|
SourceType: NotRequired[SourceTypeType]
|
|
1961
1963
|
StartTime: NotRequired[TimestampTypeDef]
|
|
@@ -1963,77 +1965,71 @@ class DescribeEventsMessageDescribeEventsPaginateTypeDef(TypedDict):
|
|
|
1963
1965
|
Duration: NotRequired[int]
|
|
1964
1966
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1965
1967
|
|
|
1966
|
-
class
|
|
1968
|
+
class DescribeHsmClientCertificatesMessagePaginateTypeDef(TypedDict):
|
|
1967
1969
|
HsmClientCertificateIdentifier: NotRequired[str]
|
|
1968
1970
|
TagKeys: NotRequired[Sequence[str]]
|
|
1969
1971
|
TagValues: NotRequired[Sequence[str]]
|
|
1970
1972
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1971
1973
|
|
|
1972
|
-
class
|
|
1974
|
+
class DescribeHsmConfigurationsMessagePaginateTypeDef(TypedDict):
|
|
1973
1975
|
HsmConfigurationIdentifier: NotRequired[str]
|
|
1974
1976
|
TagKeys: NotRequired[Sequence[str]]
|
|
1975
1977
|
TagValues: NotRequired[Sequence[str]]
|
|
1976
1978
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1977
1979
|
|
|
1978
|
-
class
|
|
1980
|
+
class DescribeInboundIntegrationsMessagePaginateTypeDef(TypedDict):
|
|
1979
1981
|
IntegrationArn: NotRequired[str]
|
|
1980
1982
|
TargetArn: NotRequired[str]
|
|
1981
1983
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1982
1984
|
|
|
1983
|
-
class
|
|
1984
|
-
TypedDict
|
|
1985
|
-
):
|
|
1985
|
+
class DescribeOrderableClusterOptionsMessagePaginateTypeDef(TypedDict):
|
|
1986
1986
|
ClusterVersion: NotRequired[str]
|
|
1987
1987
|
NodeType: NotRequired[str]
|
|
1988
1988
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1989
1989
|
|
|
1990
|
-
class
|
|
1991
|
-
TypedDict
|
|
1992
|
-
):
|
|
1990
|
+
class DescribeRedshiftIdcApplicationsMessagePaginateTypeDef(TypedDict):
|
|
1993
1991
|
RedshiftIdcApplicationArn: NotRequired[str]
|
|
1994
1992
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1995
1993
|
|
|
1996
|
-
class
|
|
1997
|
-
TypedDict
|
|
1998
|
-
):
|
|
1994
|
+
class DescribeReservedNodeExchangeStatusInputMessagePaginateTypeDef(TypedDict):
|
|
1999
1995
|
ReservedNodeId: NotRequired[str]
|
|
2000
1996
|
ReservedNodeExchangeRequestId: NotRequired[str]
|
|
2001
1997
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2002
1998
|
|
|
2003
|
-
class
|
|
1999
|
+
class DescribeReservedNodeOfferingsMessagePaginateTypeDef(TypedDict):
|
|
2004
2000
|
ReservedNodeOfferingId: NotRequired[str]
|
|
2005
2001
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2006
2002
|
|
|
2007
|
-
class
|
|
2003
|
+
class DescribeReservedNodesMessagePaginateTypeDef(TypedDict):
|
|
2008
2004
|
ReservedNodeId: NotRequired[str]
|
|
2009
2005
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2010
2006
|
|
|
2011
|
-
class
|
|
2007
|
+
class DescribeSnapshotCopyGrantsMessagePaginateTypeDef(TypedDict):
|
|
2012
2008
|
SnapshotCopyGrantName: NotRequired[str]
|
|
2013
2009
|
TagKeys: NotRequired[Sequence[str]]
|
|
2014
2010
|
TagValues: NotRequired[Sequence[str]]
|
|
2015
2011
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2016
2012
|
|
|
2017
|
-
class
|
|
2013
|
+
class DescribeSnapshotSchedulesMessagePaginateTypeDef(TypedDict):
|
|
2018
2014
|
ClusterIdentifier: NotRequired[str]
|
|
2019
2015
|
ScheduleIdentifier: NotRequired[str]
|
|
2020
2016
|
TagKeys: NotRequired[Sequence[str]]
|
|
2021
2017
|
TagValues: NotRequired[Sequence[str]]
|
|
2022
2018
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2023
2019
|
|
|
2024
|
-
class
|
|
2020
|
+
class DescribeTableRestoreStatusMessagePaginateTypeDef(TypedDict):
|
|
2025
2021
|
ClusterIdentifier: NotRequired[str]
|
|
2026
2022
|
TableRestoreRequestId: NotRequired[str]
|
|
2027
2023
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2028
2024
|
|
|
2029
|
-
class
|
|
2025
|
+
class DescribeTagsMessagePaginateTypeDef(TypedDict):
|
|
2030
2026
|
ResourceName: NotRequired[str]
|
|
2031
2027
|
ResourceType: NotRequired[str]
|
|
2032
2028
|
TagKeys: NotRequired[Sequence[str]]
|
|
2033
2029
|
TagValues: NotRequired[Sequence[str]]
|
|
2034
2030
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2035
2031
|
|
|
2036
|
-
class
|
|
2032
|
+
class DescribeUsageLimitsMessagePaginateTypeDef(TypedDict):
|
|
2037
2033
|
UsageLimitId: NotRequired[str]
|
|
2038
2034
|
ClusterIdentifier: NotRequired[str]
|
|
2039
2035
|
FeatureType: NotRequired[UsageLimitFeatureTypeType]
|
|
@@ -2041,26 +2037,22 @@ class DescribeUsageLimitsMessageDescribeUsageLimitsPaginateTypeDef(TypedDict):
|
|
|
2041
2037
|
TagValues: NotRequired[Sequence[str]]
|
|
2042
2038
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2043
2039
|
|
|
2044
|
-
class
|
|
2045
|
-
TypedDict
|
|
2046
|
-
):
|
|
2040
|
+
class GetReservedNodeExchangeConfigurationOptionsInputMessagePaginateTypeDef(TypedDict):
|
|
2047
2041
|
ActionType: ReservedNodeExchangeActionTypeType
|
|
2048
2042
|
ClusterIdentifier: NotRequired[str]
|
|
2049
2043
|
SnapshotIdentifier: NotRequired[str]
|
|
2050
2044
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2051
2045
|
|
|
2052
|
-
class
|
|
2053
|
-
TypedDict
|
|
2054
|
-
):
|
|
2046
|
+
class GetReservedNodeExchangeOfferingsInputMessagePaginateTypeDef(TypedDict):
|
|
2055
2047
|
ReservedNodeId: str
|
|
2056
2048
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2057
2049
|
|
|
2058
|
-
class
|
|
2050
|
+
class ListRecommendationsMessagePaginateTypeDef(TypedDict):
|
|
2059
2051
|
ClusterIdentifier: NotRequired[str]
|
|
2060
2052
|
NamespaceArn: NotRequired[str]
|
|
2061
2053
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
2062
2054
|
|
|
2063
|
-
class
|
|
2055
|
+
class DescribeClusterSnapshotsMessagePaginateTypeDef(TypedDict):
|
|
2064
2056
|
ClusterIdentifier: NotRequired[str]
|
|
2065
2057
|
SnapshotIdentifier: NotRequired[str]
|
|
2066
2058
|
SnapshotArn: NotRequired[str]
|
|
@@ -2089,7 +2081,7 @@ class DescribeClusterSnapshotsMessageRequestTypeDef(TypedDict):
|
|
|
2089
2081
|
ClusterExists: NotRequired[bool]
|
|
2090
2082
|
SortingEntities: NotRequired[Sequence[SnapshotSortingEntityTypeDef]]
|
|
2091
2083
|
|
|
2092
|
-
class
|
|
2084
|
+
class DescribeClusterSnapshotsMessageWaitTypeDef(TypedDict):
|
|
2093
2085
|
ClusterIdentifier: NotRequired[str]
|
|
2094
2086
|
SnapshotIdentifier: NotRequired[str]
|
|
2095
2087
|
SnapshotArn: NotRequired[str]
|
|
@@ -2105,23 +2097,7 @@ class DescribeClusterSnapshotsMessageSnapshotAvailableWaitTypeDef(TypedDict):
|
|
|
2105
2097
|
SortingEntities: NotRequired[Sequence[SnapshotSortingEntityTypeDef]]
|
|
2106
2098
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
2107
2099
|
|
|
2108
|
-
class
|
|
2109
|
-
ClusterIdentifier: NotRequired[str]
|
|
2110
|
-
MaxRecords: NotRequired[int]
|
|
2111
|
-
Marker: NotRequired[str]
|
|
2112
|
-
TagKeys: NotRequired[Sequence[str]]
|
|
2113
|
-
TagValues: NotRequired[Sequence[str]]
|
|
2114
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
2115
|
-
|
|
2116
|
-
class DescribeClustersMessageClusterDeletedWaitTypeDef(TypedDict):
|
|
2117
|
-
ClusterIdentifier: NotRequired[str]
|
|
2118
|
-
MaxRecords: NotRequired[int]
|
|
2119
|
-
Marker: NotRequired[str]
|
|
2120
|
-
TagKeys: NotRequired[Sequence[str]]
|
|
2121
|
-
TagValues: NotRequired[Sequence[str]]
|
|
2122
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
2123
|
-
|
|
2124
|
-
class DescribeClustersMessageClusterRestoredWaitTypeDef(TypedDict):
|
|
2100
|
+
class DescribeClustersMessageWaitTypeDef(TypedDict):
|
|
2125
2101
|
ClusterIdentifier: NotRequired[str]
|
|
2126
2102
|
MaxRecords: NotRequired[int]
|
|
2127
2103
|
Marker: NotRequired[str]
|
|
@@ -2129,7 +2105,7 @@ class DescribeClustersMessageClusterRestoredWaitTypeDef(TypedDict):
|
|
|
2129
2105
|
TagValues: NotRequired[Sequence[str]]
|
|
2130
2106
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
2131
2107
|
|
|
2132
|
-
class
|
|
2108
|
+
class DescribeIntegrationsMessagePaginateTypeDef(TypedDict):
|
|
2133
2109
|
IntegrationArn: NotRequired[str]
|
|
2134
2110
|
Filters: NotRequired[Sequence[DescribeIntegrationsFilterTypeDef]]
|
|
2135
2111
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -2140,9 +2116,7 @@ class DescribeIntegrationsMessageRequestTypeDef(TypedDict):
|
|
|
2140
2116
|
Marker: NotRequired[str]
|
|
2141
2117
|
Filters: NotRequired[Sequence[DescribeIntegrationsFilterTypeDef]]
|
|
2142
2118
|
|
|
2143
|
-
class
|
|
2144
|
-
TypedDict
|
|
2145
|
-
):
|
|
2119
|
+
class DescribeNodeConfigurationOptionsMessagePaginateTypeDef(TypedDict):
|
|
2146
2120
|
ActionType: ActionTypeType
|
|
2147
2121
|
ClusterIdentifier: NotRequired[str]
|
|
2148
2122
|
SnapshotIdentifier: NotRequired[str]
|
|
@@ -2165,7 +2139,7 @@ class DescribePartnersOutputMessageTypeDef(TypedDict):
|
|
|
2165
2139
|
PartnerIntegrationInfoList: List[PartnerIntegrationInfoTypeDef]
|
|
2166
2140
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2167
2141
|
|
|
2168
|
-
class
|
|
2142
|
+
class DescribeScheduledActionsMessagePaginateTypeDef(TypedDict):
|
|
2169
2143
|
ScheduledActionName: NotRequired[str]
|
|
2170
2144
|
TargetActionType: NotRequired[ScheduledActionTypeValuesType]
|
|
2171
2145
|
StartTime: NotRequired[TimestampTypeDef]
|
types_boto3_redshift/version.py
CHANGED
types_boto3_redshift/waiter.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for redshift service client waiters.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -25,18 +25,18 @@ Usage::
|
|
|
25
25
|
snapshot_available_waiter: SnapshotAvailableWaiter = client.get_waiter("snapshot_available")
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
Copyright
|
|
28
|
+
Copyright 2025 Vlad Emelianov
|
|
29
29
|
"""
|
|
30
30
|
|
|
31
|
+
from __future__ import annotations
|
|
32
|
+
|
|
31
33
|
import sys
|
|
32
34
|
|
|
33
35
|
from botocore.waiter import Waiter
|
|
34
36
|
|
|
35
37
|
from .type_defs import (
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
DescribeClustersMessageClusterRestoredWaitTypeDef,
|
|
39
|
-
DescribeClusterSnapshotsMessageSnapshotAvailableWaitTypeDef,
|
|
38
|
+
DescribeClustersMessageWaitTypeDef,
|
|
39
|
+
DescribeClusterSnapshotsMessageWaitTypeDef,
|
|
40
40
|
)
|
|
41
41
|
|
|
42
42
|
if sys.version_info >= (3, 12):
|
|
@@ -59,7 +59,9 @@ class ClusterAvailableWaiter(Waiter):
|
|
|
59
59
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusteravailablewaiter)
|
|
60
60
|
"""
|
|
61
61
|
|
|
62
|
-
def wait(
|
|
62
|
+
def wait( # type: ignore[override]
|
|
63
|
+
self, **kwargs: Unpack[DescribeClustersMessageWaitTypeDef]
|
|
64
|
+
) -> None:
|
|
63
65
|
"""
|
|
64
66
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterAvailable.html#Redshift.Waiter.ClusterAvailable.wait)
|
|
65
67
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusteravailablewaiter)
|
|
@@ -72,7 +74,9 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
72
74
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterdeletedwaiter)
|
|
73
75
|
"""
|
|
74
76
|
|
|
75
|
-
def wait(
|
|
77
|
+
def wait( # type: ignore[override]
|
|
78
|
+
self, **kwargs: Unpack[DescribeClustersMessageWaitTypeDef]
|
|
79
|
+
) -> None:
|
|
76
80
|
"""
|
|
77
81
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterDeleted.html#Redshift.Waiter.ClusterDeleted.wait)
|
|
78
82
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterdeletedwaiter)
|
|
@@ -85,7 +89,9 @@ class ClusterRestoredWaiter(Waiter):
|
|
|
85
89
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterrestoredwaiter)
|
|
86
90
|
"""
|
|
87
91
|
|
|
88
|
-
def wait(
|
|
92
|
+
def wait( # type: ignore[override]
|
|
93
|
+
self, **kwargs: Unpack[DescribeClustersMessageWaitTypeDef]
|
|
94
|
+
) -> None:
|
|
89
95
|
"""
|
|
90
96
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterRestored.html#Redshift.Waiter.ClusterRestored.wait)
|
|
91
97
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterrestoredwaiter)
|
|
@@ -98,8 +104,8 @@ class SnapshotAvailableWaiter(Waiter):
|
|
|
98
104
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#snapshotavailablewaiter)
|
|
99
105
|
"""
|
|
100
106
|
|
|
101
|
-
def wait(
|
|
102
|
-
self, **kwargs: Unpack[
|
|
107
|
+
def wait( # type: ignore[override]
|
|
108
|
+
self, **kwargs: Unpack[DescribeClusterSnapshotsMessageWaitTypeDef]
|
|
103
109
|
) -> None:
|
|
104
110
|
"""
|
|
105
111
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/SnapshotAvailable.html#Redshift.Waiter.SnapshotAvailable.wait)
|
types_boto3_redshift/waiter.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for redshift service client waiters.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -25,18 +25,18 @@ Usage::
|
|
|
25
25
|
snapshot_available_waiter: SnapshotAvailableWaiter = client.get_waiter("snapshot_available")
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
Copyright
|
|
28
|
+
Copyright 2025 Vlad Emelianov
|
|
29
29
|
"""
|
|
30
30
|
|
|
31
|
+
from __future__ import annotations
|
|
32
|
+
|
|
31
33
|
import sys
|
|
32
34
|
|
|
33
35
|
from botocore.waiter import Waiter
|
|
34
36
|
|
|
35
37
|
from .type_defs import (
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
DescribeClustersMessageClusterRestoredWaitTypeDef,
|
|
39
|
-
DescribeClusterSnapshotsMessageSnapshotAvailableWaitTypeDef,
|
|
38
|
+
DescribeClustersMessageWaitTypeDef,
|
|
39
|
+
DescribeClusterSnapshotsMessageWaitTypeDef,
|
|
40
40
|
)
|
|
41
41
|
|
|
42
42
|
if sys.version_info >= (3, 12):
|
|
@@ -56,7 +56,9 @@ class ClusterAvailableWaiter(Waiter):
|
|
|
56
56
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterAvailable.html#Redshift.Waiter.ClusterAvailable)
|
|
57
57
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusteravailablewaiter)
|
|
58
58
|
"""
|
|
59
|
-
def wait(
|
|
59
|
+
def wait( # type: ignore[override]
|
|
60
|
+
self, **kwargs: Unpack[DescribeClustersMessageWaitTypeDef]
|
|
61
|
+
) -> None:
|
|
60
62
|
"""
|
|
61
63
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterAvailable.html#Redshift.Waiter.ClusterAvailable.wait)
|
|
62
64
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusteravailablewaiter)
|
|
@@ -67,7 +69,9 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
67
69
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterDeleted.html#Redshift.Waiter.ClusterDeleted)
|
|
68
70
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterdeletedwaiter)
|
|
69
71
|
"""
|
|
70
|
-
def wait(
|
|
72
|
+
def wait( # type: ignore[override]
|
|
73
|
+
self, **kwargs: Unpack[DescribeClustersMessageWaitTypeDef]
|
|
74
|
+
) -> None:
|
|
71
75
|
"""
|
|
72
76
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterDeleted.html#Redshift.Waiter.ClusterDeleted.wait)
|
|
73
77
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterdeletedwaiter)
|
|
@@ -78,7 +82,9 @@ class ClusterRestoredWaiter(Waiter):
|
|
|
78
82
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterRestored.html#Redshift.Waiter.ClusterRestored)
|
|
79
83
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterrestoredwaiter)
|
|
80
84
|
"""
|
|
81
|
-
def wait(
|
|
85
|
+
def wait( # type: ignore[override]
|
|
86
|
+
self, **kwargs: Unpack[DescribeClustersMessageWaitTypeDef]
|
|
87
|
+
) -> None:
|
|
82
88
|
"""
|
|
83
89
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/ClusterRestored.html#Redshift.Waiter.ClusterRestored.wait)
|
|
84
90
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#clusterrestoredwaiter)
|
|
@@ -89,8 +95,8 @@ class SnapshotAvailableWaiter(Waiter):
|
|
|
89
95
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/SnapshotAvailable.html#Redshift.Waiter.SnapshotAvailable)
|
|
90
96
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/waiters/#snapshotavailablewaiter)
|
|
91
97
|
"""
|
|
92
|
-
def wait(
|
|
93
|
-
self, **kwargs: Unpack[
|
|
98
|
+
def wait( # type: ignore[override]
|
|
99
|
+
self, **kwargs: Unpack[DescribeClusterSnapshotsMessageWaitTypeDef]
|
|
94
100
|
) -> None:
|
|
95
101
|
"""
|
|
96
102
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/waiter/SnapshotAvailable.html#Redshift.Waiter.SnapshotAvailable.wait)
|