mypy-boto3-redshift 1.26.63__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 +19 -1
- mypy_boto3_redshift/literals.pyi +19 -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.63.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.63.dist-info → mypy_boto3_redshift-1.28.36.dist-info}/WHEEL +1 -1
- mypy_boto3_redshift-1.26.63.dist-info/METADATA +0 -952
- mypy_boto3_redshift-1.26.63.dist-info/RECORD +0 -20
- {mypy_boto3_redshift-1.26.63.dist-info → mypy_boto3_redshift-1.28.36.dist-info}/top_level.txt +0 -0
mypy_boto3_redshift/__init__.py
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
DescribeClusterTracksPaginator,
|
|
20
20
|
DescribeClusterVersionsPaginator,
|
|
21
21
|
DescribeClustersPaginator,
|
|
22
|
+
DescribeCustomDomainAssociationsPaginator,
|
|
22
23
|
DescribeDataSharesForConsumerPaginator,
|
|
23
24
|
DescribeDataSharesForProducerPaginator,
|
|
24
25
|
DescribeDataSharesPaginator,
|
|
@@ -63,6 +64,7 @@ Usage::
|
|
|
63
64
|
describe_cluster_tracks_paginator: DescribeClusterTracksPaginator = client.get_paginator("describe_cluster_tracks")
|
|
64
65
|
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
65
66
|
describe_clusters_paginator: DescribeClustersPaginator = client.get_paginator("describe_clusters")
|
|
67
|
+
describe_custom_domain_associations_paginator: DescribeCustomDomainAssociationsPaginator = client.get_paginator("describe_custom_domain_associations")
|
|
66
68
|
describe_data_shares_paginator: DescribeDataSharesPaginator = client.get_paginator("describe_data_shares")
|
|
67
69
|
describe_data_shares_for_consumer_paginator: DescribeDataSharesForConsumerPaginator = client.get_paginator("describe_data_shares_for_consumer")
|
|
68
70
|
describe_data_shares_for_producer_paginator: DescribeDataSharesForProducerPaginator = client.get_paginator("describe_data_shares_for_producer")
|
|
@@ -99,6 +101,7 @@ from .paginator import (
|
|
|
99
101
|
DescribeClusterSubnetGroupsPaginator,
|
|
100
102
|
DescribeClusterTracksPaginator,
|
|
101
103
|
DescribeClusterVersionsPaginator,
|
|
104
|
+
DescribeCustomDomainAssociationsPaginator,
|
|
102
105
|
DescribeDataSharesForConsumerPaginator,
|
|
103
106
|
DescribeDataSharesForProducerPaginator,
|
|
104
107
|
DescribeDataSharesPaginator,
|
|
@@ -147,6 +150,7 @@ __all__ = (
|
|
|
147
150
|
"DescribeClusterTracksPaginator",
|
|
148
151
|
"DescribeClusterVersionsPaginator",
|
|
149
152
|
"DescribeClustersPaginator",
|
|
153
|
+
"DescribeCustomDomainAssociationsPaginator",
|
|
150
154
|
"DescribeDataSharesForConsumerPaginator",
|
|
151
155
|
"DescribeDataSharesForProducerPaginator",
|
|
152
156
|
"DescribeDataSharesPaginator",
|
mypy_boto3_redshift/__init__.pyi
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
DescribeClusterTracksPaginator,
|
|
20
20
|
DescribeClusterVersionsPaginator,
|
|
21
21
|
DescribeClustersPaginator,
|
|
22
|
+
DescribeCustomDomainAssociationsPaginator,
|
|
22
23
|
DescribeDataSharesForConsumerPaginator,
|
|
23
24
|
DescribeDataSharesForProducerPaginator,
|
|
24
25
|
DescribeDataSharesPaginator,
|
|
@@ -63,6 +64,7 @@ Usage::
|
|
|
63
64
|
describe_cluster_tracks_paginator: DescribeClusterTracksPaginator = client.get_paginator("describe_cluster_tracks")
|
|
64
65
|
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
65
66
|
describe_clusters_paginator: DescribeClustersPaginator = client.get_paginator("describe_clusters")
|
|
67
|
+
describe_custom_domain_associations_paginator: DescribeCustomDomainAssociationsPaginator = client.get_paginator("describe_custom_domain_associations")
|
|
66
68
|
describe_data_shares_paginator: DescribeDataSharesPaginator = client.get_paginator("describe_data_shares")
|
|
67
69
|
describe_data_shares_for_consumer_paginator: DescribeDataSharesForConsumerPaginator = client.get_paginator("describe_data_shares_for_consumer")
|
|
68
70
|
describe_data_shares_for_producer_paginator: DescribeDataSharesForProducerPaginator = client.get_paginator("describe_data_shares_for_producer")
|
|
@@ -99,6 +101,7 @@ from .paginator import (
|
|
|
99
101
|
DescribeClusterSubnetGroupsPaginator,
|
|
100
102
|
DescribeClusterTracksPaginator,
|
|
101
103
|
DescribeClusterVersionsPaginator,
|
|
104
|
+
DescribeCustomDomainAssociationsPaginator,
|
|
102
105
|
DescribeDataSharesForConsumerPaginator,
|
|
103
106
|
DescribeDataSharesForProducerPaginator,
|
|
104
107
|
DescribeDataSharesPaginator,
|
|
@@ -146,6 +149,7 @@ __all__ = (
|
|
|
146
149
|
"DescribeClusterTracksPaginator",
|
|
147
150
|
"DescribeClusterVersionsPaginator",
|
|
148
151
|
"DescribeClustersPaginator",
|
|
152
|
+
"DescribeCustomDomainAssociationsPaginator",
|
|
149
153
|
"DescribeDataSharesForConsumerPaginator",
|
|
150
154
|
"DescribeDataSharesForProducerPaginator",
|
|
151
155
|
"DescribeDataSharesPaginator",
|
mypy_boto3_redshift/__main__.py
CHANGED
|
@@ -9,8 +9,8 @@ def print_info() -> None:
|
|
|
9
9
|
Print package info to stdout.
|
|
10
10
|
"""
|
|
11
11
|
print(
|
|
12
|
-
"Type annotations for boto3.Redshift 1.
|
|
13
|
-
" 7.
|
|
12
|
+
"Type annotations for boto3.Redshift 1.28.36\nVersion: 1.28.36\nBuilder version:"
|
|
13
|
+
" 7.18.0\nDocs: "
|
|
14
14
|
" https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift//\nBoto3 docs: "
|
|
15
15
|
" https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift\nOther"
|
|
16
16
|
" services: https://pypi.org/project/boto3-stubs/\nChangelog: "
|
|
@@ -22,7 +22,7 @@ def print_version() -> None:
|
|
|
22
22
|
"""
|
|
23
23
|
Print package version to stdout.
|
|
24
24
|
"""
|
|
25
|
-
print("1.
|
|
25
|
+
print("1.28.36")
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def main() -> None:
|
mypy_boto3_redshift/client.py
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
|
|
@@ -223,6 +227,8 @@ class Exceptions:
|
|
|
223
227
|
ClusterSubnetGroupQuotaExceededFault: Type[BotocoreClientError]
|
|
224
228
|
ClusterSubnetQuotaExceededFault: Type[BotocoreClientError]
|
|
225
229
|
CopyToRegionDisabledFault: Type[BotocoreClientError]
|
|
230
|
+
CustomCnameAssociationFault: Type[BotocoreClientError]
|
|
231
|
+
CustomDomainAssociationNotFoundFault: Type[BotocoreClientError]
|
|
226
232
|
DependentServiceRequestThrottlingFault: Type[BotocoreClientError]
|
|
227
233
|
DependentServiceUnavailableFault: Type[BotocoreClientError]
|
|
228
234
|
EndpointAlreadyExistsFault: Type[BotocoreClientError]
|
|
@@ -367,7 +373,7 @@ class RedshiftClient(BaseClient):
|
|
|
367
373
|
AssociateEntireAccount: bool = ...,
|
|
368
374
|
ConsumerArn: str = ...,
|
|
369
375
|
ConsumerRegion: str = ...
|
|
370
|
-
) ->
|
|
376
|
+
) -> DataShareResponseTypeDef:
|
|
371
377
|
"""
|
|
372
378
|
From a datashare consumer account, associates a datashare with the account
|
|
373
379
|
(AssociateEntireAccount) or the specified namespace (ConsumerArn).
|
|
@@ -393,7 +399,7 @@ class RedshiftClient(BaseClient):
|
|
|
393
399
|
|
|
394
400
|
def authorize_data_share(
|
|
395
401
|
self, *, DataShareArn: str, ConsumerIdentifier: str
|
|
396
|
-
) ->
|
|
402
|
+
) -> DataShareResponseTypeDef:
|
|
397
403
|
"""
|
|
398
404
|
From a data producer account, authorizes the sharing of a datashare with one or
|
|
399
405
|
more consumer accounts or managing entities.
|
|
@@ -404,7 +410,7 @@ class RedshiftClient(BaseClient):
|
|
|
404
410
|
|
|
405
411
|
def authorize_endpoint_access(
|
|
406
412
|
self, *, Account: str, ClusterIdentifier: str = ..., VpcIds: Sequence[str] = ...
|
|
407
|
-
) ->
|
|
413
|
+
) -> EndpointAuthorizationResponseTypeDef:
|
|
408
414
|
"""
|
|
409
415
|
Grants access to a cluster.
|
|
410
416
|
|
|
@@ -602,6 +608,16 @@ class RedshiftClient(BaseClient):
|
|
|
602
608
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_cluster_subnet_group)
|
|
603
609
|
"""
|
|
604
610
|
|
|
611
|
+
def create_custom_domain_association(
|
|
612
|
+
self, *, CustomDomainName: str, CustomDomainCertificateArn: str, ClusterIdentifier: str
|
|
613
|
+
) -> CreateCustomDomainAssociationResultTypeDef:
|
|
614
|
+
"""
|
|
615
|
+
Used to create a custom domain name for a cluster.
|
|
616
|
+
|
|
617
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.create_custom_domain_association)
|
|
618
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_custom_domain_association)
|
|
619
|
+
"""
|
|
620
|
+
|
|
605
621
|
def create_endpoint_access(
|
|
606
622
|
self,
|
|
607
623
|
*,
|
|
@@ -610,7 +626,7 @@ class RedshiftClient(BaseClient):
|
|
|
610
626
|
ClusterIdentifier: str = ...,
|
|
611
627
|
ResourceOwner: str = ...,
|
|
612
628
|
VpcSecurityGroupIds: Sequence[str] = ...
|
|
613
|
-
) ->
|
|
629
|
+
) -> EndpointAccessResponseTypeDef:
|
|
614
630
|
"""
|
|
615
631
|
Creates a Redshift-managed VPC endpoint.
|
|
616
632
|
|
|
@@ -677,10 +693,10 @@ class RedshiftClient(BaseClient):
|
|
|
677
693
|
Schedule: str,
|
|
678
694
|
IamRole: str,
|
|
679
695
|
ScheduledActionDescription: str = ...,
|
|
680
|
-
StartTime:
|
|
681
|
-
EndTime:
|
|
696
|
+
StartTime: TimestampTypeDef = ...,
|
|
697
|
+
EndTime: TimestampTypeDef = ...,
|
|
682
698
|
Enable: bool = ...
|
|
683
|
-
) ->
|
|
699
|
+
) -> ScheduledActionResponseTypeDef:
|
|
684
700
|
"""
|
|
685
701
|
Creates a scheduled action.
|
|
686
702
|
|
|
@@ -709,7 +725,7 @@ class RedshiftClient(BaseClient):
|
|
|
709
725
|
Tags: Sequence[TagTypeDef] = ...,
|
|
710
726
|
DryRun: bool = ...,
|
|
711
727
|
NextInvocations: int = ...
|
|
712
|
-
) ->
|
|
728
|
+
) -> SnapshotScheduleResponseTypeDef:
|
|
713
729
|
"""
|
|
714
730
|
Create a snapshot schedule that can be associated to a cluster and which
|
|
715
731
|
overrides the default system backup schedule.
|
|
@@ -738,7 +754,7 @@ class RedshiftClient(BaseClient):
|
|
|
738
754
|
Period: UsageLimitPeriodType = ...,
|
|
739
755
|
BreachAction: UsageLimitBreachActionType = ...,
|
|
740
756
|
Tags: Sequence[TagTypeDef] = ...
|
|
741
|
-
) ->
|
|
757
|
+
) -> UsageLimitResponseTypeDef:
|
|
742
758
|
"""
|
|
743
759
|
Creates a usage limit for a specified Amazon Redshift feature on a cluster.
|
|
744
760
|
|
|
@@ -748,7 +764,7 @@ class RedshiftClient(BaseClient):
|
|
|
748
764
|
|
|
749
765
|
def deauthorize_data_share(
|
|
750
766
|
self, *, DataShareArn: str, ConsumerIdentifier: str
|
|
751
|
-
) ->
|
|
767
|
+
) -> DataShareResponseTypeDef:
|
|
752
768
|
"""
|
|
753
769
|
From a datashare producer account, removes authorization from the specified
|
|
754
770
|
datashare.
|
|
@@ -823,7 +839,17 @@ class RedshiftClient(BaseClient):
|
|
|
823
839
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#delete_cluster_subnet_group)
|
|
824
840
|
"""
|
|
825
841
|
|
|
826
|
-
def
|
|
842
|
+
def delete_custom_domain_association(
|
|
843
|
+
self, *, ClusterIdentifier: str
|
|
844
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
845
|
+
"""
|
|
846
|
+
Contains information about deleting a custom domain association for a cluster.
|
|
847
|
+
|
|
848
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.delete_custom_domain_association)
|
|
849
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#delete_custom_domain_association)
|
|
850
|
+
"""
|
|
851
|
+
|
|
852
|
+
def delete_endpoint_access(self, *, EndpointName: str) -> EndpointAccessResponseTypeDef:
|
|
827
853
|
"""
|
|
828
854
|
Deletes a Redshift-managed VPC endpoint.
|
|
829
855
|
|
|
@@ -1000,8 +1026,8 @@ class RedshiftClient(BaseClient):
|
|
|
1000
1026
|
SnapshotIdentifier: str = ...,
|
|
1001
1027
|
SnapshotArn: str = ...,
|
|
1002
1028
|
SnapshotType: str = ...,
|
|
1003
|
-
StartTime:
|
|
1004
|
-
EndTime:
|
|
1029
|
+
StartTime: TimestampTypeDef = ...,
|
|
1030
|
+
EndTime: TimestampTypeDef = ...,
|
|
1005
1031
|
MaxRecords: int = ...,
|
|
1006
1032
|
Marker: str = ...,
|
|
1007
1033
|
OwnerAccount: str = ...,
|
|
@@ -1078,6 +1104,21 @@ class RedshiftClient(BaseClient):
|
|
|
1078
1104
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_clusters)
|
|
1079
1105
|
"""
|
|
1080
1106
|
|
|
1107
|
+
def describe_custom_domain_associations(
|
|
1108
|
+
self,
|
|
1109
|
+
*,
|
|
1110
|
+
CustomDomainName: str = ...,
|
|
1111
|
+
CustomDomainCertificateArn: str = ...,
|
|
1112
|
+
MaxRecords: int = ...,
|
|
1113
|
+
Marker: str = ...
|
|
1114
|
+
) -> CustomDomainAssociationsMessageTypeDef:
|
|
1115
|
+
"""
|
|
1116
|
+
Contains information for custom domain associations for a cluster.
|
|
1117
|
+
|
|
1118
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_custom_domain_associations)
|
|
1119
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_custom_domain_associations)
|
|
1120
|
+
"""
|
|
1121
|
+
|
|
1081
1122
|
def describe_data_shares(
|
|
1082
1123
|
self, *, DataShareArn: str = ..., MaxRecords: int = ..., Marker: str = ...
|
|
1083
1124
|
) -> DescribeDataSharesResultTypeDef:
|
|
@@ -1195,8 +1236,8 @@ class RedshiftClient(BaseClient):
|
|
|
1195
1236
|
*,
|
|
1196
1237
|
SourceIdentifier: str = ...,
|
|
1197
1238
|
SourceType: SourceTypeType = ...,
|
|
1198
|
-
StartTime:
|
|
1199
|
-
EndTime:
|
|
1239
|
+
StartTime: TimestampTypeDef = ...,
|
|
1240
|
+
EndTime: TimestampTypeDef = ...,
|
|
1200
1241
|
Duration: int = ...,
|
|
1201
1242
|
MaxRecords: int = ...,
|
|
1202
1243
|
Marker: str = ...
|
|
@@ -1351,8 +1392,8 @@ class RedshiftClient(BaseClient):
|
|
|
1351
1392
|
*,
|
|
1352
1393
|
ScheduledActionName: str = ...,
|
|
1353
1394
|
TargetActionType: ScheduledActionTypeValuesType = ...,
|
|
1354
|
-
StartTime:
|
|
1355
|
-
EndTime:
|
|
1395
|
+
StartTime: TimestampTypeDef = ...,
|
|
1396
|
+
EndTime: TimestampTypeDef = ...,
|
|
1356
1397
|
Active: bool = ...,
|
|
1357
1398
|
Filters: Sequence[ScheduledActionFilterTypeDef] = ...,
|
|
1358
1399
|
Marker: str = ...,
|
|
@@ -1483,7 +1524,7 @@ class RedshiftClient(BaseClient):
|
|
|
1483
1524
|
DisassociateEntireAccount: bool = ...,
|
|
1484
1525
|
ConsumerArn: str = ...,
|
|
1485
1526
|
ConsumerRegion: str = ...
|
|
1486
|
-
) ->
|
|
1527
|
+
) -> DataShareResponseTypeDef:
|
|
1487
1528
|
"""
|
|
1488
1529
|
From a datashare consumer account, remove association for the specified
|
|
1489
1530
|
datashare.
|
|
@@ -1544,11 +1585,12 @@ class RedshiftClient(BaseClient):
|
|
|
1544
1585
|
self,
|
|
1545
1586
|
*,
|
|
1546
1587
|
DbUser: str,
|
|
1547
|
-
ClusterIdentifier: str,
|
|
1548
1588
|
DbName: str = ...,
|
|
1589
|
+
ClusterIdentifier: str = ...,
|
|
1549
1590
|
DurationSeconds: int = ...,
|
|
1550
1591
|
AutoCreate: bool = ...,
|
|
1551
|
-
DbGroups: Sequence[str] =
|
|
1592
|
+
DbGroups: Sequence[str] = ...,
|
|
1593
|
+
CustomDomainName: str = ...
|
|
1552
1594
|
) -> ClusterCredentialsTypeDef:
|
|
1553
1595
|
"""
|
|
1554
1596
|
Returns a database user name and temporary password with temporary authorization
|
|
@@ -1559,7 +1601,12 @@ class RedshiftClient(BaseClient):
|
|
|
1559
1601
|
"""
|
|
1560
1602
|
|
|
1561
1603
|
def get_cluster_credentials_with_iam(
|
|
1562
|
-
self,
|
|
1604
|
+
self,
|
|
1605
|
+
*,
|
|
1606
|
+
DbName: str = ...,
|
|
1607
|
+
ClusterIdentifier: str = ...,
|
|
1608
|
+
DurationSeconds: int = ...,
|
|
1609
|
+
CustomDomainName: str = ...
|
|
1563
1610
|
) -> ClusterExtendedCredentialsTypeDef:
|
|
1564
1611
|
"""
|
|
1565
1612
|
Returns a database user name and temporary password with temporary authorization
|
|
@@ -1684,8 +1731,8 @@ class RedshiftClient(BaseClient):
|
|
|
1684
1731
|
ClusterIdentifier: str,
|
|
1685
1732
|
DeferMaintenance: bool = ...,
|
|
1686
1733
|
DeferMaintenanceIdentifier: str = ...,
|
|
1687
|
-
DeferMaintenanceStartTime:
|
|
1688
|
-
DeferMaintenanceEndTime:
|
|
1734
|
+
DeferMaintenanceStartTime: TimestampTypeDef = ...,
|
|
1735
|
+
DeferMaintenanceEndTime: TimestampTypeDef = ...,
|
|
1689
1736
|
DeferMaintenanceDuration: int = ...
|
|
1690
1737
|
) -> ModifyClusterMaintenanceResultTypeDef:
|
|
1691
1738
|
"""
|
|
@@ -1743,9 +1790,23 @@ class RedshiftClient(BaseClient):
|
|
|
1743
1790
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#modify_cluster_subnet_group)
|
|
1744
1791
|
"""
|
|
1745
1792
|
|
|
1793
|
+
def modify_custom_domain_association(
|
|
1794
|
+
self,
|
|
1795
|
+
*,
|
|
1796
|
+
ClusterIdentifier: str,
|
|
1797
|
+
CustomDomainName: str = ...,
|
|
1798
|
+
CustomDomainCertificateArn: str = ...
|
|
1799
|
+
) -> ModifyCustomDomainAssociationResultTypeDef:
|
|
1800
|
+
"""
|
|
1801
|
+
Contains information for changing a custom domain association.
|
|
1802
|
+
|
|
1803
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.modify_custom_domain_association)
|
|
1804
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#modify_custom_domain_association)
|
|
1805
|
+
"""
|
|
1806
|
+
|
|
1746
1807
|
def modify_endpoint_access(
|
|
1747
1808
|
self, *, EndpointName: str, VpcSecurityGroupIds: Sequence[str] = ...
|
|
1748
|
-
) ->
|
|
1809
|
+
) -> EndpointAccessResponseTypeDef:
|
|
1749
1810
|
"""
|
|
1750
1811
|
Modifies a Redshift-managed VPC endpoint.
|
|
1751
1812
|
|
|
@@ -1779,10 +1840,10 @@ class RedshiftClient(BaseClient):
|
|
|
1779
1840
|
Schedule: str = ...,
|
|
1780
1841
|
IamRole: str = ...,
|
|
1781
1842
|
ScheduledActionDescription: str = ...,
|
|
1782
|
-
StartTime:
|
|
1783
|
-
EndTime:
|
|
1843
|
+
StartTime: TimestampTypeDef = ...,
|
|
1844
|
+
EndTime: TimestampTypeDef = ...,
|
|
1784
1845
|
Enable: bool = ...
|
|
1785
|
-
) ->
|
|
1846
|
+
) -> ScheduledActionResponseTypeDef:
|
|
1786
1847
|
"""
|
|
1787
1848
|
Modifies a scheduled action.
|
|
1788
1849
|
|
|
@@ -1804,7 +1865,7 @@ class RedshiftClient(BaseClient):
|
|
|
1804
1865
|
|
|
1805
1866
|
def modify_snapshot_schedule(
|
|
1806
1867
|
self, *, ScheduleIdentifier: str, ScheduleDefinitions: Sequence[str]
|
|
1807
|
-
) ->
|
|
1868
|
+
) -> SnapshotScheduleResponseTypeDef:
|
|
1808
1869
|
"""
|
|
1809
1870
|
Modifies a snapshot schedule.
|
|
1810
1871
|
|
|
@@ -1818,7 +1879,7 @@ class RedshiftClient(BaseClient):
|
|
|
1818
1879
|
UsageLimitId: str,
|
|
1819
1880
|
Amount: int = ...,
|
|
1820
1881
|
BreachAction: UsageLimitBreachActionType = ...
|
|
1821
|
-
) ->
|
|
1882
|
+
) -> UsageLimitResponseTypeDef:
|
|
1822
1883
|
"""
|
|
1823
1884
|
Modifies a usage limit in a cluster.
|
|
1824
1885
|
|
|
@@ -1852,7 +1913,7 @@ class RedshiftClient(BaseClient):
|
|
|
1852
1913
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#reboot_cluster)
|
|
1853
1914
|
"""
|
|
1854
1915
|
|
|
1855
|
-
def reject_data_share(self, *, DataShareArn: str) ->
|
|
1916
|
+
def reject_data_share(self, *, DataShareArn: str) -> DataShareResponseTypeDef:
|
|
1856
1917
|
"""
|
|
1857
1918
|
From a datashare consumer account, rejects the specified datashare.
|
|
1858
1919
|
|
|
@@ -1988,7 +2049,7 @@ class RedshiftClient(BaseClient):
|
|
|
1988
2049
|
Account: str = ...,
|
|
1989
2050
|
VpcIds: Sequence[str] = ...,
|
|
1990
2051
|
Force: bool = ...
|
|
1991
|
-
) ->
|
|
2052
|
+
) -> EndpointAuthorizationResponseTypeDef:
|
|
1992
2053
|
"""
|
|
1993
2054
|
Revokes access to a cluster.
|
|
1994
2055
|
|
|
@@ -2118,6 +2179,15 @@ class RedshiftClient(BaseClient):
|
|
|
2118
2179
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_paginator)
|
|
2119
2180
|
"""
|
|
2120
2181
|
|
|
2182
|
+
@overload
|
|
2183
|
+
def get_paginator(
|
|
2184
|
+
self, operation_name: Literal["describe_custom_domain_associations"]
|
|
2185
|
+
) -> DescribeCustomDomainAssociationsPaginator:
|
|
2186
|
+
"""
|
|
2187
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.get_paginator)
|
|
2188
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_paginator)
|
|
2189
|
+
"""
|
|
2190
|
+
|
|
2121
2191
|
@overload
|
|
2122
2192
|
def get_paginator(
|
|
2123
2193
|
self, operation_name: Literal["describe_data_shares"]
|