mypy-boto3-redshift 1.28.36__py3-none-any.whl → 1.28.64__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/__main__.py +3 -3
- mypy_boto3_redshift/client.py +86 -47
- mypy_boto3_redshift/client.pyi +249 -47
- mypy_boto3_redshift/literals.py +5 -0
- mypy_boto3_redshift/literals.pyi +5 -0
- mypy_boto3_redshift/type_defs.py +11 -1
- mypy_boto3_redshift/type_defs.pyi +11 -1
- mypy_boto3_redshift/version.py +1 -1
- {mypy_boto3_redshift-1.28.36.dist-info → mypy_boto3_redshift-1.28.64.dist-info}/METADATA +5 -6
- mypy_boto3_redshift-1.28.64.dist-info/RECORD +20 -0
- mypy_boto3_redshift-1.28.36.dist-info/RECORD +0 -20
- {mypy_boto3_redshift-1.28.36.dist-info → mypy_boto3_redshift-1.28.64.dist-info}/LICENSE +0 -0
- {mypy_boto3_redshift-1.28.36.dist-info → mypy_boto3_redshift-1.28.64.dist-info}/WHEEL +0 -0
- {mypy_boto3_redshift-1.28.36.dist-info → mypy_boto3_redshift-1.28.64.dist-info}/top_level.txt +0 -0
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.28.
|
|
13
|
-
" 7.
|
|
12
|
+
"Type annotations for boto3.Redshift 1.28.64\nVersion: 1.28.64\nBuilder version:"
|
|
13
|
+
" 7.19.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.28.
|
|
25
|
+
print("1.28.64")
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def main() -> None:
|
mypy_boto3_redshift/client.py
CHANGED
|
@@ -350,7 +350,8 @@ class RedshiftClient(BaseClient):
|
|
|
350
350
|
) -> AcceptReservedNodeExchangeOutputMessageTypeDef:
|
|
351
351
|
"""
|
|
352
352
|
Exchanges a DC1 Reserved Node for a DC2 Reserved Node with no changes to the
|
|
353
|
-
configuration (term, payment type, or number of nodes) and no additional
|
|
353
|
+
configuration (term, payment type, or number of nodes) and no additional
|
|
354
|
+
costs.
|
|
354
355
|
|
|
355
356
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.accept_reserved_node_exchange)
|
|
356
357
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#accept_reserved_node_exchange)
|
|
@@ -376,7 +377,8 @@ class RedshiftClient(BaseClient):
|
|
|
376
377
|
) -> DataShareResponseTypeDef:
|
|
377
378
|
"""
|
|
378
379
|
From a datashare consumer account, associates a datashare with the account
|
|
379
|
-
(AssociateEntireAccount) or the specified namespace
|
|
380
|
+
(AssociateEntireAccount) or the specified namespace
|
|
381
|
+
(ConsumerArn).
|
|
380
382
|
|
|
381
383
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.associate_data_share_consumer)
|
|
382
384
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#associate_data_share_consumer)
|
|
@@ -402,7 +404,8 @@ class RedshiftClient(BaseClient):
|
|
|
402
404
|
) -> DataShareResponseTypeDef:
|
|
403
405
|
"""
|
|
404
406
|
From a data producer account, authorizes the sharing of a datashare with one or
|
|
405
|
-
more consumer accounts or managing
|
|
407
|
+
more consumer accounts or managing
|
|
408
|
+
entities.
|
|
406
409
|
|
|
407
410
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.authorize_data_share)
|
|
408
411
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#authorize_data_share)
|
|
@@ -514,9 +517,9 @@ class RedshiftClient(BaseClient):
|
|
|
514
517
|
ClusterIdentifier: str,
|
|
515
518
|
NodeType: str,
|
|
516
519
|
MasterUsername: str,
|
|
517
|
-
MasterUserPassword: str,
|
|
518
520
|
DBName: str = ...,
|
|
519
521
|
ClusterType: str = ...,
|
|
522
|
+
MasterUserPassword: str = ...,
|
|
520
523
|
ClusterSecurityGroups: Sequence[str] = ...,
|
|
521
524
|
VpcSecurityGroupIds: Sequence[str] = ...,
|
|
522
525
|
ClusterSubnetGroupName: str = ...,
|
|
@@ -544,7 +547,9 @@ class RedshiftClient(BaseClient):
|
|
|
544
547
|
AvailabilityZoneRelocation: bool = ...,
|
|
545
548
|
AquaConfigurationStatus: AquaConfigurationStatusType = ...,
|
|
546
549
|
DefaultIamRoleArn: str = ...,
|
|
547
|
-
LoadSampleData: str =
|
|
550
|
+
LoadSampleData: str = ...,
|
|
551
|
+
ManageMasterPassword: bool = ...,
|
|
552
|
+
MasterPasswordSecretKmsKeyId: str = ...
|
|
548
553
|
) -> CreateClusterResultTypeDef:
|
|
549
554
|
"""
|
|
550
555
|
Creates a new cluster with the specified parameters.
|
|
@@ -659,7 +664,8 @@ class RedshiftClient(BaseClient):
|
|
|
659
664
|
"""
|
|
660
665
|
Creates an HSM client certificate that an Amazon Redshift cluster will use to
|
|
661
666
|
connect to the client's HSM in order to store and retrieve the keys used to
|
|
662
|
-
encrypt the cluster
|
|
667
|
+
encrypt the cluster
|
|
668
|
+
databases.
|
|
663
669
|
|
|
664
670
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.create_hsm_client_certificate)
|
|
665
671
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_hsm_client_certificate)
|
|
@@ -677,9 +683,10 @@ class RedshiftClient(BaseClient):
|
|
|
677
683
|
Tags: Sequence[TagTypeDef] = ...
|
|
678
684
|
) -> CreateHsmConfigurationResultTypeDef:
|
|
679
685
|
"""
|
|
680
|
-
Creates an HSM configuration that contains the information required by an
|
|
681
|
-
Redshift cluster to store and use database encryption keys in a Hardware
|
|
682
|
-
Security Module
|
|
686
|
+
Creates an HSM configuration that contains the information required by an
|
|
687
|
+
Amazon Redshift cluster to store and use database encryption keys in a Hardware
|
|
688
|
+
Security Module
|
|
689
|
+
(HSM).
|
|
683
690
|
|
|
684
691
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.create_hsm_configuration)
|
|
685
692
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_hsm_configuration)
|
|
@@ -709,8 +716,9 @@ class RedshiftClient(BaseClient):
|
|
|
709
716
|
) -> CreateSnapshotCopyGrantResultTypeDef:
|
|
710
717
|
"""
|
|
711
718
|
Creates a snapshot copy grant that permits Amazon Redshift to use an encrypted
|
|
712
|
-
symmetric key from Key Management Service (KMS) to encrypt copied snapshots in
|
|
713
|
-
destination
|
|
719
|
+
symmetric key from Key Management Service (KMS) to encrypt copied snapshots in
|
|
720
|
+
a destination
|
|
721
|
+
region.
|
|
714
722
|
|
|
715
723
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.create_snapshot_copy_grant)
|
|
716
724
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_snapshot_copy_grant)
|
|
@@ -728,7 +736,8 @@ class RedshiftClient(BaseClient):
|
|
|
728
736
|
) -> SnapshotScheduleResponseTypeDef:
|
|
729
737
|
"""
|
|
730
738
|
Create a snapshot schedule that can be associated to a cluster and which
|
|
731
|
-
overrides the default system backup
|
|
739
|
+
overrides the default system backup
|
|
740
|
+
schedule.
|
|
732
741
|
|
|
733
742
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.create_snapshot_schedule)
|
|
734
743
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#create_snapshot_schedule)
|
|
@@ -981,7 +990,8 @@ class RedshiftClient(BaseClient):
|
|
|
981
990
|
) -> ClusterParameterGroupsMessageTypeDef:
|
|
982
991
|
"""
|
|
983
992
|
Returns a list of Amazon Redshift parameter groups, including parameter groups
|
|
984
|
-
you created and the default parameter
|
|
993
|
+
you created and the default parameter
|
|
994
|
+
group.
|
|
985
995
|
|
|
986
996
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_cluster_parameter_groups)
|
|
987
997
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_cluster_parameter_groups)
|
|
@@ -997,7 +1007,8 @@ class RedshiftClient(BaseClient):
|
|
|
997
1007
|
) -> ClusterParameterGroupDetailsTypeDef:
|
|
998
1008
|
"""
|
|
999
1009
|
Returns a detailed list of parameters contained within the specified Amazon
|
|
1000
|
-
Redshift parameter
|
|
1010
|
+
Redshift parameter
|
|
1011
|
+
group.
|
|
1001
1012
|
|
|
1002
1013
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_cluster_parameters)
|
|
1003
1014
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_cluster_parameters)
|
|
@@ -1055,7 +1066,8 @@ class RedshiftClient(BaseClient):
|
|
|
1055
1066
|
) -> ClusterSubnetGroupMessageTypeDef:
|
|
1056
1067
|
"""
|
|
1057
1068
|
Returns one or more cluster subnet group objects, which contain metadata about
|
|
1058
|
-
your cluster subnet
|
|
1069
|
+
your cluster subnet
|
|
1070
|
+
groups.
|
|
1059
1071
|
|
|
1060
1072
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_cluster_subnet_groups)
|
|
1061
1073
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_cluster_subnet_groups)
|
|
@@ -1096,9 +1108,10 @@ class RedshiftClient(BaseClient):
|
|
|
1096
1108
|
TagValues: Sequence[str] = ...
|
|
1097
1109
|
) -> ClustersMessageTypeDef:
|
|
1098
1110
|
"""
|
|
1099
|
-
Returns properties of provisioned clusters including general cluster
|
|
1100
|
-
cluster database properties, maintenance and backup properties, and
|
|
1101
|
-
access
|
|
1111
|
+
Returns properties of provisioned clusters including general cluster
|
|
1112
|
+
properties, cluster database properties, maintenance and backup properties, and
|
|
1113
|
+
security and access
|
|
1114
|
+
properties.
|
|
1102
1115
|
|
|
1103
1116
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_clusters)
|
|
1104
1117
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_clusters)
|
|
@@ -1113,7 +1126,7 @@ class RedshiftClient(BaseClient):
|
|
|
1113
1126
|
Marker: str = ...
|
|
1114
1127
|
) -> CustomDomainAssociationsMessageTypeDef:
|
|
1115
1128
|
"""
|
|
1116
|
-
Contains information
|
|
1129
|
+
Contains information about custom domain associations for a cluster.
|
|
1117
1130
|
|
|
1118
1131
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_custom_domain_associations)
|
|
1119
1132
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_custom_domain_associations)
|
|
@@ -1124,7 +1137,8 @@ class RedshiftClient(BaseClient):
|
|
|
1124
1137
|
) -> DescribeDataSharesResultTypeDef:
|
|
1125
1138
|
"""
|
|
1126
1139
|
Shows the status of any inbound or outbound datashares available in the
|
|
1127
|
-
specified
|
|
1140
|
+
specified
|
|
1141
|
+
account.
|
|
1128
1142
|
|
|
1129
1143
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_data_shares)
|
|
1130
1144
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_data_shares)
|
|
@@ -1140,7 +1154,8 @@ class RedshiftClient(BaseClient):
|
|
|
1140
1154
|
) -> DescribeDataSharesForConsumerResultTypeDef:
|
|
1141
1155
|
"""
|
|
1142
1156
|
Returns a list of datashares where the account identifier being called is a
|
|
1143
|
-
consumer account
|
|
1157
|
+
consumer account
|
|
1158
|
+
identifier.
|
|
1144
1159
|
|
|
1145
1160
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_data_shares_for_consumer)
|
|
1146
1161
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_data_shares_for_consumer)
|
|
@@ -1156,7 +1171,8 @@ class RedshiftClient(BaseClient):
|
|
|
1156
1171
|
) -> DescribeDataSharesForProducerResultTypeDef:
|
|
1157
1172
|
"""
|
|
1158
1173
|
Returns a list of datashares when the account identifier being called is a
|
|
1159
|
-
producer account
|
|
1174
|
+
producer account
|
|
1175
|
+
identifier.
|
|
1160
1176
|
|
|
1161
1177
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_data_shares_for_producer)
|
|
1162
1178
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_data_shares_for_producer)
|
|
@@ -1208,7 +1224,8 @@ class RedshiftClient(BaseClient):
|
|
|
1208
1224
|
def describe_event_categories(self, *, SourceType: str = ...) -> EventCategoriesMessageTypeDef:
|
|
1209
1225
|
"""
|
|
1210
1226
|
Displays a list of event categories for all event source types, or for a
|
|
1211
|
-
specified source
|
|
1227
|
+
specified source
|
|
1228
|
+
type.
|
|
1212
1229
|
|
|
1213
1230
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_event_categories)
|
|
1214
1231
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_event_categories)
|
|
@@ -1225,7 +1242,8 @@ class RedshiftClient(BaseClient):
|
|
|
1225
1242
|
) -> EventSubscriptionsMessageTypeDef:
|
|
1226
1243
|
"""
|
|
1227
1244
|
Lists descriptions of all the Amazon Redshift event notification subscriptions
|
|
1228
|
-
for a customer
|
|
1245
|
+
for a customer
|
|
1246
|
+
account.
|
|
1229
1247
|
|
|
1230
1248
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_event_subscriptions)
|
|
1231
1249
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_event_subscriptions)
|
|
@@ -1244,7 +1262,8 @@ class RedshiftClient(BaseClient):
|
|
|
1244
1262
|
) -> EventsMessageTypeDef:
|
|
1245
1263
|
"""
|
|
1246
1264
|
Returns events related to clusters, security groups, snapshots, and parameter
|
|
1247
|
-
groups for the past 14
|
|
1265
|
+
groups for the past 14
|
|
1266
|
+
days.
|
|
1248
1267
|
|
|
1249
1268
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_events)
|
|
1250
1269
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_events)
|
|
@@ -1284,8 +1303,9 @@ class RedshiftClient(BaseClient):
|
|
|
1284
1303
|
|
|
1285
1304
|
def describe_logging_status(self, *, ClusterIdentifier: str) -> LoggingStatusTypeDef:
|
|
1286
1305
|
"""
|
|
1287
|
-
Describes whether information, such as queries and connection attempts, is
|
|
1288
|
-
logged for the specified Amazon Redshift
|
|
1306
|
+
Describes whether information, such as queries and connection attempts, is
|
|
1307
|
+
being logged for the specified Amazon Redshift
|
|
1308
|
+
cluster.
|
|
1289
1309
|
|
|
1290
1310
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_logging_status)
|
|
1291
1311
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_logging_status)
|
|
@@ -1305,7 +1325,8 @@ class RedshiftClient(BaseClient):
|
|
|
1305
1325
|
) -> NodeConfigurationOptionsMessageTypeDef:
|
|
1306
1326
|
"""
|
|
1307
1327
|
Returns properties of possible node configurations such as node type, number of
|
|
1308
|
-
nodes, and disk usage for the specified action
|
|
1328
|
+
nodes, and disk usage for the specified action
|
|
1329
|
+
type.
|
|
1309
1330
|
|
|
1310
1331
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_node_configuration_options)
|
|
1311
1332
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_node_configuration_options)
|
|
@@ -1363,7 +1384,8 @@ class RedshiftClient(BaseClient):
|
|
|
1363
1384
|
"""
|
|
1364
1385
|
Returns a list of the available reserved node offerings by Amazon Redshift with
|
|
1365
1386
|
their descriptions including the node type, the fixed and recurring costs of
|
|
1366
|
-
reserving the node and duration the node will be reserved for
|
|
1387
|
+
reserving the node and duration the node will be reserved for
|
|
1388
|
+
you.
|
|
1367
1389
|
|
|
1368
1390
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_reserved_node_offerings)
|
|
1369
1391
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_reserved_node_offerings)
|
|
@@ -1417,7 +1439,8 @@ class RedshiftClient(BaseClient):
|
|
|
1417
1439
|
) -> SnapshotCopyGrantMessageTypeDef:
|
|
1418
1440
|
"""
|
|
1419
1441
|
Returns a list of snapshot copy grants owned by the Amazon Web Services account
|
|
1420
|
-
in the destination
|
|
1442
|
+
in the destination
|
|
1443
|
+
region.
|
|
1421
1444
|
|
|
1422
1445
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_snapshot_copy_grants)
|
|
1423
1446
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_snapshot_copy_grants)
|
|
@@ -1458,7 +1481,8 @@ class RedshiftClient(BaseClient):
|
|
|
1458
1481
|
) -> TableRestoreStatusMessageTypeDef:
|
|
1459
1482
|
"""
|
|
1460
1483
|
Lists the status of one or more table restore requests made using the
|
|
1461
|
-
RestoreTableFromClusterSnapshot API
|
|
1484
|
+
RestoreTableFromClusterSnapshot API
|
|
1485
|
+
action.
|
|
1462
1486
|
|
|
1463
1487
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.describe_table_restore_status)
|
|
1464
1488
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#describe_table_restore_status)
|
|
@@ -1502,7 +1526,8 @@ class RedshiftClient(BaseClient):
|
|
|
1502
1526
|
def disable_logging(self, *, ClusterIdentifier: str) -> LoggingStatusTypeDef:
|
|
1503
1527
|
"""
|
|
1504
1528
|
Stops logging information, such as queries and connection attempts, for the
|
|
1505
|
-
specified Amazon Redshift
|
|
1529
|
+
specified Amazon Redshift
|
|
1530
|
+
cluster.
|
|
1506
1531
|
|
|
1507
1532
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.disable_logging)
|
|
1508
1533
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#disable_logging)
|
|
@@ -1511,7 +1536,8 @@ class RedshiftClient(BaseClient):
|
|
|
1511
1536
|
def disable_snapshot_copy(self, *, ClusterIdentifier: str) -> DisableSnapshotCopyResultTypeDef:
|
|
1512
1537
|
"""
|
|
1513
1538
|
Disables the automatic copying of snapshots from one region to another region
|
|
1514
|
-
for a specified
|
|
1539
|
+
for a specified
|
|
1540
|
+
cluster.
|
|
1515
1541
|
|
|
1516
1542
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.disable_snapshot_copy)
|
|
1517
1543
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#disable_snapshot_copy)
|
|
@@ -1544,7 +1570,8 @@ class RedshiftClient(BaseClient):
|
|
|
1544
1570
|
) -> LoggingStatusTypeDef:
|
|
1545
1571
|
"""
|
|
1546
1572
|
Starts logging information, such as queries and connection attempts, for the
|
|
1547
|
-
specified Amazon Redshift
|
|
1573
|
+
specified Amazon Redshift
|
|
1574
|
+
cluster.
|
|
1548
1575
|
|
|
1549
1576
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.enable_logging)
|
|
1550
1577
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#enable_logging)
|
|
@@ -1561,7 +1588,8 @@ class RedshiftClient(BaseClient):
|
|
|
1561
1588
|
) -> EnableSnapshotCopyResultTypeDef:
|
|
1562
1589
|
"""
|
|
1563
1590
|
Enables the automatic copy of snapshots from one region to another region for a
|
|
1564
|
-
specified
|
|
1591
|
+
specified
|
|
1592
|
+
cluster.
|
|
1565
1593
|
|
|
1566
1594
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.enable_snapshot_copy)
|
|
1567
1595
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#enable_snapshot_copy)
|
|
@@ -1593,8 +1621,9 @@ class RedshiftClient(BaseClient):
|
|
|
1593
1621
|
CustomDomainName: str = ...
|
|
1594
1622
|
) -> ClusterCredentialsTypeDef:
|
|
1595
1623
|
"""
|
|
1596
|
-
Returns a database user name and temporary password with temporary
|
|
1597
|
-
to log on to an Amazon Redshift
|
|
1624
|
+
Returns a database user name and temporary password with temporary
|
|
1625
|
+
authorization to log on to an Amazon Redshift
|
|
1626
|
+
database.
|
|
1598
1627
|
|
|
1599
1628
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.get_cluster_credentials)
|
|
1600
1629
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_cluster_credentials)
|
|
@@ -1609,8 +1638,9 @@ class RedshiftClient(BaseClient):
|
|
|
1609
1638
|
CustomDomainName: str = ...
|
|
1610
1639
|
) -> ClusterExtendedCredentialsTypeDef:
|
|
1611
1640
|
"""
|
|
1612
|
-
Returns a database user name and temporary password with temporary
|
|
1613
|
-
to log in to an Amazon Redshift
|
|
1641
|
+
Returns a database user name and temporary password with temporary
|
|
1642
|
+
authorization to log in to an Amazon Redshift
|
|
1643
|
+
database.
|
|
1614
1644
|
|
|
1615
1645
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.get_cluster_credentials_with_iam)
|
|
1616
1646
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_cluster_credentials_with_iam)
|
|
@@ -1637,7 +1667,8 @@ class RedshiftClient(BaseClient):
|
|
|
1637
1667
|
) -> GetReservedNodeExchangeOfferingsOutputMessageTypeDef:
|
|
1638
1668
|
"""
|
|
1639
1669
|
Returns an array of DC2 ReservedNodeOfferings that matches the payment type,
|
|
1640
|
-
term, and usage price of the given DC1 reserved
|
|
1670
|
+
term, and usage price of the given DC1 reserved
|
|
1671
|
+
node.
|
|
1641
1672
|
|
|
1642
1673
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.get_reserved_node_exchange_offerings)
|
|
1643
1674
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_reserved_node_exchange_offerings)
|
|
@@ -1690,7 +1721,9 @@ class RedshiftClient(BaseClient):
|
|
|
1690
1721
|
KmsKeyId: str = ...,
|
|
1691
1722
|
AvailabilityZoneRelocation: bool = ...,
|
|
1692
1723
|
AvailabilityZone: str = ...,
|
|
1693
|
-
Port: int =
|
|
1724
|
+
Port: int = ...,
|
|
1725
|
+
ManageMasterPassword: bool = ...,
|
|
1726
|
+
MasterPasswordSecretKmsKeyId: str = ...
|
|
1694
1727
|
) -> ModifyClusterResultTypeDef:
|
|
1695
1728
|
"""
|
|
1696
1729
|
Modifies the settings for a cluster.
|
|
@@ -1718,8 +1751,9 @@ class RedshiftClient(BaseClient):
|
|
|
1718
1751
|
DefaultIamRoleArn: str = ...
|
|
1719
1752
|
) -> ModifyClusterIamRolesResultTypeDef:
|
|
1720
1753
|
"""
|
|
1721
|
-
Modifies the list of Identity and Access Management (IAM) roles that can be
|
|
1722
|
-
by the cluster to access other Amazon Web Services
|
|
1754
|
+
Modifies the list of Identity and Access Management (IAM) roles that can be
|
|
1755
|
+
used by the cluster to access other Amazon Web Services
|
|
1756
|
+
services.
|
|
1723
1757
|
|
|
1724
1758
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.modify_cluster_iam_roles)
|
|
1725
1759
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#modify_cluster_iam_roles)
|
|
@@ -1930,7 +1964,8 @@ class RedshiftClient(BaseClient):
|
|
|
1930
1964
|
) -> ClusterParameterGroupNameMessageTypeDef:
|
|
1931
1965
|
"""
|
|
1932
1966
|
Sets one or more parameters of the specified parameter group to their default
|
|
1933
|
-
values and sets the source values of the parameters to
|
|
1967
|
+
values and sets the source values of the parameters to
|
|
1968
|
+
"engine-default".
|
|
1934
1969
|
|
|
1935
1970
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.reset_cluster_parameter_group)
|
|
1936
1971
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#reset_cluster_parameter_group)
|
|
@@ -1989,7 +2024,9 @@ class RedshiftClient(BaseClient):
|
|
|
1989
2024
|
DefaultIamRoleArn: str = ...,
|
|
1990
2025
|
ReservedNodeId: str = ...,
|
|
1991
2026
|
TargetReservedNodeOfferingId: str = ...,
|
|
1992
|
-
Encrypted: bool =
|
|
2027
|
+
Encrypted: bool = ...,
|
|
2028
|
+
ManageMasterPassword: bool = ...,
|
|
2029
|
+
MasterPasswordSecretKmsKeyId: str = ...
|
|
1993
2030
|
) -> RestoreFromClusterSnapshotResultTypeDef:
|
|
1994
2031
|
"""
|
|
1995
2032
|
Creates a new cluster from a snapshot.
|
|
@@ -2036,7 +2073,8 @@ class RedshiftClient(BaseClient):
|
|
|
2036
2073
|
) -> RevokeClusterSecurityGroupIngressResultTypeDef:
|
|
2037
2074
|
"""
|
|
2038
2075
|
Revokes an ingress rule in an Amazon Redshift security group for a previously
|
|
2039
|
-
authorized IP range or Amazon EC2 security
|
|
2076
|
+
authorized IP range or Amazon EC2 security
|
|
2077
|
+
group.
|
|
2040
2078
|
|
|
2041
2079
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.revoke_cluster_security_group_ingress)
|
|
2042
2080
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#revoke_cluster_security_group_ingress)
|
|
@@ -2067,7 +2105,8 @@ class RedshiftClient(BaseClient):
|
|
|
2067
2105
|
) -> RevokeSnapshotAccessResultTypeDef:
|
|
2068
2106
|
"""
|
|
2069
2107
|
Removes the ability of the specified Amazon Web Services account to restore the
|
|
2070
|
-
specified
|
|
2108
|
+
specified
|
|
2109
|
+
snapshot.
|
|
2071
2110
|
|
|
2072
2111
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.revoke_snapshot_access)
|
|
2073
2112
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#revoke_snapshot_access)
|