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
mypy_boto3_redshift/client.pyi
CHANGED
|
@@ -70,6 +70,7 @@ from .paginator import (
|
|
|
70
70
|
DescribeUsageLimitsPaginator,
|
|
71
71
|
GetReservedNodeExchangeConfigurationOptionsPaginator,
|
|
72
72
|
GetReservedNodeExchangeOfferingsPaginator,
|
|
73
|
+
ListRecommendationsPaginator,
|
|
73
74
|
)
|
|
74
75
|
from .type_defs import (
|
|
75
76
|
AcceptReservedNodeExchangeOutputMessageTypeDef,
|
|
@@ -135,6 +136,7 @@ from .type_defs import (
|
|
|
135
136
|
HsmClientCertificateMessageTypeDef,
|
|
136
137
|
HsmConfigurationMessageTypeDef,
|
|
137
138
|
InboundIntegrationsMessageTypeDef,
|
|
139
|
+
ListRecommendationsResultTypeDef,
|
|
138
140
|
LoggingStatusTypeDef,
|
|
139
141
|
ModifyAquaOutputMessageTypeDef,
|
|
140
142
|
ModifyAuthenticationProfileResultTypeDef,
|
|
@@ -390,7 +392,7 @@ class RedshiftClient(BaseClient):
|
|
|
390
392
|
AssociateEntireAccount: bool = ...,
|
|
391
393
|
ConsumerArn: str = ...,
|
|
392
394
|
ConsumerRegion: str = ...,
|
|
393
|
-
AllowWrites: bool =
|
|
395
|
+
AllowWrites: bool = ...,
|
|
394
396
|
) -> DataShareResponseTypeDef:
|
|
395
397
|
"""
|
|
396
398
|
From a datashare consumer account, associates a datashare with the account
|
|
@@ -407,7 +409,7 @@ class RedshiftClient(BaseClient):
|
|
|
407
409
|
ClusterSecurityGroupName: str,
|
|
408
410
|
CIDRIP: str = ...,
|
|
409
411
|
EC2SecurityGroupName: str = ...,
|
|
410
|
-
EC2SecurityGroupOwnerId: str =
|
|
412
|
+
EC2SecurityGroupOwnerId: str = ...,
|
|
411
413
|
) -> AuthorizeClusterSecurityGroupIngressResultTypeDef:
|
|
412
414
|
"""
|
|
413
415
|
Adds an inbound (ingress) rule to an Amazon Redshift security group.
|
|
@@ -444,7 +446,7 @@ class RedshiftClient(BaseClient):
|
|
|
444
446
|
AccountWithRestoreAccess: str,
|
|
445
447
|
SnapshotIdentifier: str = ...,
|
|
446
448
|
SnapshotArn: str = ...,
|
|
447
|
-
SnapshotClusterIdentifier: str =
|
|
449
|
+
SnapshotClusterIdentifier: str = ...,
|
|
448
450
|
) -> AuthorizeSnapshotAccessResultTypeDef:
|
|
449
451
|
"""
|
|
450
452
|
Authorizes the specified Amazon Web Services account to restore the specified
|
|
@@ -469,7 +471,7 @@ class RedshiftClient(BaseClient):
|
|
|
469
471
|
*,
|
|
470
472
|
SnapshotIdentifierList: Sequence[str],
|
|
471
473
|
ManualSnapshotRetentionPeriod: int = ...,
|
|
472
|
-
Force: bool =
|
|
474
|
+
Force: bool = ...,
|
|
473
475
|
) -> BatchModifyClusterSnapshotsOutputMessageTypeDef:
|
|
474
476
|
"""
|
|
475
477
|
Modifies the settings for a set of cluster snapshots.
|
|
@@ -508,7 +510,7 @@ class RedshiftClient(BaseClient):
|
|
|
508
510
|
SourceSnapshotIdentifier: str,
|
|
509
511
|
TargetSnapshotIdentifier: str,
|
|
510
512
|
SourceSnapshotClusterIdentifier: str = ...,
|
|
511
|
-
ManualSnapshotRetentionPeriod: int =
|
|
513
|
+
ManualSnapshotRetentionPeriod: int = ...,
|
|
512
514
|
) -> CopyClusterSnapshotResultTypeDef:
|
|
513
515
|
"""
|
|
514
516
|
Copies the specified automated cluster snapshot to a new manual cluster
|
|
@@ -569,7 +571,7 @@ class RedshiftClient(BaseClient):
|
|
|
569
571
|
MasterPasswordSecretKmsKeyId: str = ...,
|
|
570
572
|
IpAddressType: str = ...,
|
|
571
573
|
MultiAZ: bool = ...,
|
|
572
|
-
RedshiftIdcApplicationArn: str =
|
|
574
|
+
RedshiftIdcApplicationArn: str = ...,
|
|
573
575
|
) -> CreateClusterResultTypeDef:
|
|
574
576
|
"""
|
|
575
577
|
Creates a new cluster with the specified parameters.
|
|
@@ -584,7 +586,7 @@ class RedshiftClient(BaseClient):
|
|
|
584
586
|
ParameterGroupName: str,
|
|
585
587
|
ParameterGroupFamily: str,
|
|
586
588
|
Description: str,
|
|
587
|
-
Tags: Sequence[TagTypeDef] =
|
|
589
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
588
590
|
) -> CreateClusterParameterGroupResultTypeDef:
|
|
589
591
|
"""
|
|
590
592
|
Creates an Amazon Redshift parameter group.
|
|
@@ -609,7 +611,7 @@ class RedshiftClient(BaseClient):
|
|
|
609
611
|
SnapshotIdentifier: str,
|
|
610
612
|
ClusterIdentifier: str,
|
|
611
613
|
ManualSnapshotRetentionPeriod: int = ...,
|
|
612
|
-
Tags: Sequence[TagTypeDef] =
|
|
614
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
613
615
|
) -> CreateClusterSnapshotResultTypeDef:
|
|
614
616
|
"""
|
|
615
617
|
Creates a manual snapshot of the specified cluster.
|
|
@@ -624,7 +626,7 @@ class RedshiftClient(BaseClient):
|
|
|
624
626
|
ClusterSubnetGroupName: str,
|
|
625
627
|
Description: str,
|
|
626
628
|
SubnetIds: Sequence[str],
|
|
627
|
-
Tags: Sequence[TagTypeDef] =
|
|
629
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
628
630
|
) -> CreateClusterSubnetGroupResultTypeDef:
|
|
629
631
|
"""
|
|
630
632
|
Creates a new Amazon Redshift subnet group.
|
|
@@ -650,7 +652,7 @@ class RedshiftClient(BaseClient):
|
|
|
650
652
|
SubnetGroupName: str,
|
|
651
653
|
ClusterIdentifier: str = ...,
|
|
652
654
|
ResourceOwner: str = ...,
|
|
653
|
-
VpcSecurityGroupIds: Sequence[str] =
|
|
655
|
+
VpcSecurityGroupIds: Sequence[str] = ...,
|
|
654
656
|
) -> EndpointAccessResponseTypeDef:
|
|
655
657
|
"""
|
|
656
658
|
Creates a Redshift-managed VPC endpoint.
|
|
@@ -669,7 +671,7 @@ class RedshiftClient(BaseClient):
|
|
|
669
671
|
EventCategories: Sequence[str] = ...,
|
|
670
672
|
Severity: str = ...,
|
|
671
673
|
Enabled: bool = ...,
|
|
672
|
-
Tags: Sequence[TagTypeDef] =
|
|
674
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
673
675
|
) -> CreateEventSubscriptionResultTypeDef:
|
|
674
676
|
"""
|
|
675
677
|
Creates an Amazon Redshift event notification subscription.
|
|
@@ -700,7 +702,7 @@ class RedshiftClient(BaseClient):
|
|
|
700
702
|
HsmPartitionName: str,
|
|
701
703
|
HsmPartitionPassword: str,
|
|
702
704
|
HsmServerPublicCertificate: str,
|
|
703
|
-
Tags: Sequence[TagTypeDef] =
|
|
705
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
704
706
|
) -> CreateHsmConfigurationResultTypeDef:
|
|
705
707
|
"""
|
|
706
708
|
Creates an HSM configuration that contains the information required by an
|
|
@@ -721,7 +723,7 @@ class RedshiftClient(BaseClient):
|
|
|
721
723
|
IamRoleArn: str,
|
|
722
724
|
IdentityNamespace: str = ...,
|
|
723
725
|
AuthorizedTokenIssuerList: Sequence[AuthorizedTokenIssuerTypeDef] = ...,
|
|
724
|
-
ServiceIntegrations: Sequence[ServiceIntegrationsUnionTypeDef] =
|
|
726
|
+
ServiceIntegrations: Sequence[ServiceIntegrationsUnionTypeDef] = ...,
|
|
725
727
|
) -> CreateRedshiftIdcApplicationResultTypeDef:
|
|
726
728
|
"""
|
|
727
729
|
Creates an Amazon Redshift application for use with IAM Identity Center.
|
|
@@ -740,7 +742,7 @@ class RedshiftClient(BaseClient):
|
|
|
740
742
|
ScheduledActionDescription: str = ...,
|
|
741
743
|
StartTime: TimestampTypeDef = ...,
|
|
742
744
|
EndTime: TimestampTypeDef = ...,
|
|
743
|
-
Enable: bool =
|
|
745
|
+
Enable: bool = ...,
|
|
744
746
|
) -> ScheduledActionResponseTypeDef:
|
|
745
747
|
"""
|
|
746
748
|
Creates a scheduled action.
|
|
@@ -770,7 +772,7 @@ class RedshiftClient(BaseClient):
|
|
|
770
772
|
ScheduleDescription: str = ...,
|
|
771
773
|
Tags: Sequence[TagTypeDef] = ...,
|
|
772
774
|
DryRun: bool = ...,
|
|
773
|
-
NextInvocations: int =
|
|
775
|
+
NextInvocations: int = ...,
|
|
774
776
|
) -> SnapshotScheduleResponseTypeDef:
|
|
775
777
|
"""
|
|
776
778
|
Create a snapshot schedule that can be associated to a cluster and which
|
|
@@ -800,7 +802,7 @@ class RedshiftClient(BaseClient):
|
|
|
800
802
|
Amount: int,
|
|
801
803
|
Period: UsageLimitPeriodType = ...,
|
|
802
804
|
BreachAction: UsageLimitBreachActionType = ...,
|
|
803
|
-
Tags: Sequence[TagTypeDef] =
|
|
805
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
804
806
|
) -> UsageLimitResponseTypeDef:
|
|
805
807
|
"""
|
|
806
808
|
Creates a usage limit for a specified Amazon Redshift feature on a cluster.
|
|
@@ -836,7 +838,7 @@ class RedshiftClient(BaseClient):
|
|
|
836
838
|
ClusterIdentifier: str,
|
|
837
839
|
SkipFinalClusterSnapshot: bool = ...,
|
|
838
840
|
FinalClusterSnapshotIdentifier: str = ...,
|
|
839
|
-
FinalClusterSnapshotRetentionPeriod: int =
|
|
841
|
+
FinalClusterSnapshotRetentionPeriod: int = ...,
|
|
840
842
|
) -> DeleteClusterResultTypeDef:
|
|
841
843
|
"""
|
|
842
844
|
Deletes a previously provisioned cluster without its final snapshot being
|
|
@@ -1042,7 +1044,7 @@ class RedshiftClient(BaseClient):
|
|
|
1042
1044
|
MaxRecords: int = ...,
|
|
1043
1045
|
Marker: str = ...,
|
|
1044
1046
|
TagKeys: Sequence[str] = ...,
|
|
1045
|
-
TagValues: Sequence[str] =
|
|
1047
|
+
TagValues: Sequence[str] = ...,
|
|
1046
1048
|
) -> ClusterParameterGroupsMessageTypeDef:
|
|
1047
1049
|
"""
|
|
1048
1050
|
Returns a list of Amazon Redshift parameter groups, including parameter groups
|
|
@@ -1059,7 +1061,7 @@ class RedshiftClient(BaseClient):
|
|
|
1059
1061
|
ParameterGroupName: str,
|
|
1060
1062
|
Source: str = ...,
|
|
1061
1063
|
MaxRecords: int = ...,
|
|
1062
|
-
Marker: str =
|
|
1064
|
+
Marker: str = ...,
|
|
1063
1065
|
) -> ClusterParameterGroupDetailsTypeDef:
|
|
1064
1066
|
"""
|
|
1065
1067
|
Returns a detailed list of parameters contained within the specified Amazon
|
|
@@ -1077,7 +1079,7 @@ class RedshiftClient(BaseClient):
|
|
|
1077
1079
|
MaxRecords: int = ...,
|
|
1078
1080
|
Marker: str = ...,
|
|
1079
1081
|
TagKeys: Sequence[str] = ...,
|
|
1080
|
-
TagValues: Sequence[str] =
|
|
1082
|
+
TagValues: Sequence[str] = ...,
|
|
1081
1083
|
) -> ClusterSecurityGroupMessageTypeDef:
|
|
1082
1084
|
"""
|
|
1083
1085
|
Returns information about Amazon Redshift security groups.
|
|
@@ -1101,7 +1103,7 @@ class RedshiftClient(BaseClient):
|
|
|
1101
1103
|
TagKeys: Sequence[str] = ...,
|
|
1102
1104
|
TagValues: Sequence[str] = ...,
|
|
1103
1105
|
ClusterExists: bool = ...,
|
|
1104
|
-
SortingEntities: Sequence[SnapshotSortingEntityTypeDef] =
|
|
1106
|
+
SortingEntities: Sequence[SnapshotSortingEntityTypeDef] = ...,
|
|
1105
1107
|
) -> SnapshotMessageTypeDef:
|
|
1106
1108
|
"""
|
|
1107
1109
|
Returns one or more snapshot objects, which contain metadata about your cluster
|
|
@@ -1118,7 +1120,7 @@ class RedshiftClient(BaseClient):
|
|
|
1118
1120
|
MaxRecords: int = ...,
|
|
1119
1121
|
Marker: str = ...,
|
|
1120
1122
|
TagKeys: Sequence[str] = ...,
|
|
1121
|
-
TagValues: Sequence[str] =
|
|
1123
|
+
TagValues: Sequence[str] = ...,
|
|
1122
1124
|
) -> ClusterSubnetGroupMessageTypeDef:
|
|
1123
1125
|
"""
|
|
1124
1126
|
Returns one or more cluster subnet group objects, which contain metadata about
|
|
@@ -1145,7 +1147,7 @@ class RedshiftClient(BaseClient):
|
|
|
1145
1147
|
ClusterVersion: str = ...,
|
|
1146
1148
|
ClusterParameterGroupFamily: str = ...,
|
|
1147
1149
|
MaxRecords: int = ...,
|
|
1148
|
-
Marker: str =
|
|
1150
|
+
Marker: str = ...,
|
|
1149
1151
|
) -> ClusterVersionsMessageTypeDef:
|
|
1150
1152
|
"""
|
|
1151
1153
|
Returns descriptions of the available Amazon Redshift cluster versions.
|
|
@@ -1161,7 +1163,7 @@ class RedshiftClient(BaseClient):
|
|
|
1161
1163
|
MaxRecords: int = ...,
|
|
1162
1164
|
Marker: str = ...,
|
|
1163
1165
|
TagKeys: Sequence[str] = ...,
|
|
1164
|
-
TagValues: Sequence[str] =
|
|
1166
|
+
TagValues: Sequence[str] = ...,
|
|
1165
1167
|
) -> ClustersMessageTypeDef:
|
|
1166
1168
|
"""
|
|
1167
1169
|
Returns properties of provisioned clusters including general cluster
|
|
@@ -1179,7 +1181,7 @@ class RedshiftClient(BaseClient):
|
|
|
1179
1181
|
CustomDomainName: str = ...,
|
|
1180
1182
|
CustomDomainCertificateArn: str = ...,
|
|
1181
1183
|
MaxRecords: int = ...,
|
|
1182
|
-
Marker: str =
|
|
1184
|
+
Marker: str = ...,
|
|
1183
1185
|
) -> CustomDomainAssociationsMessageTypeDef:
|
|
1184
1186
|
"""
|
|
1185
1187
|
Contains information about custom domain associations for a cluster.
|
|
@@ -1206,7 +1208,7 @@ class RedshiftClient(BaseClient):
|
|
|
1206
1208
|
ConsumerArn: str = ...,
|
|
1207
1209
|
Status: DataShareStatusForConsumerType = ...,
|
|
1208
1210
|
MaxRecords: int = ...,
|
|
1209
|
-
Marker: str =
|
|
1211
|
+
Marker: str = ...,
|
|
1210
1212
|
) -> DescribeDataSharesForConsumerResultTypeDef:
|
|
1211
1213
|
"""
|
|
1212
1214
|
Returns a list of datashares where the account identifier being called is a
|
|
@@ -1223,7 +1225,7 @@ class RedshiftClient(BaseClient):
|
|
|
1223
1225
|
ProducerArn: str = ...,
|
|
1224
1226
|
Status: DataShareStatusForProducerType = ...,
|
|
1225
1227
|
MaxRecords: int = ...,
|
|
1226
|
-
Marker: str =
|
|
1228
|
+
Marker: str = ...,
|
|
1227
1229
|
) -> DescribeDataSharesForProducerResultTypeDef:
|
|
1228
1230
|
"""
|
|
1229
1231
|
Returns a list of datashares when the account identifier being called is a
|
|
@@ -1252,7 +1254,7 @@ class RedshiftClient(BaseClient):
|
|
|
1252
1254
|
EndpointName: str = ...,
|
|
1253
1255
|
VpcId: str = ...,
|
|
1254
1256
|
MaxRecords: int = ...,
|
|
1255
|
-
Marker: str =
|
|
1257
|
+
Marker: str = ...,
|
|
1256
1258
|
) -> EndpointAccessListTypeDef:
|
|
1257
1259
|
"""
|
|
1258
1260
|
Describes a Redshift-managed VPC endpoint.
|
|
@@ -1268,7 +1270,7 @@ class RedshiftClient(BaseClient):
|
|
|
1268
1270
|
Account: str = ...,
|
|
1269
1271
|
Grantee: bool = ...,
|
|
1270
1272
|
MaxRecords: int = ...,
|
|
1271
|
-
Marker: str =
|
|
1273
|
+
Marker: str = ...,
|
|
1272
1274
|
) -> EndpointAuthorizationListTypeDef:
|
|
1273
1275
|
"""
|
|
1274
1276
|
Describes an endpoint authorization.
|
|
@@ -1294,7 +1296,7 @@ class RedshiftClient(BaseClient):
|
|
|
1294
1296
|
MaxRecords: int = ...,
|
|
1295
1297
|
Marker: str = ...,
|
|
1296
1298
|
TagKeys: Sequence[str] = ...,
|
|
1297
|
-
TagValues: Sequence[str] =
|
|
1299
|
+
TagValues: Sequence[str] = ...,
|
|
1298
1300
|
) -> EventSubscriptionsMessageTypeDef:
|
|
1299
1301
|
"""
|
|
1300
1302
|
Lists descriptions of all the Amazon Redshift event notification subscriptions
|
|
@@ -1314,7 +1316,7 @@ class RedshiftClient(BaseClient):
|
|
|
1314
1316
|
EndTime: TimestampTypeDef = ...,
|
|
1315
1317
|
Duration: int = ...,
|
|
1316
1318
|
MaxRecords: int = ...,
|
|
1317
|
-
Marker: str =
|
|
1319
|
+
Marker: str = ...,
|
|
1318
1320
|
) -> EventsMessageTypeDef:
|
|
1319
1321
|
"""
|
|
1320
1322
|
Returns events related to clusters, security groups, snapshots, and parameter
|
|
@@ -1332,7 +1334,7 @@ class RedshiftClient(BaseClient):
|
|
|
1332
1334
|
MaxRecords: int = ...,
|
|
1333
1335
|
Marker: str = ...,
|
|
1334
1336
|
TagKeys: Sequence[str] = ...,
|
|
1335
|
-
TagValues: Sequence[str] =
|
|
1337
|
+
TagValues: Sequence[str] = ...,
|
|
1336
1338
|
) -> HsmClientCertificateMessageTypeDef:
|
|
1337
1339
|
"""
|
|
1338
1340
|
Returns information about the specified HSM client certificate.
|
|
@@ -1348,7 +1350,7 @@ class RedshiftClient(BaseClient):
|
|
|
1348
1350
|
MaxRecords: int = ...,
|
|
1349
1351
|
Marker: str = ...,
|
|
1350
1352
|
TagKeys: Sequence[str] = ...,
|
|
1351
|
-
TagValues: Sequence[str] =
|
|
1353
|
+
TagValues: Sequence[str] = ...,
|
|
1352
1354
|
) -> HsmConfigurationMessageTypeDef:
|
|
1353
1355
|
"""
|
|
1354
1356
|
Returns information about the specified Amazon Redshift HSM configuration.
|
|
@@ -1363,7 +1365,7 @@ class RedshiftClient(BaseClient):
|
|
|
1363
1365
|
IntegrationArn: str = ...,
|
|
1364
1366
|
TargetArn: str = ...,
|
|
1365
1367
|
MaxRecords: int = ...,
|
|
1366
|
-
Marker: str =
|
|
1368
|
+
Marker: str = ...,
|
|
1367
1369
|
) -> InboundIntegrationsMessageTypeDef:
|
|
1368
1370
|
"""
|
|
1369
1371
|
Returns a list of inbound integrations.
|
|
@@ -1392,7 +1394,7 @@ class RedshiftClient(BaseClient):
|
|
|
1392
1394
|
OwnerAccount: str = ...,
|
|
1393
1395
|
Filters: Sequence[NodeConfigurationOptionsFilterTypeDef] = ...,
|
|
1394
1396
|
Marker: str = ...,
|
|
1395
|
-
MaxRecords: int =
|
|
1397
|
+
MaxRecords: int = ...,
|
|
1396
1398
|
) -> NodeConfigurationOptionsMessageTypeDef:
|
|
1397
1399
|
"""
|
|
1398
1400
|
Returns properties of possible node configurations such as node type, number of
|
|
@@ -1409,7 +1411,7 @@ class RedshiftClient(BaseClient):
|
|
|
1409
1411
|
ClusterVersion: str = ...,
|
|
1410
1412
|
NodeType: str = ...,
|
|
1411
1413
|
MaxRecords: int = ...,
|
|
1412
|
-
Marker: str =
|
|
1414
|
+
Marker: str = ...,
|
|
1413
1415
|
) -> OrderableClusterOptionsMessageTypeDef:
|
|
1414
1416
|
"""
|
|
1415
1417
|
Returns a list of orderable cluster options.
|
|
@@ -1424,7 +1426,7 @@ class RedshiftClient(BaseClient):
|
|
|
1424
1426
|
AccountId: str,
|
|
1425
1427
|
ClusterIdentifier: str,
|
|
1426
1428
|
DatabaseName: str = ...,
|
|
1427
|
-
PartnerName: str =
|
|
1429
|
+
PartnerName: str = ...,
|
|
1428
1430
|
) -> DescribePartnersOutputMessageTypeDef:
|
|
1429
1431
|
"""
|
|
1430
1432
|
Returns information about the partner integrations defined for a cluster.
|
|
@@ -1449,7 +1451,7 @@ class RedshiftClient(BaseClient):
|
|
|
1449
1451
|
ReservedNodeId: str = ...,
|
|
1450
1452
|
ReservedNodeExchangeRequestId: str = ...,
|
|
1451
1453
|
MaxRecords: int = ...,
|
|
1452
|
-
Marker: str =
|
|
1454
|
+
Marker: str = ...,
|
|
1453
1455
|
) -> DescribeReservedNodeExchangeStatusOutputMessageTypeDef:
|
|
1454
1456
|
"""
|
|
1455
1457
|
Returns exchange status details and associated metadata for a reserved-node
|
|
@@ -1500,7 +1502,7 @@ class RedshiftClient(BaseClient):
|
|
|
1500
1502
|
Active: bool = ...,
|
|
1501
1503
|
Filters: Sequence[ScheduledActionFilterTypeDef] = ...,
|
|
1502
1504
|
Marker: str = ...,
|
|
1503
|
-
MaxRecords: int =
|
|
1505
|
+
MaxRecords: int = ...,
|
|
1504
1506
|
) -> ScheduledActionsMessageTypeDef:
|
|
1505
1507
|
"""
|
|
1506
1508
|
Describes properties of scheduled actions.
|
|
@@ -1516,7 +1518,7 @@ class RedshiftClient(BaseClient):
|
|
|
1516
1518
|
MaxRecords: int = ...,
|
|
1517
1519
|
Marker: str = ...,
|
|
1518
1520
|
TagKeys: Sequence[str] = ...,
|
|
1519
|
-
TagValues: Sequence[str] =
|
|
1521
|
+
TagValues: Sequence[str] = ...,
|
|
1520
1522
|
) -> SnapshotCopyGrantMessageTypeDef:
|
|
1521
1523
|
"""
|
|
1522
1524
|
Returns a list of snapshot copy grants owned by the Amazon Web Services account
|
|
@@ -1535,7 +1537,7 @@ class RedshiftClient(BaseClient):
|
|
|
1535
1537
|
TagKeys: Sequence[str] = ...,
|
|
1536
1538
|
TagValues: Sequence[str] = ...,
|
|
1537
1539
|
Marker: str = ...,
|
|
1538
|
-
MaxRecords: int =
|
|
1540
|
+
MaxRecords: int = ...,
|
|
1539
1541
|
) -> DescribeSnapshotSchedulesOutputMessageTypeDef:
|
|
1540
1542
|
"""
|
|
1541
1543
|
Returns a list of snapshot schedules.
|
|
@@ -1558,7 +1560,7 @@ class RedshiftClient(BaseClient):
|
|
|
1558
1560
|
ClusterIdentifier: str = ...,
|
|
1559
1561
|
TableRestoreRequestId: str = ...,
|
|
1560
1562
|
MaxRecords: int = ...,
|
|
1561
|
-
Marker: str =
|
|
1563
|
+
Marker: str = ...,
|
|
1562
1564
|
) -> TableRestoreStatusMessageTypeDef:
|
|
1563
1565
|
"""
|
|
1564
1566
|
Lists the status of one or more table restore requests made using the
|
|
@@ -1577,7 +1579,7 @@ class RedshiftClient(BaseClient):
|
|
|
1577
1579
|
MaxRecords: int = ...,
|
|
1578
1580
|
Marker: str = ...,
|
|
1579
1581
|
TagKeys: Sequence[str] = ...,
|
|
1580
|
-
TagValues: Sequence[str] =
|
|
1582
|
+
TagValues: Sequence[str] = ...,
|
|
1581
1583
|
) -> TaggedResourceListMessageTypeDef:
|
|
1582
1584
|
"""
|
|
1583
1585
|
Returns a list of tags.
|
|
@@ -1595,7 +1597,7 @@ class RedshiftClient(BaseClient):
|
|
|
1595
1597
|
MaxRecords: int = ...,
|
|
1596
1598
|
Marker: str = ...,
|
|
1597
1599
|
TagKeys: Sequence[str] = ...,
|
|
1598
|
-
TagValues: Sequence[str] =
|
|
1600
|
+
TagValues: Sequence[str] = ...,
|
|
1599
1601
|
) -> UsageLimitListTypeDef:
|
|
1600
1602
|
"""
|
|
1601
1603
|
Shows usage limits on a cluster.
|
|
@@ -1630,7 +1632,7 @@ class RedshiftClient(BaseClient):
|
|
|
1630
1632
|
DataShareArn: str,
|
|
1631
1633
|
DisassociateEntireAccount: bool = ...,
|
|
1632
1634
|
ConsumerArn: str = ...,
|
|
1633
|
-
ConsumerRegion: str =
|
|
1635
|
+
ConsumerRegion: str = ...,
|
|
1634
1636
|
) -> DataShareResponseTypeDef:
|
|
1635
1637
|
"""
|
|
1636
1638
|
From a datashare consumer account, remove association for the specified
|
|
@@ -1647,7 +1649,7 @@ class RedshiftClient(BaseClient):
|
|
|
1647
1649
|
BucketName: str = ...,
|
|
1648
1650
|
S3KeyPrefix: str = ...,
|
|
1649
1651
|
LogDestinationType: LogDestinationTypeType = ...,
|
|
1650
|
-
LogExports: Sequence[str] =
|
|
1652
|
+
LogExports: Sequence[str] = ...,
|
|
1651
1653
|
) -> LoggingStatusTypeDef:
|
|
1652
1654
|
"""
|
|
1653
1655
|
Starts logging information, such as queries and connection attempts, for the
|
|
@@ -1665,7 +1667,7 @@ class RedshiftClient(BaseClient):
|
|
|
1665
1667
|
DestinationRegion: str,
|
|
1666
1668
|
RetentionPeriod: int = ...,
|
|
1667
1669
|
SnapshotCopyGrantName: str = ...,
|
|
1668
|
-
ManualSnapshotRetentionPeriod: int =
|
|
1670
|
+
ManualSnapshotRetentionPeriod: int = ...,
|
|
1669
1671
|
) -> EnableSnapshotCopyResultTypeDef:
|
|
1670
1672
|
"""
|
|
1671
1673
|
Enables the automatic copy of snapshots from one region to another region for a
|
|
@@ -1711,7 +1713,7 @@ class RedshiftClient(BaseClient):
|
|
|
1711
1713
|
DurationSeconds: int = ...,
|
|
1712
1714
|
AutoCreate: bool = ...,
|
|
1713
1715
|
DbGroups: Sequence[str] = ...,
|
|
1714
|
-
CustomDomainName: str =
|
|
1716
|
+
CustomDomainName: str = ...,
|
|
1715
1717
|
) -> ClusterCredentialsTypeDef:
|
|
1716
1718
|
"""
|
|
1717
1719
|
Returns a database user name and temporary password with temporary
|
|
@@ -1728,7 +1730,7 @@ class RedshiftClient(BaseClient):
|
|
|
1728
1730
|
DbName: str = ...,
|
|
1729
1731
|
ClusterIdentifier: str = ...,
|
|
1730
1732
|
DurationSeconds: int = ...,
|
|
1731
|
-
CustomDomainName: str =
|
|
1733
|
+
CustomDomainName: str = ...,
|
|
1732
1734
|
) -> ClusterExtendedCredentialsTypeDef:
|
|
1733
1735
|
"""
|
|
1734
1736
|
Returns a database user name and temporary password with temporary
|
|
@@ -1746,7 +1748,7 @@ class RedshiftClient(BaseClient):
|
|
|
1746
1748
|
ClusterIdentifier: str = ...,
|
|
1747
1749
|
SnapshotIdentifier: str = ...,
|
|
1748
1750
|
MaxRecords: int = ...,
|
|
1749
|
-
Marker: str =
|
|
1751
|
+
Marker: str = ...,
|
|
1750
1752
|
) -> GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef:
|
|
1751
1753
|
"""
|
|
1752
1754
|
Gets the configuration options for the reserved-node exchange.
|
|
@@ -1775,6 +1777,23 @@ class RedshiftClient(BaseClient):
|
|
|
1775
1777
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_resource_policy)
|
|
1776
1778
|
"""
|
|
1777
1779
|
|
|
1780
|
+
def list_recommendations(
|
|
1781
|
+
self,
|
|
1782
|
+
*,
|
|
1783
|
+
ClusterIdentifier: str = ...,
|
|
1784
|
+
NamespaceArn: str = ...,
|
|
1785
|
+
MaxRecords: int = ...,
|
|
1786
|
+
Marker: str = ...,
|
|
1787
|
+
) -> ListRecommendationsResultTypeDef:
|
|
1788
|
+
"""
|
|
1789
|
+
List the Amazon Redshift Advisor recommendations for one or multiple Amazon
|
|
1790
|
+
Redshift clusters in an Amazon Web Services
|
|
1791
|
+
account.
|
|
1792
|
+
|
|
1793
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.list_recommendations)
|
|
1794
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#list_recommendations)
|
|
1795
|
+
"""
|
|
1796
|
+
|
|
1778
1797
|
def modify_aqua_configuration(
|
|
1779
1798
|
self, *, ClusterIdentifier: str, AquaConfigurationStatus: AquaConfigurationStatusType = ...
|
|
1780
1799
|
) -> ModifyAquaOutputMessageTypeDef:
|
|
@@ -1826,7 +1845,7 @@ class RedshiftClient(BaseClient):
|
|
|
1826
1845
|
ManageMasterPassword: bool = ...,
|
|
1827
1846
|
MasterPasswordSecretKmsKeyId: str = ...,
|
|
1828
1847
|
IpAddressType: str = ...,
|
|
1829
|
-
MultiAZ: bool =
|
|
1848
|
+
MultiAZ: bool = ...,
|
|
1830
1849
|
) -> ModifyClusterResultTypeDef:
|
|
1831
1850
|
"""
|
|
1832
1851
|
Modifies the settings for a cluster.
|
|
@@ -1851,7 +1870,7 @@ class RedshiftClient(BaseClient):
|
|
|
1851
1870
|
ClusterIdentifier: str,
|
|
1852
1871
|
AddIamRoles: Sequence[str] = ...,
|
|
1853
1872
|
RemoveIamRoles: Sequence[str] = ...,
|
|
1854
|
-
DefaultIamRoleArn: str =
|
|
1873
|
+
DefaultIamRoleArn: str = ...,
|
|
1855
1874
|
) -> ModifyClusterIamRolesResultTypeDef:
|
|
1856
1875
|
"""
|
|
1857
1876
|
Modifies the list of Identity and Access Management (IAM) roles that can be
|
|
@@ -1870,7 +1889,7 @@ class RedshiftClient(BaseClient):
|
|
|
1870
1889
|
DeferMaintenanceIdentifier: str = ...,
|
|
1871
1890
|
DeferMaintenanceStartTime: TimestampTypeDef = ...,
|
|
1872
1891
|
DeferMaintenanceEndTime: TimestampTypeDef = ...,
|
|
1873
|
-
DeferMaintenanceDuration: int =
|
|
1892
|
+
DeferMaintenanceDuration: int = ...,
|
|
1874
1893
|
) -> ModifyClusterMaintenanceResultTypeDef:
|
|
1875
1894
|
"""
|
|
1876
1895
|
Modifies the maintenance settings of a cluster.
|
|
@@ -1894,7 +1913,7 @@ class RedshiftClient(BaseClient):
|
|
|
1894
1913
|
*,
|
|
1895
1914
|
SnapshotIdentifier: str,
|
|
1896
1915
|
ManualSnapshotRetentionPeriod: int = ...,
|
|
1897
|
-
Force: bool =
|
|
1916
|
+
Force: bool = ...,
|
|
1898
1917
|
) -> ModifyClusterSnapshotResultTypeDef:
|
|
1899
1918
|
"""
|
|
1900
1919
|
Modifies the settings for a snapshot.
|
|
@@ -1908,7 +1927,7 @@ class RedshiftClient(BaseClient):
|
|
|
1908
1927
|
*,
|
|
1909
1928
|
ClusterIdentifier: str,
|
|
1910
1929
|
ScheduleIdentifier: str = ...,
|
|
1911
|
-
DisassociateSchedule: bool =
|
|
1930
|
+
DisassociateSchedule: bool = ...,
|
|
1912
1931
|
) -> EmptyResponseMetadataTypeDef:
|
|
1913
1932
|
"""
|
|
1914
1933
|
Modifies a snapshot schedule for a cluster.
|
|
@@ -1956,7 +1975,7 @@ class RedshiftClient(BaseClient):
|
|
|
1956
1975
|
SourceIds: Sequence[str] = ...,
|
|
1957
1976
|
EventCategories: Sequence[str] = ...,
|
|
1958
1977
|
Severity: str = ...,
|
|
1959
|
-
Enabled: bool =
|
|
1978
|
+
Enabled: bool = ...,
|
|
1960
1979
|
) -> ModifyEventSubscriptionResultTypeDef:
|
|
1961
1980
|
"""
|
|
1962
1981
|
Modifies an existing Amazon Redshift event notification subscription.
|
|
@@ -1973,7 +1992,7 @@ class RedshiftClient(BaseClient):
|
|
|
1973
1992
|
IamRoleArn: str = ...,
|
|
1974
1993
|
IdcDisplayName: str = ...,
|
|
1975
1994
|
AuthorizedTokenIssuerList: Sequence[AuthorizedTokenIssuerTypeDef] = ...,
|
|
1976
|
-
ServiceIntegrations: Sequence[ServiceIntegrationsUnionTypeDef] =
|
|
1995
|
+
ServiceIntegrations: Sequence[ServiceIntegrationsUnionTypeDef] = ...,
|
|
1977
1996
|
) -> ModifyRedshiftIdcApplicationResultTypeDef:
|
|
1978
1997
|
"""
|
|
1979
1998
|
Changes an existing Amazon Redshift IAM Identity Center application.
|
|
@@ -1992,7 +2011,7 @@ class RedshiftClient(BaseClient):
|
|
|
1992
2011
|
ScheduledActionDescription: str = ...,
|
|
1993
2012
|
StartTime: TimestampTypeDef = ...,
|
|
1994
2013
|
EndTime: TimestampTypeDef = ...,
|
|
1995
|
-
Enable: bool =
|
|
2014
|
+
Enable: bool = ...,
|
|
1996
2015
|
) -> ScheduledActionResponseTypeDef:
|
|
1997
2016
|
"""
|
|
1998
2017
|
Modifies a scheduled action.
|
|
@@ -2028,7 +2047,7 @@ class RedshiftClient(BaseClient):
|
|
|
2028
2047
|
*,
|
|
2029
2048
|
UsageLimitId: str,
|
|
2030
2049
|
Amount: int = ...,
|
|
2031
|
-
BreachAction: UsageLimitBreachActionType =
|
|
2050
|
+
BreachAction: UsageLimitBreachActionType = ...,
|
|
2032
2051
|
) -> UsageLimitResponseTypeDef:
|
|
2033
2052
|
"""
|
|
2034
2053
|
Modifies a usage limit in a cluster.
|
|
@@ -2086,7 +2105,7 @@ class RedshiftClient(BaseClient):
|
|
|
2086
2105
|
*,
|
|
2087
2106
|
ParameterGroupName: str,
|
|
2088
2107
|
ResetAllParameters: bool = ...,
|
|
2089
|
-
Parameters: Sequence[ParameterTypeDef] =
|
|
2108
|
+
Parameters: Sequence[ParameterTypeDef] = ...,
|
|
2090
2109
|
) -> ClusterParameterGroupNameMessageTypeDef:
|
|
2091
2110
|
"""
|
|
2092
2111
|
Sets one or more parameters of the specified parameter group to their default
|
|
@@ -2106,7 +2125,7 @@ class RedshiftClient(BaseClient):
|
|
|
2106
2125
|
NumberOfNodes: int = ...,
|
|
2107
2126
|
Classic: bool = ...,
|
|
2108
2127
|
ReservedNodeId: str = ...,
|
|
2109
|
-
TargetReservedNodeOfferingId: str =
|
|
2128
|
+
TargetReservedNodeOfferingId: str = ...,
|
|
2110
2129
|
) -> ResizeClusterResultTypeDef:
|
|
2111
2130
|
"""
|
|
2112
2131
|
Changes the size of the cluster.
|
|
@@ -2154,7 +2173,7 @@ class RedshiftClient(BaseClient):
|
|
|
2154
2173
|
ManageMasterPassword: bool = ...,
|
|
2155
2174
|
MasterPasswordSecretKmsKeyId: str = ...,
|
|
2156
2175
|
IpAddressType: str = ...,
|
|
2157
|
-
MultiAZ: bool =
|
|
2176
|
+
MultiAZ: bool = ...,
|
|
2158
2177
|
) -> RestoreFromClusterSnapshotResultTypeDef:
|
|
2159
2178
|
"""
|
|
2160
2179
|
Creates a new cluster from a snapshot.
|
|
@@ -2174,7 +2193,7 @@ class RedshiftClient(BaseClient):
|
|
|
2174
2193
|
SourceSchemaName: str = ...,
|
|
2175
2194
|
TargetDatabaseName: str = ...,
|
|
2176
2195
|
TargetSchemaName: str = ...,
|
|
2177
|
-
EnableCaseSensitiveIdentifier: bool =
|
|
2196
|
+
EnableCaseSensitiveIdentifier: bool = ...,
|
|
2178
2197
|
) -> RestoreTableFromClusterSnapshotResultTypeDef:
|
|
2179
2198
|
"""
|
|
2180
2199
|
Creates a new table from a table in an Amazon Redshift cluster snapshot.
|
|
@@ -2197,7 +2216,7 @@ class RedshiftClient(BaseClient):
|
|
|
2197
2216
|
ClusterSecurityGroupName: str,
|
|
2198
2217
|
CIDRIP: str = ...,
|
|
2199
2218
|
EC2SecurityGroupName: str = ...,
|
|
2200
|
-
EC2SecurityGroupOwnerId: str =
|
|
2219
|
+
EC2SecurityGroupOwnerId: str = ...,
|
|
2201
2220
|
) -> RevokeClusterSecurityGroupIngressResultTypeDef:
|
|
2202
2221
|
"""
|
|
2203
2222
|
Revokes an ingress rule in an Amazon Redshift security group for a previously
|
|
@@ -2214,7 +2233,7 @@ class RedshiftClient(BaseClient):
|
|
|
2214
2233
|
ClusterIdentifier: str = ...,
|
|
2215
2234
|
Account: str = ...,
|
|
2216
2235
|
VpcIds: Sequence[str] = ...,
|
|
2217
|
-
Force: bool =
|
|
2236
|
+
Force: bool = ...,
|
|
2218
2237
|
) -> EndpointAuthorizationResponseTypeDef:
|
|
2219
2238
|
"""
|
|
2220
2239
|
Revokes access to a cluster.
|
|
@@ -2229,7 +2248,7 @@ class RedshiftClient(BaseClient):
|
|
|
2229
2248
|
AccountWithRestoreAccess: str,
|
|
2230
2249
|
SnapshotIdentifier: str = ...,
|
|
2231
2250
|
SnapshotArn: str = ...,
|
|
2232
|
-
SnapshotClusterIdentifier: str =
|
|
2251
|
+
SnapshotClusterIdentifier: str = ...,
|
|
2233
2252
|
) -> RevokeSnapshotAccessResultTypeDef:
|
|
2234
2253
|
"""
|
|
2235
2254
|
Removes the ability of the specified Amazon Web Services account to restore the
|
|
@@ -2256,7 +2275,7 @@ class RedshiftClient(BaseClient):
|
|
|
2256
2275
|
DatabaseName: str,
|
|
2257
2276
|
PartnerName: str,
|
|
2258
2277
|
Status: PartnerIntegrationStatusType,
|
|
2259
|
-
StatusMessage: str =
|
|
2278
|
+
StatusMessage: str = ...,
|
|
2260
2279
|
) -> PartnerIntegrationOutputMessageTypeDef:
|
|
2261
2280
|
"""
|
|
2262
2281
|
Updates the status of a partner integration.
|
|
@@ -2576,6 +2595,15 @@ class RedshiftClient(BaseClient):
|
|
|
2576
2595
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_paginator)
|
|
2577
2596
|
"""
|
|
2578
2597
|
|
|
2598
|
+
@overload
|
|
2599
|
+
def get_paginator(
|
|
2600
|
+
self, operation_name: Literal["list_recommendations"]
|
|
2601
|
+
) -> ListRecommendationsPaginator:
|
|
2602
|
+
"""
|
|
2603
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#Redshift.Client.get_paginator)
|
|
2604
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/client/#get_paginator)
|
|
2605
|
+
"""
|
|
2606
|
+
|
|
2579
2607
|
@overload
|
|
2580
2608
|
def get_waiter(self, waiter_name: Literal["cluster_available"]) -> ClusterAvailableWaiter:
|
|
2581
2609
|
"""
|