mypy-boto3-redshift 1.33.0__py3-none-any.whl → 1.34.37__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mypy-boto3-redshift might be problematic. Click here for more details.
- mypy_boto3_redshift/__init__.py +4 -1
- mypy_boto3_redshift/__init__.pyi +4 -0
- mypy_boto3_redshift/__main__.py +8 -7
- mypy_boto3_redshift/client.py +95 -68
- mypy_boto3_redshift/client.pyi +95 -67
- mypy_boto3_redshift/literals.py +18 -2
- mypy_boto3_redshift/literals.pyi +18 -0
- mypy_boto3_redshift/paginator.py +51 -29
- mypy_boto3_redshift/paginator.pyi +50 -28
- mypy_boto3_redshift/type_defs.py +66 -1
- mypy_boto3_redshift/type_defs.pyi +66 -0
- mypy_boto3_redshift/version.py +1 -1
- mypy_boto3_redshift/waiter.py +4 -4
- mypy_boto3_redshift/waiter.pyi +4 -4
- {mypy_boto3_redshift-1.33.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/LICENSE +1 -1
- {mypy_boto3_redshift-1.33.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/METADATA +10 -7
- mypy_boto3_redshift-1.34.37.dist-info/RECORD +20 -0
- mypy_boto3_redshift-1.33.0.dist-info/RECORD +0 -20
- {mypy_boto3_redshift-1.33.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/WHEEL +0 -0
- {mypy_boto3_redshift-1.33.0.dist-info → mypy_boto3_redshift-1.34.37.dist-info}/top_level.txt +0 -0
|
@@ -45,6 +45,7 @@ Usage::
|
|
|
45
45
|
DescribeUsageLimitsPaginator,
|
|
46
46
|
GetReservedNodeExchangeConfigurationOptionsPaginator,
|
|
47
47
|
GetReservedNodeExchangeOfferingsPaginator,
|
|
48
|
+
ListRecommendationsPaginator,
|
|
48
49
|
)
|
|
49
50
|
|
|
50
51
|
session = Session()
|
|
@@ -85,6 +86,7 @@ Usage::
|
|
|
85
86
|
describe_usage_limits_paginator: DescribeUsageLimitsPaginator = client.get_paginator("describe_usage_limits")
|
|
86
87
|
get_reserved_node_exchange_configuration_options_paginator: GetReservedNodeExchangeConfigurationOptionsPaginator = client.get_paginator("get_reserved_node_exchange_configuration_options")
|
|
87
88
|
get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
|
|
89
|
+
list_recommendations_paginator: ListRecommendationsPaginator = client.get_paginator("list_recommendations")
|
|
88
90
|
```
|
|
89
91
|
"""
|
|
90
92
|
|
|
@@ -126,6 +128,7 @@ from .type_defs import (
|
|
|
126
128
|
HsmClientCertificateMessageTypeDef,
|
|
127
129
|
HsmConfigurationMessageTypeDef,
|
|
128
130
|
InboundIntegrationsMessageTypeDef,
|
|
131
|
+
ListRecommendationsResultTypeDef,
|
|
129
132
|
NodeConfigurationOptionsFilterTypeDef,
|
|
130
133
|
NodeConfigurationOptionsMessageTypeDef,
|
|
131
134
|
OrderableClusterOptionsMessageTypeDef,
|
|
@@ -180,6 +183,7 @@ __all__ = (
|
|
|
180
183
|
"DescribeUsageLimitsPaginator",
|
|
181
184
|
"GetReservedNodeExchangeConfigurationOptionsPaginator",
|
|
182
185
|
"GetReservedNodeExchangeOfferingsPaginator",
|
|
186
|
+
"ListRecommendationsPaginator",
|
|
183
187
|
)
|
|
184
188
|
|
|
185
189
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
@@ -216,7 +220,7 @@ class DescribeClusterParameterGroupsPaginator(Paginator):
|
|
|
216
220
|
ParameterGroupName: str = ...,
|
|
217
221
|
TagKeys: Sequence[str] = ...,
|
|
218
222
|
TagValues: Sequence[str] = ...,
|
|
219
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
223
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
220
224
|
) -> _PageIterator[ClusterParameterGroupsMessageTypeDef]:
|
|
221
225
|
"""
|
|
222
226
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterParameterGroups.paginate)
|
|
@@ -234,7 +238,7 @@ class DescribeClusterParametersPaginator(Paginator):
|
|
|
234
238
|
*,
|
|
235
239
|
ParameterGroupName: str,
|
|
236
240
|
Source: str = ...,
|
|
237
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
241
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
238
242
|
) -> _PageIterator[ClusterParameterGroupDetailsTypeDef]:
|
|
239
243
|
"""
|
|
240
244
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterParameters.paginate)
|
|
@@ -253,7 +257,7 @@ class DescribeClusterSecurityGroupsPaginator(Paginator):
|
|
|
253
257
|
ClusterSecurityGroupName: str = ...,
|
|
254
258
|
TagKeys: Sequence[str] = ...,
|
|
255
259
|
TagValues: Sequence[str] = ...,
|
|
256
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
260
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
257
261
|
) -> _PageIterator[ClusterSecurityGroupMessageTypeDef]:
|
|
258
262
|
"""
|
|
259
263
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterSecurityGroups.paginate)
|
|
@@ -280,7 +284,7 @@ class DescribeClusterSnapshotsPaginator(Paginator):
|
|
|
280
284
|
TagValues: Sequence[str] = ...,
|
|
281
285
|
ClusterExists: bool = ...,
|
|
282
286
|
SortingEntities: Sequence[SnapshotSortingEntityTypeDef] = ...,
|
|
283
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
287
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
284
288
|
) -> _PageIterator[SnapshotMessageTypeDef]:
|
|
285
289
|
"""
|
|
286
290
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterSnapshots.paginate)
|
|
@@ -299,7 +303,7 @@ class DescribeClusterSubnetGroupsPaginator(Paginator):
|
|
|
299
303
|
ClusterSubnetGroupName: str = ...,
|
|
300
304
|
TagKeys: Sequence[str] = ...,
|
|
301
305
|
TagValues: Sequence[str] = ...,
|
|
302
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
306
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
303
307
|
) -> _PageIterator[ClusterSubnetGroupMessageTypeDef]:
|
|
304
308
|
"""
|
|
305
309
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterSubnetGroups.paginate)
|
|
@@ -331,7 +335,7 @@ class DescribeClusterVersionsPaginator(Paginator):
|
|
|
331
335
|
*,
|
|
332
336
|
ClusterVersion: str = ...,
|
|
333
337
|
ClusterParameterGroupFamily: str = ...,
|
|
334
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
338
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
335
339
|
) -> _PageIterator[ClusterVersionsMessageTypeDef]:
|
|
336
340
|
"""
|
|
337
341
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusterVersions.paginate)
|
|
@@ -350,7 +354,7 @@ class DescribeClustersPaginator(Paginator):
|
|
|
350
354
|
ClusterIdentifier: str = ...,
|
|
351
355
|
TagKeys: Sequence[str] = ...,
|
|
352
356
|
TagValues: Sequence[str] = ...,
|
|
353
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
357
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
354
358
|
) -> _PageIterator[ClustersMessageTypeDef]:
|
|
355
359
|
"""
|
|
356
360
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeClusters.paginate)
|
|
@@ -368,7 +372,7 @@ class DescribeCustomDomainAssociationsPaginator(Paginator):
|
|
|
368
372
|
*,
|
|
369
373
|
CustomDomainName: str = ...,
|
|
370
374
|
CustomDomainCertificateArn: str = ...,
|
|
371
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
375
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
372
376
|
) -> _PageIterator[CustomDomainAssociationsMessageTypeDef]:
|
|
373
377
|
"""
|
|
374
378
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeCustomDomainAssociations.paginate)
|
|
@@ -400,7 +404,7 @@ class DescribeDataSharesForConsumerPaginator(Paginator):
|
|
|
400
404
|
*,
|
|
401
405
|
ConsumerArn: str = ...,
|
|
402
406
|
Status: DataShareStatusForConsumerType = ...,
|
|
403
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
407
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
404
408
|
) -> _PageIterator[DescribeDataSharesForConsumerResultTypeDef]:
|
|
405
409
|
"""
|
|
406
410
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeDataSharesForConsumer.paginate)
|
|
@@ -418,7 +422,7 @@ class DescribeDataSharesForProducerPaginator(Paginator):
|
|
|
418
422
|
*,
|
|
419
423
|
ProducerArn: str = ...,
|
|
420
424
|
Status: DataShareStatusForProducerType = ...,
|
|
421
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
425
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
422
426
|
) -> _PageIterator[DescribeDataSharesForProducerResultTypeDef]:
|
|
423
427
|
"""
|
|
424
428
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeDataSharesForProducer.paginate)
|
|
@@ -452,7 +456,7 @@ class DescribeEndpointAccessPaginator(Paginator):
|
|
|
452
456
|
ResourceOwner: str = ...,
|
|
453
457
|
EndpointName: str = ...,
|
|
454
458
|
VpcId: str = ...,
|
|
455
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
459
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
456
460
|
) -> _PageIterator[EndpointAccessListTypeDef]:
|
|
457
461
|
"""
|
|
458
462
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeEndpointAccess.paginate)
|
|
@@ -471,7 +475,7 @@ class DescribeEndpointAuthorizationPaginator(Paginator):
|
|
|
471
475
|
ClusterIdentifier: str = ...,
|
|
472
476
|
Account: str = ...,
|
|
473
477
|
Grantee: bool = ...,
|
|
474
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
478
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
475
479
|
) -> _PageIterator[EndpointAuthorizationListTypeDef]:
|
|
476
480
|
"""
|
|
477
481
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeEndpointAuthorization.paginate)
|
|
@@ -490,7 +494,7 @@ class DescribeEventSubscriptionsPaginator(Paginator):
|
|
|
490
494
|
SubscriptionName: str = ...,
|
|
491
495
|
TagKeys: Sequence[str] = ...,
|
|
492
496
|
TagValues: Sequence[str] = ...,
|
|
493
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
497
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
494
498
|
) -> _PageIterator[EventSubscriptionsMessageTypeDef]:
|
|
495
499
|
"""
|
|
496
500
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeEventSubscriptions.paginate)
|
|
@@ -511,7 +515,7 @@ class DescribeEventsPaginator(Paginator):
|
|
|
511
515
|
StartTime: TimestampTypeDef = ...,
|
|
512
516
|
EndTime: TimestampTypeDef = ...,
|
|
513
517
|
Duration: int = ...,
|
|
514
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
518
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
515
519
|
) -> _PageIterator[EventsMessageTypeDef]:
|
|
516
520
|
"""
|
|
517
521
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeEvents.paginate)
|
|
@@ -530,7 +534,7 @@ class DescribeHsmClientCertificatesPaginator(Paginator):
|
|
|
530
534
|
HsmClientCertificateIdentifier: str = ...,
|
|
531
535
|
TagKeys: Sequence[str] = ...,
|
|
532
536
|
TagValues: Sequence[str] = ...,
|
|
533
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
537
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
534
538
|
) -> _PageIterator[HsmClientCertificateMessageTypeDef]:
|
|
535
539
|
"""
|
|
536
540
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeHsmClientCertificates.paginate)
|
|
@@ -549,7 +553,7 @@ class DescribeHsmConfigurationsPaginator(Paginator):
|
|
|
549
553
|
HsmConfigurationIdentifier: str = ...,
|
|
550
554
|
TagKeys: Sequence[str] = ...,
|
|
551
555
|
TagValues: Sequence[str] = ...,
|
|
552
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
556
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
553
557
|
) -> _PageIterator[HsmConfigurationMessageTypeDef]:
|
|
554
558
|
"""
|
|
555
559
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeHsmConfigurations.paginate)
|
|
@@ -567,7 +571,7 @@ class DescribeInboundIntegrationsPaginator(Paginator):
|
|
|
567
571
|
*,
|
|
568
572
|
IntegrationArn: str = ...,
|
|
569
573
|
TargetArn: str = ...,
|
|
570
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
574
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
571
575
|
) -> _PageIterator[InboundIntegrationsMessageTypeDef]:
|
|
572
576
|
"""
|
|
573
577
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeInboundIntegrations.paginate)
|
|
@@ -589,7 +593,7 @@ class DescribeNodeConfigurationOptionsPaginator(Paginator):
|
|
|
589
593
|
SnapshotArn: str = ...,
|
|
590
594
|
OwnerAccount: str = ...,
|
|
591
595
|
Filters: Sequence[NodeConfigurationOptionsFilterTypeDef] = ...,
|
|
592
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
596
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
593
597
|
) -> _PageIterator[NodeConfigurationOptionsMessageTypeDef]:
|
|
594
598
|
"""
|
|
595
599
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeNodeConfigurationOptions.paginate)
|
|
@@ -607,7 +611,7 @@ class DescribeOrderableClusterOptionsPaginator(Paginator):
|
|
|
607
611
|
*,
|
|
608
612
|
ClusterVersion: str = ...,
|
|
609
613
|
NodeType: str = ...,
|
|
610
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
614
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
611
615
|
) -> _PageIterator[OrderableClusterOptionsMessageTypeDef]:
|
|
612
616
|
"""
|
|
613
617
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeOrderableClusterOptions.paginate)
|
|
@@ -624,7 +628,7 @@ class DescribeRedshiftIdcApplicationsPaginator(Paginator):
|
|
|
624
628
|
self,
|
|
625
629
|
*,
|
|
626
630
|
RedshiftIdcApplicationArn: str = ...,
|
|
627
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
631
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
628
632
|
) -> _PageIterator[DescribeRedshiftIdcApplicationsResultPaginatorTypeDef]:
|
|
629
633
|
"""
|
|
630
634
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeRedshiftIdcApplications.paginate)
|
|
@@ -642,7 +646,7 @@ class DescribeReservedNodeExchangeStatusPaginator(Paginator):
|
|
|
642
646
|
*,
|
|
643
647
|
ReservedNodeId: str = ...,
|
|
644
648
|
ReservedNodeExchangeRequestId: str = ...,
|
|
645
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
649
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
646
650
|
) -> _PageIterator[DescribeReservedNodeExchangeStatusOutputMessageTypeDef]:
|
|
647
651
|
"""
|
|
648
652
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeReservedNodeExchangeStatus.paginate)
|
|
@@ -692,7 +696,7 @@ class DescribeScheduledActionsPaginator(Paginator):
|
|
|
692
696
|
EndTime: TimestampTypeDef = ...,
|
|
693
697
|
Active: bool = ...,
|
|
694
698
|
Filters: Sequence[ScheduledActionFilterTypeDef] = ...,
|
|
695
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
699
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
696
700
|
) -> _PageIterator[ScheduledActionsMessageTypeDef]:
|
|
697
701
|
"""
|
|
698
702
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeScheduledActions.paginate)
|
|
@@ -711,7 +715,7 @@ class DescribeSnapshotCopyGrantsPaginator(Paginator):
|
|
|
711
715
|
SnapshotCopyGrantName: str = ...,
|
|
712
716
|
TagKeys: Sequence[str] = ...,
|
|
713
717
|
TagValues: Sequence[str] = ...,
|
|
714
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
718
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
715
719
|
) -> _PageIterator[SnapshotCopyGrantMessageTypeDef]:
|
|
716
720
|
"""
|
|
717
721
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeSnapshotCopyGrants.paginate)
|
|
@@ -731,7 +735,7 @@ class DescribeSnapshotSchedulesPaginator(Paginator):
|
|
|
731
735
|
ScheduleIdentifier: str = ...,
|
|
732
736
|
TagKeys: Sequence[str] = ...,
|
|
733
737
|
TagValues: Sequence[str] = ...,
|
|
734
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
738
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
735
739
|
) -> _PageIterator[DescribeSnapshotSchedulesOutputMessageTypeDef]:
|
|
736
740
|
"""
|
|
737
741
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeSnapshotSchedules.paginate)
|
|
@@ -749,7 +753,7 @@ class DescribeTableRestoreStatusPaginator(Paginator):
|
|
|
749
753
|
*,
|
|
750
754
|
ClusterIdentifier: str = ...,
|
|
751
755
|
TableRestoreRequestId: str = ...,
|
|
752
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
756
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
753
757
|
) -> _PageIterator[TableRestoreStatusMessageTypeDef]:
|
|
754
758
|
"""
|
|
755
759
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeTableRestoreStatus.paginate)
|
|
@@ -769,7 +773,7 @@ class DescribeTagsPaginator(Paginator):
|
|
|
769
773
|
ResourceType: str = ...,
|
|
770
774
|
TagKeys: Sequence[str] = ...,
|
|
771
775
|
TagValues: Sequence[str] = ...,
|
|
772
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
776
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
773
777
|
) -> _PageIterator[TaggedResourceListMessageTypeDef]:
|
|
774
778
|
"""
|
|
775
779
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeTags.paginate)
|
|
@@ -790,7 +794,7 @@ class DescribeUsageLimitsPaginator(Paginator):
|
|
|
790
794
|
FeatureType: UsageLimitFeatureTypeType = ...,
|
|
791
795
|
TagKeys: Sequence[str] = ...,
|
|
792
796
|
TagValues: Sequence[str] = ...,
|
|
793
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
797
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
794
798
|
) -> _PageIterator[UsageLimitListTypeDef]:
|
|
795
799
|
"""
|
|
796
800
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.DescribeUsageLimits.paginate)
|
|
@@ -809,7 +813,7 @@ class GetReservedNodeExchangeConfigurationOptionsPaginator(Paginator):
|
|
|
809
813
|
ActionType: ReservedNodeExchangeActionTypeType,
|
|
810
814
|
ClusterIdentifier: str = ...,
|
|
811
815
|
SnapshotIdentifier: str = ...,
|
|
812
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
816
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
813
817
|
) -> _PageIterator[GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef]:
|
|
814
818
|
"""
|
|
815
819
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.GetReservedNodeExchangeConfigurationOptions.paginate)
|
|
@@ -829,3 +833,21 @@ class GetReservedNodeExchangeOfferingsPaginator(Paginator):
|
|
|
829
833
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.GetReservedNodeExchangeOfferings.paginate)
|
|
830
834
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#getreservednodeexchangeofferingspaginator)
|
|
831
835
|
"""
|
|
836
|
+
|
|
837
|
+
class ListRecommendationsPaginator(Paginator):
|
|
838
|
+
"""
|
|
839
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.ListRecommendations)
|
|
840
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#listrecommendationspaginator)
|
|
841
|
+
"""
|
|
842
|
+
|
|
843
|
+
def paginate(
|
|
844
|
+
self,
|
|
845
|
+
*,
|
|
846
|
+
ClusterIdentifier: str = ...,
|
|
847
|
+
NamespaceArn: str = ...,
|
|
848
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
849
|
+
) -> _PageIterator[ListRecommendationsResultTypeDef]:
|
|
850
|
+
"""
|
|
851
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Paginator.ListRecommendations.paginate)
|
|
852
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/paginators/#listrecommendationspaginator)
|
|
853
|
+
"""
|
mypy_boto3_redshift/type_defs.py
CHANGED
|
@@ -24,12 +24,14 @@ from .literals import (
|
|
|
24
24
|
DataShareStatusForConsumerType,
|
|
25
25
|
DataShareStatusForProducerType,
|
|
26
26
|
DataShareStatusType,
|
|
27
|
+
ImpactRankingTypeType,
|
|
27
28
|
LogDestinationTypeType,
|
|
28
29
|
ModeType,
|
|
29
30
|
NodeConfigurationOptionsFilterNameType,
|
|
30
31
|
OperatorTypeType,
|
|
31
32
|
ParameterApplyTypeType,
|
|
32
33
|
PartnerIntegrationStatusType,
|
|
34
|
+
RecommendedActionTypeType,
|
|
33
35
|
ReservedNodeExchangeActionTypeType,
|
|
34
36
|
ReservedNodeExchangeStatusTypeType,
|
|
35
37
|
ReservedNodeOfferingTypeType,
|
|
@@ -58,7 +60,6 @@ if sys.version_info >= (3, 12):
|
|
|
58
60
|
else:
|
|
59
61
|
from typing_extensions import TypedDict
|
|
60
62
|
|
|
61
|
-
|
|
62
63
|
__all__ = (
|
|
63
64
|
"AcceptReservedNodeExchangeInputMessageRequestTypeDef",
|
|
64
65
|
"ResponseMetadataTypeDef",
|
|
@@ -181,6 +182,7 @@ __all__ = (
|
|
|
181
182
|
"ResourcePolicyTypeDef",
|
|
182
183
|
"IntegrationErrorTypeDef",
|
|
183
184
|
"LakeFormationQueryTypeDef",
|
|
185
|
+
"ListRecommendationsMessageRequestTypeDef",
|
|
184
186
|
"ModifyAquaInputMessageRequestTypeDef",
|
|
185
187
|
"ModifyAuthenticationProfileMessageRequestTypeDef",
|
|
186
188
|
"ModifyClusterDbRevisionMessageRequestTypeDef",
|
|
@@ -203,6 +205,8 @@ __all__ = (
|
|
|
203
205
|
"PurchaseReservedNodeOfferingMessageRequestTypeDef",
|
|
204
206
|
"PutResourcePolicyMessageRequestTypeDef",
|
|
205
207
|
"RebootClusterMessageRequestTypeDef",
|
|
208
|
+
"RecommendedActionTypeDef",
|
|
209
|
+
"ReferenceLinkTypeDef",
|
|
206
210
|
"RecurringChargeTypeDef",
|
|
207
211
|
"RejectDataShareMessageRequestTypeDef",
|
|
208
212
|
"ResizeClusterMessageRequestTypeDef",
|
|
@@ -310,6 +314,7 @@ __all__ = (
|
|
|
310
314
|
"DescribeUsageLimitsMessageDescribeUsageLimitsPaginateTypeDef",
|
|
311
315
|
"GetReservedNodeExchangeConfigurationOptionsInputMessageGetReservedNodeExchangeConfigurationOptionsPaginateTypeDef",
|
|
312
316
|
"GetReservedNodeExchangeOfferingsInputMessageGetReservedNodeExchangeOfferingsPaginateTypeDef",
|
|
317
|
+
"ListRecommendationsMessageListRecommendationsPaginateTypeDef",
|
|
313
318
|
"DescribeClusterSnapshotsMessageDescribeClusterSnapshotsPaginateTypeDef",
|
|
314
319
|
"DescribeClusterSnapshotsMessageRequestTypeDef",
|
|
315
320
|
"DescribeClusterSnapshotsMessageSnapshotAvailableWaitTypeDef",
|
|
@@ -330,6 +335,7 @@ __all__ = (
|
|
|
330
335
|
"LakeFormationScopeUnionTypeDef",
|
|
331
336
|
"VpcEndpointTypeDef",
|
|
332
337
|
"NodeConfigurationOptionsMessageTypeDef",
|
|
338
|
+
"RecommendationTypeDef",
|
|
333
339
|
"ReservedNodeOfferingTypeDef",
|
|
334
340
|
"ReservedNodeTypeDef",
|
|
335
341
|
"RestoreTableFromClusterSnapshotResultTypeDef",
|
|
@@ -374,6 +380,7 @@ __all__ = (
|
|
|
374
380
|
"EndpointAccessResponseTypeDef",
|
|
375
381
|
"EndpointAccessTypeDef",
|
|
376
382
|
"EndpointTypeDef",
|
|
383
|
+
"ListRecommendationsResultTypeDef",
|
|
377
384
|
"GetReservedNodeExchangeOfferingsOutputMessageTypeDef",
|
|
378
385
|
"ReservedNodeOfferingsMessageTypeDef",
|
|
379
386
|
"AcceptReservedNodeExchangeOutputMessageTypeDef",
|
|
@@ -1417,6 +1424,15 @@ LakeFormationQueryTypeDef = TypedDict(
|
|
|
1417
1424
|
"Authorization": ServiceAuthorizationType,
|
|
1418
1425
|
},
|
|
1419
1426
|
)
|
|
1427
|
+
ListRecommendationsMessageRequestTypeDef = TypedDict(
|
|
1428
|
+
"ListRecommendationsMessageRequestTypeDef",
|
|
1429
|
+
{
|
|
1430
|
+
"ClusterIdentifier": NotRequired[str],
|
|
1431
|
+
"NamespaceArn": NotRequired[str],
|
|
1432
|
+
"MaxRecords": NotRequired[int],
|
|
1433
|
+
"Marker": NotRequired[str],
|
|
1434
|
+
},
|
|
1435
|
+
)
|
|
1420
1436
|
ModifyAquaInputMessageRequestTypeDef = TypedDict(
|
|
1421
1437
|
"ModifyAquaInputMessageRequestTypeDef",
|
|
1422
1438
|
{
|
|
@@ -1615,6 +1631,22 @@ RebootClusterMessageRequestTypeDef = TypedDict(
|
|
|
1615
1631
|
"ClusterIdentifier": str,
|
|
1616
1632
|
},
|
|
1617
1633
|
)
|
|
1634
|
+
RecommendedActionTypeDef = TypedDict(
|
|
1635
|
+
"RecommendedActionTypeDef",
|
|
1636
|
+
{
|
|
1637
|
+
"Text": NotRequired[str],
|
|
1638
|
+
"Database": NotRequired[str],
|
|
1639
|
+
"Command": NotRequired[str],
|
|
1640
|
+
"Type": NotRequired[RecommendedActionTypeType],
|
|
1641
|
+
},
|
|
1642
|
+
)
|
|
1643
|
+
ReferenceLinkTypeDef = TypedDict(
|
|
1644
|
+
"ReferenceLinkTypeDef",
|
|
1645
|
+
{
|
|
1646
|
+
"Text": NotRequired[str],
|
|
1647
|
+
"Link": NotRequired[str],
|
|
1648
|
+
},
|
|
1649
|
+
)
|
|
1618
1650
|
RecurringChargeTypeDef = TypedDict(
|
|
1619
1651
|
"RecurringChargeTypeDef",
|
|
1620
1652
|
{
|
|
@@ -2693,6 +2725,14 @@ GetReservedNodeExchangeOfferingsInputMessageGetReservedNodeExchangeOfferingsPagi
|
|
|
2693
2725
|
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
2694
2726
|
},
|
|
2695
2727
|
)
|
|
2728
|
+
ListRecommendationsMessageListRecommendationsPaginateTypeDef = TypedDict(
|
|
2729
|
+
"ListRecommendationsMessageListRecommendationsPaginateTypeDef",
|
|
2730
|
+
{
|
|
2731
|
+
"ClusterIdentifier": NotRequired[str],
|
|
2732
|
+
"NamespaceArn": NotRequired[str],
|
|
2733
|
+
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
2734
|
+
},
|
|
2735
|
+
)
|
|
2696
2736
|
DescribeClusterSnapshotsMessageDescribeClusterSnapshotsPaginateTypeDef = TypedDict(
|
|
2697
2737
|
"DescribeClusterSnapshotsMessageDescribeClusterSnapshotsPaginateTypeDef",
|
|
2698
2738
|
{
|
|
@@ -2907,6 +2947,23 @@ NodeConfigurationOptionsMessageTypeDef = TypedDict(
|
|
|
2907
2947
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2908
2948
|
},
|
|
2909
2949
|
)
|
|
2950
|
+
RecommendationTypeDef = TypedDict(
|
|
2951
|
+
"RecommendationTypeDef",
|
|
2952
|
+
{
|
|
2953
|
+
"Id": NotRequired[str],
|
|
2954
|
+
"ClusterIdentifier": NotRequired[str],
|
|
2955
|
+
"NamespaceArn": NotRequired[str],
|
|
2956
|
+
"CreatedAt": NotRequired[datetime],
|
|
2957
|
+
"RecommendationType": NotRequired[str],
|
|
2958
|
+
"Title": NotRequired[str],
|
|
2959
|
+
"Description": NotRequired[str],
|
|
2960
|
+
"Observation": NotRequired[str],
|
|
2961
|
+
"ImpactRanking": NotRequired[ImpactRankingTypeType],
|
|
2962
|
+
"RecommendationText": NotRequired[str],
|
|
2963
|
+
"RecommendedActions": NotRequired[List[RecommendedActionTypeDef]],
|
|
2964
|
+
"ReferenceLinks": NotRequired[List[ReferenceLinkTypeDef]],
|
|
2965
|
+
},
|
|
2966
|
+
)
|
|
2910
2967
|
ReservedNodeOfferingTypeDef = TypedDict(
|
|
2911
2968
|
"ReservedNodeOfferingTypeDef",
|
|
2912
2969
|
{
|
|
@@ -3273,6 +3330,14 @@ EndpointTypeDef = TypedDict(
|
|
|
3273
3330
|
"VpcEndpoints": NotRequired[List[VpcEndpointTypeDef]],
|
|
3274
3331
|
},
|
|
3275
3332
|
)
|
|
3333
|
+
ListRecommendationsResultTypeDef = TypedDict(
|
|
3334
|
+
"ListRecommendationsResultTypeDef",
|
|
3335
|
+
{
|
|
3336
|
+
"Recommendations": List[RecommendationTypeDef],
|
|
3337
|
+
"Marker": str,
|
|
3338
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3339
|
+
},
|
|
3340
|
+
)
|
|
3276
3341
|
GetReservedNodeExchangeOfferingsOutputMessageTypeDef = TypedDict(
|
|
3277
3342
|
"GetReservedNodeExchangeOfferingsOutputMessageTypeDef",
|
|
3278
3343
|
{
|
|
@@ -24,12 +24,14 @@ from .literals import (
|
|
|
24
24
|
DataShareStatusForConsumerType,
|
|
25
25
|
DataShareStatusForProducerType,
|
|
26
26
|
DataShareStatusType,
|
|
27
|
+
ImpactRankingTypeType,
|
|
27
28
|
LogDestinationTypeType,
|
|
28
29
|
ModeType,
|
|
29
30
|
NodeConfigurationOptionsFilterNameType,
|
|
30
31
|
OperatorTypeType,
|
|
31
32
|
ParameterApplyTypeType,
|
|
32
33
|
PartnerIntegrationStatusType,
|
|
34
|
+
RecommendedActionTypeType,
|
|
33
35
|
ReservedNodeExchangeActionTypeType,
|
|
34
36
|
ReservedNodeExchangeStatusTypeType,
|
|
35
37
|
ReservedNodeOfferingTypeType,
|
|
@@ -180,6 +182,7 @@ __all__ = (
|
|
|
180
182
|
"ResourcePolicyTypeDef",
|
|
181
183
|
"IntegrationErrorTypeDef",
|
|
182
184
|
"LakeFormationQueryTypeDef",
|
|
185
|
+
"ListRecommendationsMessageRequestTypeDef",
|
|
183
186
|
"ModifyAquaInputMessageRequestTypeDef",
|
|
184
187
|
"ModifyAuthenticationProfileMessageRequestTypeDef",
|
|
185
188
|
"ModifyClusterDbRevisionMessageRequestTypeDef",
|
|
@@ -202,6 +205,8 @@ __all__ = (
|
|
|
202
205
|
"PurchaseReservedNodeOfferingMessageRequestTypeDef",
|
|
203
206
|
"PutResourcePolicyMessageRequestTypeDef",
|
|
204
207
|
"RebootClusterMessageRequestTypeDef",
|
|
208
|
+
"RecommendedActionTypeDef",
|
|
209
|
+
"ReferenceLinkTypeDef",
|
|
205
210
|
"RecurringChargeTypeDef",
|
|
206
211
|
"RejectDataShareMessageRequestTypeDef",
|
|
207
212
|
"ResizeClusterMessageRequestTypeDef",
|
|
@@ -309,6 +314,7 @@ __all__ = (
|
|
|
309
314
|
"DescribeUsageLimitsMessageDescribeUsageLimitsPaginateTypeDef",
|
|
310
315
|
"GetReservedNodeExchangeConfigurationOptionsInputMessageGetReservedNodeExchangeConfigurationOptionsPaginateTypeDef",
|
|
311
316
|
"GetReservedNodeExchangeOfferingsInputMessageGetReservedNodeExchangeOfferingsPaginateTypeDef",
|
|
317
|
+
"ListRecommendationsMessageListRecommendationsPaginateTypeDef",
|
|
312
318
|
"DescribeClusterSnapshotsMessageDescribeClusterSnapshotsPaginateTypeDef",
|
|
313
319
|
"DescribeClusterSnapshotsMessageRequestTypeDef",
|
|
314
320
|
"DescribeClusterSnapshotsMessageSnapshotAvailableWaitTypeDef",
|
|
@@ -329,6 +335,7 @@ __all__ = (
|
|
|
329
335
|
"LakeFormationScopeUnionTypeDef",
|
|
330
336
|
"VpcEndpointTypeDef",
|
|
331
337
|
"NodeConfigurationOptionsMessageTypeDef",
|
|
338
|
+
"RecommendationTypeDef",
|
|
332
339
|
"ReservedNodeOfferingTypeDef",
|
|
333
340
|
"ReservedNodeTypeDef",
|
|
334
341
|
"RestoreTableFromClusterSnapshotResultTypeDef",
|
|
@@ -373,6 +380,7 @@ __all__ = (
|
|
|
373
380
|
"EndpointAccessResponseTypeDef",
|
|
374
381
|
"EndpointAccessTypeDef",
|
|
375
382
|
"EndpointTypeDef",
|
|
383
|
+
"ListRecommendationsResultTypeDef",
|
|
376
384
|
"GetReservedNodeExchangeOfferingsOutputMessageTypeDef",
|
|
377
385
|
"ReservedNodeOfferingsMessageTypeDef",
|
|
378
386
|
"AcceptReservedNodeExchangeOutputMessageTypeDef",
|
|
@@ -1416,6 +1424,15 @@ LakeFormationQueryTypeDef = TypedDict(
|
|
|
1416
1424
|
"Authorization": ServiceAuthorizationType,
|
|
1417
1425
|
},
|
|
1418
1426
|
)
|
|
1427
|
+
ListRecommendationsMessageRequestTypeDef = TypedDict(
|
|
1428
|
+
"ListRecommendationsMessageRequestTypeDef",
|
|
1429
|
+
{
|
|
1430
|
+
"ClusterIdentifier": NotRequired[str],
|
|
1431
|
+
"NamespaceArn": NotRequired[str],
|
|
1432
|
+
"MaxRecords": NotRequired[int],
|
|
1433
|
+
"Marker": NotRequired[str],
|
|
1434
|
+
},
|
|
1435
|
+
)
|
|
1419
1436
|
ModifyAquaInputMessageRequestTypeDef = TypedDict(
|
|
1420
1437
|
"ModifyAquaInputMessageRequestTypeDef",
|
|
1421
1438
|
{
|
|
@@ -1614,6 +1631,22 @@ RebootClusterMessageRequestTypeDef = TypedDict(
|
|
|
1614
1631
|
"ClusterIdentifier": str,
|
|
1615
1632
|
},
|
|
1616
1633
|
)
|
|
1634
|
+
RecommendedActionTypeDef = TypedDict(
|
|
1635
|
+
"RecommendedActionTypeDef",
|
|
1636
|
+
{
|
|
1637
|
+
"Text": NotRequired[str],
|
|
1638
|
+
"Database": NotRequired[str],
|
|
1639
|
+
"Command": NotRequired[str],
|
|
1640
|
+
"Type": NotRequired[RecommendedActionTypeType],
|
|
1641
|
+
},
|
|
1642
|
+
)
|
|
1643
|
+
ReferenceLinkTypeDef = TypedDict(
|
|
1644
|
+
"ReferenceLinkTypeDef",
|
|
1645
|
+
{
|
|
1646
|
+
"Text": NotRequired[str],
|
|
1647
|
+
"Link": NotRequired[str],
|
|
1648
|
+
},
|
|
1649
|
+
)
|
|
1617
1650
|
RecurringChargeTypeDef = TypedDict(
|
|
1618
1651
|
"RecurringChargeTypeDef",
|
|
1619
1652
|
{
|
|
@@ -2692,6 +2725,14 @@ GetReservedNodeExchangeOfferingsInputMessageGetReservedNodeExchangeOfferingsPagi
|
|
|
2692
2725
|
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
2693
2726
|
},
|
|
2694
2727
|
)
|
|
2728
|
+
ListRecommendationsMessageListRecommendationsPaginateTypeDef = TypedDict(
|
|
2729
|
+
"ListRecommendationsMessageListRecommendationsPaginateTypeDef",
|
|
2730
|
+
{
|
|
2731
|
+
"ClusterIdentifier": NotRequired[str],
|
|
2732
|
+
"NamespaceArn": NotRequired[str],
|
|
2733
|
+
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
2734
|
+
},
|
|
2735
|
+
)
|
|
2695
2736
|
DescribeClusterSnapshotsMessageDescribeClusterSnapshotsPaginateTypeDef = TypedDict(
|
|
2696
2737
|
"DescribeClusterSnapshotsMessageDescribeClusterSnapshotsPaginateTypeDef",
|
|
2697
2738
|
{
|
|
@@ -2906,6 +2947,23 @@ NodeConfigurationOptionsMessageTypeDef = TypedDict(
|
|
|
2906
2947
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2907
2948
|
},
|
|
2908
2949
|
)
|
|
2950
|
+
RecommendationTypeDef = TypedDict(
|
|
2951
|
+
"RecommendationTypeDef",
|
|
2952
|
+
{
|
|
2953
|
+
"Id": NotRequired[str],
|
|
2954
|
+
"ClusterIdentifier": NotRequired[str],
|
|
2955
|
+
"NamespaceArn": NotRequired[str],
|
|
2956
|
+
"CreatedAt": NotRequired[datetime],
|
|
2957
|
+
"RecommendationType": NotRequired[str],
|
|
2958
|
+
"Title": NotRequired[str],
|
|
2959
|
+
"Description": NotRequired[str],
|
|
2960
|
+
"Observation": NotRequired[str],
|
|
2961
|
+
"ImpactRanking": NotRequired[ImpactRankingTypeType],
|
|
2962
|
+
"RecommendationText": NotRequired[str],
|
|
2963
|
+
"RecommendedActions": NotRequired[List[RecommendedActionTypeDef]],
|
|
2964
|
+
"ReferenceLinks": NotRequired[List[ReferenceLinkTypeDef]],
|
|
2965
|
+
},
|
|
2966
|
+
)
|
|
2909
2967
|
ReservedNodeOfferingTypeDef = TypedDict(
|
|
2910
2968
|
"ReservedNodeOfferingTypeDef",
|
|
2911
2969
|
{
|
|
@@ -3272,6 +3330,14 @@ EndpointTypeDef = TypedDict(
|
|
|
3272
3330
|
"VpcEndpoints": NotRequired[List[VpcEndpointTypeDef]],
|
|
3273
3331
|
},
|
|
3274
3332
|
)
|
|
3333
|
+
ListRecommendationsResultTypeDef = TypedDict(
|
|
3334
|
+
"ListRecommendationsResultTypeDef",
|
|
3335
|
+
{
|
|
3336
|
+
"Recommendations": List[RecommendationTypeDef],
|
|
3337
|
+
"Marker": str,
|
|
3338
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
3339
|
+
},
|
|
3340
|
+
)
|
|
3275
3341
|
GetReservedNodeExchangeOfferingsOutputMessageTypeDef = TypedDict(
|
|
3276
3342
|
"GetReservedNodeExchangeOfferingsOutputMessageTypeDef",
|
|
3277
3343
|
{
|
mypy_boto3_redshift/version.py
CHANGED
mypy_boto3_redshift/waiter.py
CHANGED
|
@@ -54,7 +54,7 @@ class ClusterAvailableWaiter(Waiter):
|
|
|
54
54
|
Marker: str = ...,
|
|
55
55
|
TagKeys: Sequence[str] = ...,
|
|
56
56
|
TagValues: Sequence[str] = ...,
|
|
57
|
-
WaiterConfig: WaiterConfigTypeDef =
|
|
57
|
+
WaiterConfig: WaiterConfigTypeDef = ...,
|
|
58
58
|
) -> None:
|
|
59
59
|
"""
|
|
60
60
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Waiter.ClusterAvailable.wait)
|
|
@@ -76,7 +76,7 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
76
76
|
Marker: str = ...,
|
|
77
77
|
TagKeys: Sequence[str] = ...,
|
|
78
78
|
TagValues: Sequence[str] = ...,
|
|
79
|
-
WaiterConfig: WaiterConfigTypeDef =
|
|
79
|
+
WaiterConfig: WaiterConfigTypeDef = ...,
|
|
80
80
|
) -> None:
|
|
81
81
|
"""
|
|
82
82
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Waiter.ClusterDeleted.wait)
|
|
@@ -98,7 +98,7 @@ class ClusterRestoredWaiter(Waiter):
|
|
|
98
98
|
Marker: str = ...,
|
|
99
99
|
TagKeys: Sequence[str] = ...,
|
|
100
100
|
TagValues: Sequence[str] = ...,
|
|
101
|
-
WaiterConfig: WaiterConfigTypeDef =
|
|
101
|
+
WaiterConfig: WaiterConfigTypeDef = ...,
|
|
102
102
|
) -> None:
|
|
103
103
|
"""
|
|
104
104
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Waiter.ClusterRestored.wait)
|
|
@@ -128,7 +128,7 @@ class SnapshotAvailableWaiter(Waiter):
|
|
|
128
128
|
TagValues: Sequence[str] = ...,
|
|
129
129
|
ClusterExists: bool = ...,
|
|
130
130
|
SortingEntities: Sequence[SnapshotSortingEntityTypeDef] = ...,
|
|
131
|
-
WaiterConfig: WaiterConfigTypeDef =
|
|
131
|
+
WaiterConfig: WaiterConfigTypeDef = ...,
|
|
132
132
|
) -> None:
|
|
133
133
|
"""
|
|
134
134
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Waiter.SnapshotAvailable.wait)
|