mypy-boto3-redshift 1.26.79__py3-none-any.whl → 1.28.36__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 -0
- mypy_boto3_redshift/__init__.pyi +4 -0
- mypy_boto3_redshift/__main__.py +3 -3
- mypy_boto3_redshift/client.py +110 -40
- mypy_boto3_redshift/client.pyi +105 -40
- mypy_boto3_redshift/literals.py +18 -1
- mypy_boto3_redshift/literals.pyi +18 -1
- mypy_boto3_redshift/paginator.py +31 -8
- mypy_boto3_redshift/paginator.pyi +30 -8
- mypy_boto3_redshift/type_defs.py +1197 -2033
- mypy_boto3_redshift/type_defs.pyi +1197 -1915
- mypy_boto3_redshift/version.py +1 -1
- mypy_boto3_redshift/waiter.py +4 -5
- mypy_boto3_redshift/waiter.pyi +4 -5
- {mypy_boto3_redshift-1.26.79.dist-info → mypy_boto3_redshift-1.28.36.dist-info}/LICENSE +1 -1
- mypy_boto3_redshift-1.28.36.dist-info/METADATA +568 -0
- mypy_boto3_redshift-1.28.36.dist-info/RECORD +20 -0
- {mypy_boto3_redshift-1.26.79.dist-info → mypy_boto3_redshift-1.28.36.dist-info}/WHEEL +1 -1
- mypy_boto3_redshift-1.26.79.dist-info/METADATA +0 -952
- mypy_boto3_redshift-1.26.79.dist-info/RECORD +0 -20
- {mypy_boto3_redshift-1.26.79.dist-info → mypy_boto3_redshift-1.28.36.dist-info}/top_level.txt +0 -0
mypy_boto3_redshift/client.pyi
CHANGED
|
@@ -14,8 +14,7 @@ Usage::
|
|
|
14
14
|
```
|
|
15
15
|
"""
|
|
16
16
|
import sys
|
|
17
|
-
from
|
|
18
|
-
from typing import Any, Dict, Mapping, Sequence, Type, Union, overload
|
|
17
|
+
from typing import Any, Dict, Mapping, Sequence, Type, overload
|
|
19
18
|
|
|
20
19
|
from botocore.client import BaseClient, ClientMeta
|
|
21
20
|
|
|
@@ -44,6 +43,7 @@ from .paginator import (
|
|
|
44
43
|
DescribeClusterSubnetGroupsPaginator,
|
|
45
44
|
DescribeClusterTracksPaginator,
|
|
46
45
|
DescribeClusterVersionsPaginator,
|
|
46
|
+
DescribeCustomDomainAssociationsPaginator,
|
|
47
47
|
DescribeDataSharesForConsumerPaginator,
|
|
48
48
|
DescribeDataSharesForProducerPaginator,
|
|
49
49
|
DescribeDataSharesPaginator,
|
|
@@ -92,12 +92,14 @@ from .type_defs import (
|
|
|
92
92
|
CreateClusterSecurityGroupResultTypeDef,
|
|
93
93
|
CreateClusterSnapshotResultTypeDef,
|
|
94
94
|
CreateClusterSubnetGroupResultTypeDef,
|
|
95
|
+
CreateCustomDomainAssociationResultTypeDef,
|
|
95
96
|
CreateEventSubscriptionResultTypeDef,
|
|
96
97
|
CreateHsmClientCertificateResultTypeDef,
|
|
97
98
|
CreateHsmConfigurationResultTypeDef,
|
|
98
99
|
CreateSnapshotCopyGrantResultTypeDef,
|
|
100
|
+
CustomDomainAssociationsMessageTypeDef,
|
|
99
101
|
CustomerStorageMessageTypeDef,
|
|
100
|
-
|
|
102
|
+
DataShareResponseTypeDef,
|
|
101
103
|
DeleteAuthenticationProfileResultTypeDef,
|
|
102
104
|
DeleteClusterResultTypeDef,
|
|
103
105
|
DeleteClusterSnapshotMessageTypeDef,
|
|
@@ -114,9 +116,9 @@ from .type_defs import (
|
|
|
114
116
|
EmptyResponseMetadataTypeDef,
|
|
115
117
|
EnableSnapshotCopyResultTypeDef,
|
|
116
118
|
EndpointAccessListTypeDef,
|
|
117
|
-
|
|
119
|
+
EndpointAccessResponseTypeDef,
|
|
118
120
|
EndpointAuthorizationListTypeDef,
|
|
119
|
-
|
|
121
|
+
EndpointAuthorizationResponseTypeDef,
|
|
120
122
|
EventCategoriesMessageTypeDef,
|
|
121
123
|
EventsMessageTypeDef,
|
|
122
124
|
EventSubscriptionsMessageTypeDef,
|
|
@@ -133,6 +135,7 @@ from .type_defs import (
|
|
|
133
135
|
ModifyClusterResultTypeDef,
|
|
134
136
|
ModifyClusterSnapshotResultTypeDef,
|
|
135
137
|
ModifyClusterSubnetGroupResultTypeDef,
|
|
138
|
+
ModifyCustomDomainAssociationResultTypeDef,
|
|
136
139
|
ModifyEventSubscriptionResultTypeDef,
|
|
137
140
|
ModifySnapshotCopyRetentionPeriodResultTypeDef,
|
|
138
141
|
NodeConfigurationOptionsFilterTypeDef,
|
|
@@ -154,19 +157,20 @@ from .type_defs import (
|
|
|
154
157
|
RevokeSnapshotAccessResultTypeDef,
|
|
155
158
|
RotateEncryptionKeyResultTypeDef,
|
|
156
159
|
ScheduledActionFilterTypeDef,
|
|
157
|
-
|
|
160
|
+
ScheduledActionResponseTypeDef,
|
|
158
161
|
ScheduledActionsMessageTypeDef,
|
|
159
162
|
ScheduledActionTypeTypeDef,
|
|
160
163
|
SnapshotCopyGrantMessageTypeDef,
|
|
161
164
|
SnapshotMessageTypeDef,
|
|
162
|
-
|
|
165
|
+
SnapshotScheduleResponseTypeDef,
|
|
163
166
|
SnapshotSortingEntityTypeDef,
|
|
164
167
|
TableRestoreStatusMessageTypeDef,
|
|
165
168
|
TaggedResourceListMessageTypeDef,
|
|
166
169
|
TagTypeDef,
|
|
170
|
+
TimestampTypeDef,
|
|
167
171
|
TrackListMessageTypeDef,
|
|
168
172
|
UsageLimitListTypeDef,
|
|
169
|
-
|
|
173
|
+
UsageLimitResponseTypeDef,
|
|
170
174
|
)
|
|
171
175
|
from .waiter import (
|
|
172
176
|
ClusterAvailableWaiter,
|
|
@@ -175,7 +179,7 @@ from .waiter import (
|
|
|
175
179
|
SnapshotAvailableWaiter,
|
|
176
180
|
)
|
|
177
181
|
|
|
178
|
-
if sys.version_info >= (3,
|
|
182
|
+
if sys.version_info >= (3, 12):
|
|
179
183
|
from typing import Literal
|
|
180
184
|
else:
|
|
181
185
|
from typing_extensions import Literal
|
|
@@ -220,6 +224,8 @@ class Exceptions:
|
|
|
220
224
|
ClusterSubnetGroupQuotaExceededFault: Type[BotocoreClientError]
|
|
221
225
|
ClusterSubnetQuotaExceededFault: Type[BotocoreClientError]
|
|
222
226
|
CopyToRegionDisabledFault: Type[BotocoreClientError]
|
|
227
|
+
CustomCnameAssociationFault: Type[BotocoreClientError]
|
|
228
|
+
CustomDomainAssociationNotFoundFault: Type[BotocoreClientError]
|
|
223
229
|
DependentServiceRequestThrottlingFault: Type[BotocoreClientError]
|
|
224
230
|
DependentServiceUnavailableFault: Type[BotocoreClientError]
|
|
225
231
|
EndpointAlreadyExistsFault: Type[BotocoreClientError]
|
|
@@ -360,7 +366,7 @@ class RedshiftClient(BaseClient):
|
|
|
360
366
|
AssociateEntireAccount: bool = ...,
|
|
361
367
|
ConsumerArn: str = ...,
|
|
362
368
|
ConsumerRegion: str = ...
|
|
363
|
-
) ->
|
|
369
|
+
) -> DataShareResponseTypeDef:
|
|
364
370
|
"""
|
|
365
371
|
From a datashare consumer account, associates a datashare with the account
|
|
366
372
|
(AssociateEntireAccount) or the specified namespace (ConsumerArn).
|
|
@@ -384,7 +390,7 @@ class RedshiftClient(BaseClient):
|
|
|
384
390
|
"""
|
|
385
391
|
def authorize_data_share(
|
|
386
392
|
self, *, DataShareArn: str, ConsumerIdentifier: str
|
|
387
|
-
) ->
|
|
393
|
+
) -> DataShareResponseTypeDef:
|
|
388
394
|
"""
|
|
389
395
|
From a data producer account, authorizes the sharing of a datashare with one or
|
|
390
396
|
more consumer accounts or managing entities.
|
|
@@ -394,7 +400,7 @@ class RedshiftClient(BaseClient):
|
|
|
394
400
|
"""
|
|
395
401
|
def authorize_endpoint_access(
|
|
396
402
|
self, *, Account: str, ClusterIdentifier: str = ..., VpcIds: Sequence[str] = ...
|
|
397
|
-
) ->
|
|
403
|
+
) -> EndpointAuthorizationResponseTypeDef:
|
|
398
404
|
"""
|
|
399
405
|
Grants access to a cluster.
|
|
400
406
|
|
|
@@ -578,6 +584,15 @@ class RedshiftClient(BaseClient):
|
|
|
578
584
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.create_cluster_subnet_group)
|
|
579
585
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_cluster_subnet_group)
|
|
580
586
|
"""
|
|
587
|
+
def create_custom_domain_association(
|
|
588
|
+
self, *, CustomDomainName: str, CustomDomainCertificateArn: str, ClusterIdentifier: str
|
|
589
|
+
) -> CreateCustomDomainAssociationResultTypeDef:
|
|
590
|
+
"""
|
|
591
|
+
Used to create a custom domain name for a cluster.
|
|
592
|
+
|
|
593
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.create_custom_domain_association)
|
|
594
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_custom_domain_association)
|
|
595
|
+
"""
|
|
581
596
|
def create_endpoint_access(
|
|
582
597
|
self,
|
|
583
598
|
*,
|
|
@@ -586,7 +601,7 @@ class RedshiftClient(BaseClient):
|
|
|
586
601
|
ClusterIdentifier: str = ...,
|
|
587
602
|
ResourceOwner: str = ...,
|
|
588
603
|
VpcSecurityGroupIds: Sequence[str] = ...
|
|
589
|
-
) ->
|
|
604
|
+
) -> EndpointAccessResponseTypeDef:
|
|
590
605
|
"""
|
|
591
606
|
Creates a Redshift-managed VPC endpoint.
|
|
592
607
|
|
|
@@ -649,10 +664,10 @@ class RedshiftClient(BaseClient):
|
|
|
649
664
|
Schedule: str,
|
|
650
665
|
IamRole: str,
|
|
651
666
|
ScheduledActionDescription: str = ...,
|
|
652
|
-
StartTime:
|
|
653
|
-
EndTime:
|
|
667
|
+
StartTime: TimestampTypeDef = ...,
|
|
668
|
+
EndTime: TimestampTypeDef = ...,
|
|
654
669
|
Enable: bool = ...
|
|
655
|
-
) ->
|
|
670
|
+
) -> ScheduledActionResponseTypeDef:
|
|
656
671
|
"""
|
|
657
672
|
Creates a scheduled action.
|
|
658
673
|
|
|
@@ -679,7 +694,7 @@ class RedshiftClient(BaseClient):
|
|
|
679
694
|
Tags: Sequence[TagTypeDef] = ...,
|
|
680
695
|
DryRun: bool = ...,
|
|
681
696
|
NextInvocations: int = ...
|
|
682
|
-
) ->
|
|
697
|
+
) -> SnapshotScheduleResponseTypeDef:
|
|
683
698
|
"""
|
|
684
699
|
Create a snapshot schedule that can be associated to a cluster and which
|
|
685
700
|
overrides the default system backup schedule.
|
|
@@ -706,7 +721,7 @@ class RedshiftClient(BaseClient):
|
|
|
706
721
|
Period: UsageLimitPeriodType = ...,
|
|
707
722
|
BreachAction: UsageLimitBreachActionType = ...,
|
|
708
723
|
Tags: Sequence[TagTypeDef] = ...
|
|
709
|
-
) ->
|
|
724
|
+
) -> UsageLimitResponseTypeDef:
|
|
710
725
|
"""
|
|
711
726
|
Creates a usage limit for a specified Amazon Redshift feature on a cluster.
|
|
712
727
|
|
|
@@ -715,7 +730,7 @@ class RedshiftClient(BaseClient):
|
|
|
715
730
|
"""
|
|
716
731
|
def deauthorize_data_share(
|
|
717
732
|
self, *, DataShareArn: str, ConsumerIdentifier: str
|
|
718
|
-
) ->
|
|
733
|
+
) -> DataShareResponseTypeDef:
|
|
719
734
|
"""
|
|
720
735
|
From a datashare producer account, removes authorization from the specified
|
|
721
736
|
datashare.
|
|
@@ -783,7 +798,16 @@ class RedshiftClient(BaseClient):
|
|
|
783
798
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.delete_cluster_subnet_group)
|
|
784
799
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#delete_cluster_subnet_group)
|
|
785
800
|
"""
|
|
786
|
-
def
|
|
801
|
+
def delete_custom_domain_association(
|
|
802
|
+
self, *, ClusterIdentifier: str
|
|
803
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
804
|
+
"""
|
|
805
|
+
Contains information about deleting a custom domain association for a cluster.
|
|
806
|
+
|
|
807
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.delete_custom_domain_association)
|
|
808
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#delete_custom_domain_association)
|
|
809
|
+
"""
|
|
810
|
+
def delete_endpoint_access(self, *, EndpointName: str) -> EndpointAccessResponseTypeDef:
|
|
787
811
|
"""
|
|
788
812
|
Deletes a Redshift-managed VPC endpoint.
|
|
789
813
|
|
|
@@ -944,8 +968,8 @@ class RedshiftClient(BaseClient):
|
|
|
944
968
|
SnapshotIdentifier: str = ...,
|
|
945
969
|
SnapshotArn: str = ...,
|
|
946
970
|
SnapshotType: str = ...,
|
|
947
|
-
StartTime:
|
|
948
|
-
EndTime:
|
|
971
|
+
StartTime: TimestampTypeDef = ...,
|
|
972
|
+
EndTime: TimestampTypeDef = ...,
|
|
949
973
|
MaxRecords: int = ...,
|
|
950
974
|
Marker: str = ...,
|
|
951
975
|
OwnerAccount: str = ...,
|
|
@@ -1017,6 +1041,20 @@ class RedshiftClient(BaseClient):
|
|
|
1017
1041
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_clusters)
|
|
1018
1042
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_clusters)
|
|
1019
1043
|
"""
|
|
1044
|
+
def describe_custom_domain_associations(
|
|
1045
|
+
self,
|
|
1046
|
+
*,
|
|
1047
|
+
CustomDomainName: str = ...,
|
|
1048
|
+
CustomDomainCertificateArn: str = ...,
|
|
1049
|
+
MaxRecords: int = ...,
|
|
1050
|
+
Marker: str = ...
|
|
1051
|
+
) -> CustomDomainAssociationsMessageTypeDef:
|
|
1052
|
+
"""
|
|
1053
|
+
Contains information for custom domain associations for a cluster.
|
|
1054
|
+
|
|
1055
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_custom_domain_associations)
|
|
1056
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_custom_domain_associations)
|
|
1057
|
+
"""
|
|
1020
1058
|
def describe_data_shares(
|
|
1021
1059
|
self, *, DataShareArn: str = ..., MaxRecords: int = ..., Marker: str = ...
|
|
1022
1060
|
) -> DescribeDataSharesResultTypeDef:
|
|
@@ -1126,8 +1164,8 @@ class RedshiftClient(BaseClient):
|
|
|
1126
1164
|
*,
|
|
1127
1165
|
SourceIdentifier: str = ...,
|
|
1128
1166
|
SourceType: SourceTypeType = ...,
|
|
1129
|
-
StartTime:
|
|
1130
|
-
EndTime:
|
|
1167
|
+
StartTime: TimestampTypeDef = ...,
|
|
1168
|
+
EndTime: TimestampTypeDef = ...,
|
|
1131
1169
|
Duration: int = ...,
|
|
1132
1170
|
MaxRecords: int = ...,
|
|
1133
1171
|
Marker: str = ...
|
|
@@ -1271,8 +1309,8 @@ class RedshiftClient(BaseClient):
|
|
|
1271
1309
|
*,
|
|
1272
1310
|
ScheduledActionName: str = ...,
|
|
1273
1311
|
TargetActionType: ScheduledActionTypeValuesType = ...,
|
|
1274
|
-
StartTime:
|
|
1275
|
-
EndTime:
|
|
1312
|
+
StartTime: TimestampTypeDef = ...,
|
|
1313
|
+
EndTime: TimestampTypeDef = ...,
|
|
1276
1314
|
Active: bool = ...,
|
|
1277
1315
|
Filters: Sequence[ScheduledActionFilterTypeDef] = ...,
|
|
1278
1316
|
Marker: str = ...,
|
|
@@ -1394,7 +1432,7 @@ class RedshiftClient(BaseClient):
|
|
|
1394
1432
|
DisassociateEntireAccount: bool = ...,
|
|
1395
1433
|
ConsumerArn: str = ...,
|
|
1396
1434
|
ConsumerRegion: str = ...
|
|
1397
|
-
) ->
|
|
1435
|
+
) -> DataShareResponseTypeDef:
|
|
1398
1436
|
"""
|
|
1399
1437
|
From a datashare consumer account, remove association for the specified
|
|
1400
1438
|
datashare.
|
|
@@ -1451,11 +1489,12 @@ class RedshiftClient(BaseClient):
|
|
|
1451
1489
|
self,
|
|
1452
1490
|
*,
|
|
1453
1491
|
DbUser: str,
|
|
1454
|
-
ClusterIdentifier: str,
|
|
1455
1492
|
DbName: str = ...,
|
|
1493
|
+
ClusterIdentifier: str = ...,
|
|
1456
1494
|
DurationSeconds: int = ...,
|
|
1457
1495
|
AutoCreate: bool = ...,
|
|
1458
|
-
DbGroups: Sequence[str] =
|
|
1496
|
+
DbGroups: Sequence[str] = ...,
|
|
1497
|
+
CustomDomainName: str = ...
|
|
1459
1498
|
) -> ClusterCredentialsTypeDef:
|
|
1460
1499
|
"""
|
|
1461
1500
|
Returns a database user name and temporary password with temporary authorization
|
|
@@ -1465,7 +1504,12 @@ class RedshiftClient(BaseClient):
|
|
|
1465
1504
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_cluster_credentials)
|
|
1466
1505
|
"""
|
|
1467
1506
|
def get_cluster_credentials_with_iam(
|
|
1468
|
-
self,
|
|
1507
|
+
self,
|
|
1508
|
+
*,
|
|
1509
|
+
DbName: str = ...,
|
|
1510
|
+
ClusterIdentifier: str = ...,
|
|
1511
|
+
DurationSeconds: int = ...,
|
|
1512
|
+
CustomDomainName: str = ...
|
|
1469
1513
|
) -> ClusterExtendedCredentialsTypeDef:
|
|
1470
1514
|
"""
|
|
1471
1515
|
Returns a database user name and temporary password with temporary authorization
|
|
@@ -1582,8 +1626,8 @@ class RedshiftClient(BaseClient):
|
|
|
1582
1626
|
ClusterIdentifier: str,
|
|
1583
1627
|
DeferMaintenance: bool = ...,
|
|
1584
1628
|
DeferMaintenanceIdentifier: str = ...,
|
|
1585
|
-
DeferMaintenanceStartTime:
|
|
1586
|
-
DeferMaintenanceEndTime:
|
|
1629
|
+
DeferMaintenanceStartTime: TimestampTypeDef = ...,
|
|
1630
|
+
DeferMaintenanceEndTime: TimestampTypeDef = ...,
|
|
1587
1631
|
DeferMaintenanceDuration: int = ...
|
|
1588
1632
|
) -> ModifyClusterMaintenanceResultTypeDef:
|
|
1589
1633
|
"""
|
|
@@ -1636,9 +1680,22 @@ class RedshiftClient(BaseClient):
|
|
|
1636
1680
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.modify_cluster_subnet_group)
|
|
1637
1681
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#modify_cluster_subnet_group)
|
|
1638
1682
|
"""
|
|
1683
|
+
def modify_custom_domain_association(
|
|
1684
|
+
self,
|
|
1685
|
+
*,
|
|
1686
|
+
ClusterIdentifier: str,
|
|
1687
|
+
CustomDomainName: str = ...,
|
|
1688
|
+
CustomDomainCertificateArn: str = ...
|
|
1689
|
+
) -> ModifyCustomDomainAssociationResultTypeDef:
|
|
1690
|
+
"""
|
|
1691
|
+
Contains information for changing a custom domain association.
|
|
1692
|
+
|
|
1693
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.modify_custom_domain_association)
|
|
1694
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#modify_custom_domain_association)
|
|
1695
|
+
"""
|
|
1639
1696
|
def modify_endpoint_access(
|
|
1640
1697
|
self, *, EndpointName: str, VpcSecurityGroupIds: Sequence[str] = ...
|
|
1641
|
-
) ->
|
|
1698
|
+
) -> EndpointAccessResponseTypeDef:
|
|
1642
1699
|
"""
|
|
1643
1700
|
Modifies a Redshift-managed VPC endpoint.
|
|
1644
1701
|
|
|
@@ -1670,10 +1727,10 @@ class RedshiftClient(BaseClient):
|
|
|
1670
1727
|
Schedule: str = ...,
|
|
1671
1728
|
IamRole: str = ...,
|
|
1672
1729
|
ScheduledActionDescription: str = ...,
|
|
1673
|
-
StartTime:
|
|
1674
|
-
EndTime:
|
|
1730
|
+
StartTime: TimestampTypeDef = ...,
|
|
1731
|
+
EndTime: TimestampTypeDef = ...,
|
|
1675
1732
|
Enable: bool = ...
|
|
1676
|
-
) ->
|
|
1733
|
+
) -> ScheduledActionResponseTypeDef:
|
|
1677
1734
|
"""
|
|
1678
1735
|
Modifies a scheduled action.
|
|
1679
1736
|
|
|
@@ -1693,7 +1750,7 @@ class RedshiftClient(BaseClient):
|
|
|
1693
1750
|
"""
|
|
1694
1751
|
def modify_snapshot_schedule(
|
|
1695
1752
|
self, *, ScheduleIdentifier: str, ScheduleDefinitions: Sequence[str]
|
|
1696
|
-
) ->
|
|
1753
|
+
) -> SnapshotScheduleResponseTypeDef:
|
|
1697
1754
|
"""
|
|
1698
1755
|
Modifies a snapshot schedule.
|
|
1699
1756
|
|
|
@@ -1706,7 +1763,7 @@ class RedshiftClient(BaseClient):
|
|
|
1706
1763
|
UsageLimitId: str,
|
|
1707
1764
|
Amount: int = ...,
|
|
1708
1765
|
BreachAction: UsageLimitBreachActionType = ...
|
|
1709
|
-
) ->
|
|
1766
|
+
) -> UsageLimitResponseTypeDef:
|
|
1710
1767
|
"""
|
|
1711
1768
|
Modifies a usage limit in a cluster.
|
|
1712
1769
|
|
|
@@ -1736,7 +1793,7 @@ class RedshiftClient(BaseClient):
|
|
|
1736
1793
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.reboot_cluster)
|
|
1737
1794
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#reboot_cluster)
|
|
1738
1795
|
"""
|
|
1739
|
-
def reject_data_share(self, *, DataShareArn: str) ->
|
|
1796
|
+
def reject_data_share(self, *, DataShareArn: str) -> DataShareResponseTypeDef:
|
|
1740
1797
|
"""
|
|
1741
1798
|
From a datashare consumer account, rejects the specified datashare.
|
|
1742
1799
|
|
|
@@ -1865,7 +1922,7 @@ class RedshiftClient(BaseClient):
|
|
|
1865
1922
|
Account: str = ...,
|
|
1866
1923
|
VpcIds: Sequence[str] = ...,
|
|
1867
1924
|
Force: bool = ...
|
|
1868
|
-
) ->
|
|
1925
|
+
) -> EndpointAuthorizationResponseTypeDef:
|
|
1869
1926
|
"""
|
|
1870
1927
|
Revokes access to a cluster.
|
|
1871
1928
|
|
|
@@ -1983,6 +2040,14 @@ class RedshiftClient(BaseClient):
|
|
|
1983
2040
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_paginator)
|
|
1984
2041
|
"""
|
|
1985
2042
|
@overload
|
|
2043
|
+
def get_paginator(
|
|
2044
|
+
self, operation_name: Literal["describe_custom_domain_associations"]
|
|
2045
|
+
) -> DescribeCustomDomainAssociationsPaginator:
|
|
2046
|
+
"""
|
|
2047
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.get_paginator)
|
|
2048
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_paginator)
|
|
2049
|
+
"""
|
|
2050
|
+
@overload
|
|
1986
2051
|
def get_paginator(
|
|
1987
2052
|
self, operation_name: Literal["describe_data_shares"]
|
|
1988
2053
|
) -> DescribeDataSharesPaginator:
|
mypy_boto3_redshift/literals.py
CHANGED
|
@@ -13,7 +13,7 @@ Usage::
|
|
|
13
13
|
"""
|
|
14
14
|
import sys
|
|
15
15
|
|
|
16
|
-
if sys.version_info >= (3,
|
|
16
|
+
if sys.version_info >= (3, 12):
|
|
17
17
|
from typing import Literal
|
|
18
18
|
else:
|
|
19
19
|
from typing_extensions import Literal
|
|
@@ -39,6 +39,7 @@ __all__ = (
|
|
|
39
39
|
"DescribeClusterTracksPaginatorName",
|
|
40
40
|
"DescribeClusterVersionsPaginatorName",
|
|
41
41
|
"DescribeClustersPaginatorName",
|
|
42
|
+
"DescribeCustomDomainAssociationsPaginatorName",
|
|
42
43
|
"DescribeDataSharesForConsumerPaginatorName",
|
|
43
44
|
"DescribeDataSharesForProducerPaginatorName",
|
|
44
45
|
"DescribeDataSharesPaginatorName",
|
|
@@ -116,6 +117,7 @@ DescribeClusterSubnetGroupsPaginatorName = Literal["describe_cluster_subnet_grou
|
|
|
116
117
|
DescribeClusterTracksPaginatorName = Literal["describe_cluster_tracks"]
|
|
117
118
|
DescribeClusterVersionsPaginatorName = Literal["describe_cluster_versions"]
|
|
118
119
|
DescribeClustersPaginatorName = Literal["describe_clusters"]
|
|
120
|
+
DescribeCustomDomainAssociationsPaginatorName = Literal["describe_custom_domain_associations"]
|
|
119
121
|
DescribeDataSharesForConsumerPaginatorName = Literal["describe_data_shares_for_consumer"]
|
|
120
122
|
DescribeDataSharesForProducerPaginatorName = Literal["describe_data_shares_for_producer"]
|
|
121
123
|
DescribeDataSharesPaginatorName = Literal["describe_data_shares"]
|
|
@@ -189,6 +191,7 @@ ServiceName = Literal[
|
|
|
189
191
|
"apigatewayv2",
|
|
190
192
|
"appconfig",
|
|
191
193
|
"appconfigdata",
|
|
194
|
+
"appfabric",
|
|
192
195
|
"appflow",
|
|
193
196
|
"appintegrations",
|
|
194
197
|
"application-autoscaling",
|
|
@@ -236,6 +239,7 @@ ServiceName = Literal[
|
|
|
236
239
|
"codecommit",
|
|
237
240
|
"codedeploy",
|
|
238
241
|
"codeguru-reviewer",
|
|
242
|
+
"codeguru-security",
|
|
239
243
|
"codeguruprofiler",
|
|
240
244
|
"codepipeline",
|
|
241
245
|
"codestar",
|
|
@@ -291,6 +295,7 @@ ServiceName = Literal[
|
|
|
291
295
|
"emr",
|
|
292
296
|
"emr-containers",
|
|
293
297
|
"emr-serverless",
|
|
298
|
+
"entityresolution",
|
|
294
299
|
"es",
|
|
295
300
|
"events",
|
|
296
301
|
"evidently",
|
|
@@ -322,6 +327,7 @@ ServiceName = Literal[
|
|
|
322
327
|
"importexport",
|
|
323
328
|
"inspector",
|
|
324
329
|
"inspector2",
|
|
330
|
+
"internetmonitor",
|
|
325
331
|
"iot",
|
|
326
332
|
"iot-data",
|
|
327
333
|
"iot-jobs-data",
|
|
@@ -340,6 +346,7 @@ ServiceName = Literal[
|
|
|
340
346
|
"iottwinmaker",
|
|
341
347
|
"iotwireless",
|
|
342
348
|
"ivs",
|
|
349
|
+
"ivs-realtime",
|
|
343
350
|
"ivschat",
|
|
344
351
|
"kafka",
|
|
345
352
|
"kafkaconnect",
|
|
@@ -375,6 +382,7 @@ ServiceName = Literal[
|
|
|
375
382
|
"macie",
|
|
376
383
|
"macie2",
|
|
377
384
|
"managedblockchain",
|
|
385
|
+
"managedblockchain-query",
|
|
378
386
|
"marketplace-catalog",
|
|
379
387
|
"marketplace-entitlement",
|
|
380
388
|
"marketplacecommerceanalytics",
|
|
@@ -383,9 +391,11 @@ ServiceName = Literal[
|
|
|
383
391
|
"medialive",
|
|
384
392
|
"mediapackage",
|
|
385
393
|
"mediapackage-vod",
|
|
394
|
+
"mediapackagev2",
|
|
386
395
|
"mediastore",
|
|
387
396
|
"mediastore-data",
|
|
388
397
|
"mediatailor",
|
|
398
|
+
"medical-imaging",
|
|
389
399
|
"memorydb",
|
|
390
400
|
"meteringmarketplace",
|
|
391
401
|
"mgh",
|
|
@@ -409,8 +419,11 @@ ServiceName = Literal[
|
|
|
409
419
|
"opsworks",
|
|
410
420
|
"opsworkscm",
|
|
411
421
|
"organizations",
|
|
422
|
+
"osis",
|
|
412
423
|
"outposts",
|
|
413
424
|
"panorama",
|
|
425
|
+
"payment-cryptography",
|
|
426
|
+
"payment-cryptography-data",
|
|
414
427
|
"personalize",
|
|
415
428
|
"personalize-events",
|
|
416
429
|
"personalize-runtime",
|
|
@@ -502,7 +515,9 @@ ServiceName = Literal[
|
|
|
502
515
|
"transcribe",
|
|
503
516
|
"transfer",
|
|
504
517
|
"translate",
|
|
518
|
+
"verifiedpermissions",
|
|
505
519
|
"voice-id",
|
|
520
|
+
"vpc-lattice",
|
|
506
521
|
"waf",
|
|
507
522
|
"waf-regional",
|
|
508
523
|
"wafv2",
|
|
@@ -538,6 +553,7 @@ PaginatorName = Literal[
|
|
|
538
553
|
"describe_cluster_tracks",
|
|
539
554
|
"describe_cluster_versions",
|
|
540
555
|
"describe_clusters",
|
|
556
|
+
"describe_custom_domain_associations",
|
|
541
557
|
"describe_data_shares",
|
|
542
558
|
"describe_data_shares_for_consumer",
|
|
543
559
|
"describe_data_shares_for_producer",
|
|
@@ -586,6 +602,7 @@ RegionName = Literal[
|
|
|
586
602
|
"eu-west-1",
|
|
587
603
|
"eu-west-2",
|
|
588
604
|
"eu-west-3",
|
|
605
|
+
"il-central-1",
|
|
589
606
|
"me-central-1",
|
|
590
607
|
"me-south-1",
|
|
591
608
|
"sa-east-1",
|
mypy_boto3_redshift/literals.pyi
CHANGED
|
@@ -13,7 +13,7 @@ Usage::
|
|
|
13
13
|
"""
|
|
14
14
|
import sys
|
|
15
15
|
|
|
16
|
-
if sys.version_info >= (3,
|
|
16
|
+
if sys.version_info >= (3, 12):
|
|
17
17
|
from typing import Literal
|
|
18
18
|
else:
|
|
19
19
|
from typing_extensions import Literal
|
|
@@ -38,6 +38,7 @@ __all__ = (
|
|
|
38
38
|
"DescribeClusterTracksPaginatorName",
|
|
39
39
|
"DescribeClusterVersionsPaginatorName",
|
|
40
40
|
"DescribeClustersPaginatorName",
|
|
41
|
+
"DescribeCustomDomainAssociationsPaginatorName",
|
|
41
42
|
"DescribeDataSharesForConsumerPaginatorName",
|
|
42
43
|
"DescribeDataSharesForProducerPaginatorName",
|
|
43
44
|
"DescribeDataSharesPaginatorName",
|
|
@@ -114,6 +115,7 @@ DescribeClusterSubnetGroupsPaginatorName = Literal["describe_cluster_subnet_grou
|
|
|
114
115
|
DescribeClusterTracksPaginatorName = Literal["describe_cluster_tracks"]
|
|
115
116
|
DescribeClusterVersionsPaginatorName = Literal["describe_cluster_versions"]
|
|
116
117
|
DescribeClustersPaginatorName = Literal["describe_clusters"]
|
|
118
|
+
DescribeCustomDomainAssociationsPaginatorName = Literal["describe_custom_domain_associations"]
|
|
117
119
|
DescribeDataSharesForConsumerPaginatorName = Literal["describe_data_shares_for_consumer"]
|
|
118
120
|
DescribeDataSharesForProducerPaginatorName = Literal["describe_data_shares_for_producer"]
|
|
119
121
|
DescribeDataSharesPaginatorName = Literal["describe_data_shares"]
|
|
@@ -187,6 +189,7 @@ ServiceName = Literal[
|
|
|
187
189
|
"apigatewayv2",
|
|
188
190
|
"appconfig",
|
|
189
191
|
"appconfigdata",
|
|
192
|
+
"appfabric",
|
|
190
193
|
"appflow",
|
|
191
194
|
"appintegrations",
|
|
192
195
|
"application-autoscaling",
|
|
@@ -234,6 +237,7 @@ ServiceName = Literal[
|
|
|
234
237
|
"codecommit",
|
|
235
238
|
"codedeploy",
|
|
236
239
|
"codeguru-reviewer",
|
|
240
|
+
"codeguru-security",
|
|
237
241
|
"codeguruprofiler",
|
|
238
242
|
"codepipeline",
|
|
239
243
|
"codestar",
|
|
@@ -289,6 +293,7 @@ ServiceName = Literal[
|
|
|
289
293
|
"emr",
|
|
290
294
|
"emr-containers",
|
|
291
295
|
"emr-serverless",
|
|
296
|
+
"entityresolution",
|
|
292
297
|
"es",
|
|
293
298
|
"events",
|
|
294
299
|
"evidently",
|
|
@@ -320,6 +325,7 @@ ServiceName = Literal[
|
|
|
320
325
|
"importexport",
|
|
321
326
|
"inspector",
|
|
322
327
|
"inspector2",
|
|
328
|
+
"internetmonitor",
|
|
323
329
|
"iot",
|
|
324
330
|
"iot-data",
|
|
325
331
|
"iot-jobs-data",
|
|
@@ -338,6 +344,7 @@ ServiceName = Literal[
|
|
|
338
344
|
"iottwinmaker",
|
|
339
345
|
"iotwireless",
|
|
340
346
|
"ivs",
|
|
347
|
+
"ivs-realtime",
|
|
341
348
|
"ivschat",
|
|
342
349
|
"kafka",
|
|
343
350
|
"kafkaconnect",
|
|
@@ -373,6 +380,7 @@ ServiceName = Literal[
|
|
|
373
380
|
"macie",
|
|
374
381
|
"macie2",
|
|
375
382
|
"managedblockchain",
|
|
383
|
+
"managedblockchain-query",
|
|
376
384
|
"marketplace-catalog",
|
|
377
385
|
"marketplace-entitlement",
|
|
378
386
|
"marketplacecommerceanalytics",
|
|
@@ -381,9 +389,11 @@ ServiceName = Literal[
|
|
|
381
389
|
"medialive",
|
|
382
390
|
"mediapackage",
|
|
383
391
|
"mediapackage-vod",
|
|
392
|
+
"mediapackagev2",
|
|
384
393
|
"mediastore",
|
|
385
394
|
"mediastore-data",
|
|
386
395
|
"mediatailor",
|
|
396
|
+
"medical-imaging",
|
|
387
397
|
"memorydb",
|
|
388
398
|
"meteringmarketplace",
|
|
389
399
|
"mgh",
|
|
@@ -407,8 +417,11 @@ ServiceName = Literal[
|
|
|
407
417
|
"opsworks",
|
|
408
418
|
"opsworkscm",
|
|
409
419
|
"organizations",
|
|
420
|
+
"osis",
|
|
410
421
|
"outposts",
|
|
411
422
|
"panorama",
|
|
423
|
+
"payment-cryptography",
|
|
424
|
+
"payment-cryptography-data",
|
|
412
425
|
"personalize",
|
|
413
426
|
"personalize-events",
|
|
414
427
|
"personalize-runtime",
|
|
@@ -500,7 +513,9 @@ ServiceName = Literal[
|
|
|
500
513
|
"transcribe",
|
|
501
514
|
"transfer",
|
|
502
515
|
"translate",
|
|
516
|
+
"verifiedpermissions",
|
|
503
517
|
"voice-id",
|
|
518
|
+
"vpc-lattice",
|
|
504
519
|
"waf",
|
|
505
520
|
"waf-regional",
|
|
506
521
|
"wafv2",
|
|
@@ -536,6 +551,7 @@ PaginatorName = Literal[
|
|
|
536
551
|
"describe_cluster_tracks",
|
|
537
552
|
"describe_cluster_versions",
|
|
538
553
|
"describe_clusters",
|
|
554
|
+
"describe_custom_domain_associations",
|
|
539
555
|
"describe_data_shares",
|
|
540
556
|
"describe_data_shares_for_consumer",
|
|
541
557
|
"describe_data_shares_for_producer",
|
|
@@ -584,6 +600,7 @@ RegionName = Literal[
|
|
|
584
600
|
"eu-west-1",
|
|
585
601
|
"eu-west-2",
|
|
586
602
|
"eu-west-3",
|
|
603
|
+
"il-central-1",
|
|
587
604
|
"me-central-1",
|
|
588
605
|
"me-south-1",
|
|
589
606
|
"sa-east-1",
|