types-boto3-redshift 1.40.72__py3-none-any.whl → 1.41.2__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.
@@ -12,8 +12,8 @@ def print_info() -> None:
12
12
  Print package info to stdout.
13
13
  """
14
14
  sys.stdout.write(
15
- "Type annotations for boto3 Redshift 1.40.72\n"
16
- "Version: 1.40.72\n"
15
+ "Type annotations for boto3 Redshift 1.41.2\n"
16
+ "Version: 1.41.2\n"
17
17
  "Builder version: 8.12.0\n"
18
18
  "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_redshift//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift.html#redshift\n"
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- sys.stdout.write("1.40.72\n")
29
+ sys.stdout.write("1.41.2\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -232,6 +232,7 @@ from .type_defs import (
232
232
  InboundIntegrationsMessageTypeDef,
233
233
  IntegrationResponseTypeDef,
234
234
  IntegrationsMessageTypeDef,
235
+ LakehouseConfigurationTypeDef,
235
236
  ListRecommendationsMessageTypeDef,
236
237
  ListRecommendationsResultTypeDef,
237
238
  LoggingStatusTypeDef,
@@ -259,6 +260,7 @@ from .type_defs import (
259
260
  ModifyEventSubscriptionMessageTypeDef,
260
261
  ModifyEventSubscriptionResultTypeDef,
261
262
  ModifyIntegrationMessageTypeDef,
263
+ ModifyLakehouseConfigurationMessageTypeDef,
262
264
  ModifyRedshiftIdcApplicationMessageTypeDef,
263
265
  ModifyRedshiftIdcApplicationResultTypeDef,
264
266
  ModifyScheduledActionMessageTypeDef,
@@ -1743,6 +1745,16 @@ class RedshiftClient(BaseClient):
1743
1745
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#modify_integration)
1744
1746
  """
1745
1747
 
1748
+ def modify_lakehouse_configuration(
1749
+ self, **kwargs: Unpack[ModifyLakehouseConfigurationMessageTypeDef]
1750
+ ) -> LakehouseConfigurationTypeDef:
1751
+ """
1752
+ Modifies the lakehouse configuration for a cluster.
1753
+
1754
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/modify_lakehouse_configuration.html)
1755
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#modify_lakehouse_configuration)
1756
+ """
1757
+
1746
1758
  def modify_redshift_idc_application(
1747
1759
  self, **kwargs: Unpack[ModifyRedshiftIdcApplicationMessageTypeDef]
1748
1760
  ) -> ModifyRedshiftIdcApplicationResultTypeDef:
@@ -232,6 +232,7 @@ from .type_defs import (
232
232
  InboundIntegrationsMessageTypeDef,
233
233
  IntegrationResponseTypeDef,
234
234
  IntegrationsMessageTypeDef,
235
+ LakehouseConfigurationTypeDef,
235
236
  ListRecommendationsMessageTypeDef,
236
237
  ListRecommendationsResultTypeDef,
237
238
  LoggingStatusTypeDef,
@@ -259,6 +260,7 @@ from .type_defs import (
259
260
  ModifyEventSubscriptionMessageTypeDef,
260
261
  ModifyEventSubscriptionResultTypeDef,
261
262
  ModifyIntegrationMessageTypeDef,
263
+ ModifyLakehouseConfigurationMessageTypeDef,
262
264
  ModifyRedshiftIdcApplicationMessageTypeDef,
263
265
  ModifyRedshiftIdcApplicationResultTypeDef,
264
266
  ModifyScheduledActionMessageTypeDef,
@@ -1740,6 +1742,16 @@ class RedshiftClient(BaseClient):
1740
1742
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#modify_integration)
1741
1743
  """
1742
1744
 
1745
+ def modify_lakehouse_configuration(
1746
+ self, **kwargs: Unpack[ModifyLakehouseConfigurationMessageTypeDef]
1747
+ ) -> LakehouseConfigurationTypeDef:
1748
+ """
1749
+ Modifies the lakehouse configuration for a cluster.
1750
+
1751
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift/client/modify_lakehouse_configuration.html)
1752
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_redshift/client/#modify_lakehouse_configuration)
1753
+ """
1754
+
1743
1755
  def modify_redshift_idc_application(
1744
1756
  self, **kwargs: Unpack[ModifyRedshiftIdcApplicationMessageTypeDef]
1745
1757
  ) -> ModifyRedshiftIdcApplicationResultTypeDef:
@@ -24,6 +24,7 @@ else:
24
24
 
25
25
  __all__ = (
26
26
  "ActionTypeType",
27
+ "ApplicationTypeType",
27
28
  "AquaConfigurationStatusType",
28
29
  "AquaStatusType",
29
30
  "AuthorizationStatusType",
@@ -72,6 +73,8 @@ __all__ = (
72
73
  "GetReservedNodeExchangeConfigurationOptionsPaginatorName",
73
74
  "GetReservedNodeExchangeOfferingsPaginatorName",
74
75
  "ImpactRankingTypeType",
76
+ "LakehouseIdcRegistrationType",
77
+ "LakehouseRegistrationType",
75
78
  "ListRecommendationsPaginatorName",
76
79
  "LogDestinationTypeType",
77
80
  "ModeType",
@@ -109,6 +112,7 @@ __all__ = (
109
112
 
110
113
 
111
114
  ActionTypeType = Literal["recommend-node-config", "resize-cluster", "restore-cluster"]
115
+ ApplicationTypeType = Literal["Lakehouse", "None"]
112
116
  AquaConfigurationStatusType = Literal["auto", "disabled", "enabled"]
113
117
  AquaStatusType = Literal["applying", "disabled", "enabled"]
114
118
  AuthorizationStatusType = Literal["Authorized", "Revoking"]
@@ -165,6 +169,8 @@ GetReservedNodeExchangeConfigurationOptionsPaginatorName = Literal[
165
169
  ]
166
170
  GetReservedNodeExchangeOfferingsPaginatorName = Literal["get_reserved_node_exchange_offerings"]
167
171
  ImpactRankingTypeType = Literal["HIGH", "LOW", "MEDIUM"]
172
+ LakehouseIdcRegistrationType = Literal["Associate", "Disassociate"]
173
+ LakehouseRegistrationType = Literal["Deregister", "Register"]
168
174
  ListRecommendationsPaginatorName = Literal["list_recommendations"]
169
175
  LogDestinationTypeType = Literal["cloudwatch", "s3"]
170
176
  ModeType = Literal["high-performance", "standard"]
@@ -300,6 +306,7 @@ ServiceName = Literal[
300
306
  "comprehend",
301
307
  "comprehendmedical",
302
308
  "compute-optimizer",
309
+ "compute-optimizer-automation",
303
310
  "config",
304
311
  "connect",
305
312
  "connect-contact-lens",
@@ -470,6 +477,7 @@ ServiceName = Literal[
470
477
  "mq",
471
478
  "mturk",
472
479
  "mwaa",
480
+ "mwaa-serverless",
473
481
  "neptune",
474
482
  "neptune-graph",
475
483
  "neptunedata",
@@ -489,6 +497,7 @@ ServiceName = Literal[
489
497
  "osis",
490
498
  "outposts",
491
499
  "panorama",
500
+ "partnercentral-channel",
492
501
  "partnercentral-selling",
493
502
  "payment-cryptography",
494
503
  "payment-cryptography-data",
@@ -563,6 +572,7 @@ ServiceName = Literal[
563
572
  "sesv2",
564
573
  "shield",
565
574
  "signer",
575
+ "signin",
566
576
  "simspaceweaver",
567
577
  "snow-device-management",
568
578
  "snowball",
@@ -23,6 +23,7 @@ else:
23
23
 
24
24
  __all__ = (
25
25
  "ActionTypeType",
26
+ "ApplicationTypeType",
26
27
  "AquaConfigurationStatusType",
27
28
  "AquaStatusType",
28
29
  "AuthorizationStatusType",
@@ -71,6 +72,8 @@ __all__ = (
71
72
  "GetReservedNodeExchangeConfigurationOptionsPaginatorName",
72
73
  "GetReservedNodeExchangeOfferingsPaginatorName",
73
74
  "ImpactRankingTypeType",
75
+ "LakehouseIdcRegistrationType",
76
+ "LakehouseRegistrationType",
74
77
  "ListRecommendationsPaginatorName",
75
78
  "LogDestinationTypeType",
76
79
  "ModeType",
@@ -107,6 +110,7 @@ __all__ = (
107
110
  )
108
111
 
109
112
  ActionTypeType = Literal["recommend-node-config", "resize-cluster", "restore-cluster"]
113
+ ApplicationTypeType = Literal["Lakehouse", "None"]
110
114
  AquaConfigurationStatusType = Literal["auto", "disabled", "enabled"]
111
115
  AquaStatusType = Literal["applying", "disabled", "enabled"]
112
116
  AuthorizationStatusType = Literal["Authorized", "Revoking"]
@@ -163,6 +167,8 @@ GetReservedNodeExchangeConfigurationOptionsPaginatorName = Literal[
163
167
  ]
164
168
  GetReservedNodeExchangeOfferingsPaginatorName = Literal["get_reserved_node_exchange_offerings"]
165
169
  ImpactRankingTypeType = Literal["HIGH", "LOW", "MEDIUM"]
170
+ LakehouseIdcRegistrationType = Literal["Associate", "Disassociate"]
171
+ LakehouseRegistrationType = Literal["Deregister", "Register"]
166
172
  ListRecommendationsPaginatorName = Literal["list_recommendations"]
167
173
  LogDestinationTypeType = Literal["cloudwatch", "s3"]
168
174
  ModeType = Literal["high-performance", "standard"]
@@ -298,6 +304,7 @@ ServiceName = Literal[
298
304
  "comprehend",
299
305
  "comprehendmedical",
300
306
  "compute-optimizer",
307
+ "compute-optimizer-automation",
301
308
  "config",
302
309
  "connect",
303
310
  "connect-contact-lens",
@@ -468,6 +475,7 @@ ServiceName = Literal[
468
475
  "mq",
469
476
  "mturk",
470
477
  "mwaa",
478
+ "mwaa-serverless",
471
479
  "neptune",
472
480
  "neptune-graph",
473
481
  "neptunedata",
@@ -487,6 +495,7 @@ ServiceName = Literal[
487
495
  "osis",
488
496
  "outposts",
489
497
  "panorama",
498
+ "partnercentral-channel",
490
499
  "partnercentral-selling",
491
500
  "payment-cryptography",
492
501
  "payment-cryptography-data",
@@ -561,6 +570,7 @@ ServiceName = Literal[
561
570
  "sesv2",
562
571
  "shield",
563
572
  "signer",
573
+ "signin",
564
574
  "simspaceweaver",
565
575
  "snow-device-management",
566
576
  "snowball",
@@ -23,6 +23,7 @@ from typing import Union
23
23
 
24
24
  from .literals import (
25
25
  ActionTypeType,
26
+ ApplicationTypeType,
26
27
  AquaConfigurationStatusType,
27
28
  AquaStatusType,
28
29
  AuthorizationStatusType,
@@ -31,6 +32,8 @@ from .literals import (
31
32
  DataShareStatusType,
32
33
  DescribeIntegrationsFilterNameType,
33
34
  ImpactRankingTypeType,
35
+ LakehouseIdcRegistrationType,
36
+ LakehouseRegistrationType,
34
37
  LogDestinationTypeType,
35
38
  ModeType,
36
39
  NamespaceRegistrationStatusType,
@@ -114,6 +117,7 @@ __all__ = (
114
117
  "ClusterVersionTypeDef",
115
118
  "ClusterVersionsMessageTypeDef",
116
119
  "ClustersMessageTypeDef",
120
+ "ConnectTypeDef",
117
121
  "CopyClusterSnapshotMessageTypeDef",
118
122
  "CopyClusterSnapshotResultTypeDef",
119
123
  "CreateAuthenticationProfileMessageTypeDef",
@@ -320,6 +324,7 @@ __all__ = (
320
324
  "IntegrationsMessageTypeDef",
321
325
  "LakeFormationQueryTypeDef",
322
326
  "LakeFormationScopeUnionTypeDef",
327
+ "LakehouseConfigurationTypeDef",
323
328
  "ListRecommendationsMessagePaginateTypeDef",
324
329
  "ListRecommendationsMessageTypeDef",
325
330
  "ListRecommendationsResultTypeDef",
@@ -349,6 +354,7 @@ __all__ = (
349
354
  "ModifyEventSubscriptionMessageTypeDef",
350
355
  "ModifyEventSubscriptionResultTypeDef",
351
356
  "ModifyIntegrationMessageTypeDef",
357
+ "ModifyLakehouseConfigurationMessageTypeDef",
352
358
  "ModifyRedshiftIdcApplicationMessageTypeDef",
353
359
  "ModifyRedshiftIdcApplicationResultTypeDef",
354
360
  "ModifyScheduledActionMessageTypeDef",
@@ -385,6 +391,7 @@ __all__ = (
385
391
  "RecommendedActionTypeDef",
386
392
  "RecurringChargeTypeDef",
387
393
  "RedshiftIdcApplicationTypeDef",
394
+ "RedshiftScopeUnionTypeDef",
388
395
  "ReferenceLinkTypeDef",
389
396
  "RegisterNamespaceInputMessageTypeDef",
390
397
  "RegisterNamespaceOutputMessageTypeDef",
@@ -700,6 +707,10 @@ class ClusterVersionTypeDef(TypedDict):
700
707
  Description: NotRequired[str]
701
708
 
702
709
 
710
+ class ConnectTypeDef(TypedDict):
711
+ Authorization: ServiceAuthorizationType
712
+
713
+
703
714
  class CopyClusterSnapshotMessageTypeDef(TypedDict):
704
715
  SourceSnapshotIdentifier: str
705
716
  TargetSnapshotIdentifier: str
@@ -1331,6 +1342,15 @@ class ModifyIntegrationMessageTypeDef(TypedDict):
1331
1342
  IntegrationName: NotRequired[str]
1332
1343
 
1333
1344
 
1345
+ class ModifyLakehouseConfigurationMessageTypeDef(TypedDict):
1346
+ ClusterIdentifier: str
1347
+ LakehouseRegistration: NotRequired[LakehouseRegistrationType]
1348
+ CatalogName: NotRequired[str]
1349
+ LakehouseIdcRegistration: NotRequired[LakehouseIdcRegistrationType]
1350
+ LakehouseIdcApplicationArn: NotRequired[str]
1351
+ DryRun: NotRequired[bool]
1352
+
1353
+
1334
1354
  class ModifySnapshotCopyRetentionPeriodMessageTypeDef(TypedDict):
1335
1355
  ClusterIdentifier: str
1336
1356
  RetentionPeriod: int
@@ -1497,6 +1517,8 @@ class RestoreFromClusterSnapshotMessageTypeDef(TypedDict):
1497
1517
  MasterPasswordSecretKmsKeyId: NotRequired[str]
1498
1518
  IpAddressType: NotRequired[str]
1499
1519
  MultiAZ: NotRequired[bool]
1520
+ CatalogName: NotRequired[str]
1521
+ RedshiftIdcApplicationArn: NotRequired[str]
1500
1522
 
1501
1523
 
1502
1524
  class RestoreTableFromClusterSnapshotMessageTypeDef(TypedDict):
@@ -1648,6 +1670,14 @@ class GetIdentityCenterAuthTokenResponseTypeDef(TypedDict):
1648
1670
  ResponseMetadata: ResponseMetadataTypeDef
1649
1671
 
1650
1672
 
1673
+ class LakehouseConfigurationTypeDef(TypedDict):
1674
+ ClusterIdentifier: str
1675
+ LakehouseIdcApplicationArn: str
1676
+ LakehouseRegistrationStatus: str
1677
+ CatalogArn: str
1678
+ ResponseMetadata: ResponseMetadataTypeDef
1679
+
1680
+
1651
1681
  class LoggingStatusTypeDef(TypedDict):
1652
1682
  LoggingEnabled: bool
1653
1683
  BucketName: str
@@ -1840,6 +1870,7 @@ class CreateClusterMessageTypeDef(TypedDict):
1840
1870
  IpAddressType: NotRequired[str]
1841
1871
  MultiAZ: NotRequired[bool]
1842
1872
  RedshiftIdcApplicationArn: NotRequired[str]
1873
+ CatalogName: NotRequired[str]
1843
1874
 
1844
1875
 
1845
1876
  class CreateClusterParameterGroupMessageTypeDef(TypedDict):
@@ -2084,6 +2115,10 @@ class ClusterVersionsMessageTypeDef(TypedDict):
2084
2115
  ResponseMetadata: ResponseMetadataTypeDef
2085
2116
 
2086
2117
 
2118
+ class RedshiftScopeUnionTypeDef(TypedDict):
2119
+ Connect: NotRequired[ConnectTypeDef]
2120
+
2121
+
2087
2122
  class DescribeEventsMessageTypeDef(TypedDict):
2088
2123
  SourceIdentifier: NotRequired[str]
2089
2124
  SourceType: NotRequired[SourceTypeType]
@@ -2863,11 +2898,13 @@ class EndpointTypeDef(TypedDict):
2863
2898
  class ServiceIntegrationsUnionOutputTypeDef(TypedDict):
2864
2899
  LakeFormation: NotRequired[list[LakeFormationScopeUnionTypeDef]]
2865
2900
  S3AccessGrants: NotRequired[list[S3AccessGrantsScopeUnionTypeDef]]
2901
+ Redshift: NotRequired[list[RedshiftScopeUnionTypeDef]]
2866
2902
 
2867
2903
 
2868
2904
  class ServiceIntegrationsUnionTypeDef(TypedDict):
2869
2905
  LakeFormation: NotRequired[Sequence[LakeFormationScopeUnionTypeDef]]
2870
2906
  S3AccessGrants: NotRequired[Sequence[S3AccessGrantsScopeUnionTypeDef]]
2907
+ Redshift: NotRequired[Sequence[RedshiftScopeUnionTypeDef]]
2871
2908
 
2872
2909
 
2873
2910
  class ListRecommendationsResultTypeDef(TypedDict):
@@ -3067,6 +3104,8 @@ class ClusterTypeDef(TypedDict):
3067
3104
  IpAddressType: NotRequired[str]
3068
3105
  MultiAZ: NotRequired[str]
3069
3106
  MultiAZSecondary: NotRequired[SecondaryClusterInfoTypeDef]
3107
+ LakehouseRegistrationStatus: NotRequired[str]
3108
+ CatalogArn: NotRequired[str]
3070
3109
 
3071
3110
 
3072
3111
  class RedshiftIdcApplicationTypeDef(TypedDict):
@@ -3080,6 +3119,7 @@ class RedshiftIdcApplicationTypeDef(TypedDict):
3080
3119
  IdcOnboardStatus: NotRequired[str]
3081
3120
  AuthorizedTokenIssuerList: NotRequired[list[AuthorizedTokenIssuerOutputTypeDef]]
3082
3121
  ServiceIntegrations: NotRequired[list[ServiceIntegrationsUnionOutputTypeDef]]
3122
+ ApplicationType: NotRequired[ApplicationTypeType]
3083
3123
  Tags: NotRequired[list[TagTypeDef]]
3084
3124
  SsoTagKeys: NotRequired[list[str]]
3085
3125
 
@@ -3233,6 +3273,7 @@ class CreateRedshiftIdcApplicationMessageTypeDef(TypedDict):
3233
3273
  IdentityNamespace: NotRequired[str]
3234
3274
  AuthorizedTokenIssuerList: NotRequired[Sequence[AuthorizedTokenIssuerUnionTypeDef]]
3235
3275
  ServiceIntegrations: NotRequired[Sequence[ServiceIntegrationsUnionUnionTypeDef]]
3276
+ ApplicationType: NotRequired[ApplicationTypeType]
3236
3277
  Tags: NotRequired[Sequence[TagTypeDef]]
3237
3278
  SsoTagKeys: NotRequired[Sequence[str]]
3238
3279
 
@@ -23,6 +23,7 @@ from typing import Union
23
23
 
24
24
  from .literals import (
25
25
  ActionTypeType,
26
+ ApplicationTypeType,
26
27
  AquaConfigurationStatusType,
27
28
  AquaStatusType,
28
29
  AuthorizationStatusType,
@@ -31,6 +32,8 @@ from .literals import (
31
32
  DataShareStatusType,
32
33
  DescribeIntegrationsFilterNameType,
33
34
  ImpactRankingTypeType,
35
+ LakehouseIdcRegistrationType,
36
+ LakehouseRegistrationType,
34
37
  LogDestinationTypeType,
35
38
  ModeType,
36
39
  NamespaceRegistrationStatusType,
@@ -113,6 +116,7 @@ __all__ = (
113
116
  "ClusterVersionTypeDef",
114
117
  "ClusterVersionsMessageTypeDef",
115
118
  "ClustersMessageTypeDef",
119
+ "ConnectTypeDef",
116
120
  "CopyClusterSnapshotMessageTypeDef",
117
121
  "CopyClusterSnapshotResultTypeDef",
118
122
  "CreateAuthenticationProfileMessageTypeDef",
@@ -319,6 +323,7 @@ __all__ = (
319
323
  "IntegrationsMessageTypeDef",
320
324
  "LakeFormationQueryTypeDef",
321
325
  "LakeFormationScopeUnionTypeDef",
326
+ "LakehouseConfigurationTypeDef",
322
327
  "ListRecommendationsMessagePaginateTypeDef",
323
328
  "ListRecommendationsMessageTypeDef",
324
329
  "ListRecommendationsResultTypeDef",
@@ -348,6 +353,7 @@ __all__ = (
348
353
  "ModifyEventSubscriptionMessageTypeDef",
349
354
  "ModifyEventSubscriptionResultTypeDef",
350
355
  "ModifyIntegrationMessageTypeDef",
356
+ "ModifyLakehouseConfigurationMessageTypeDef",
351
357
  "ModifyRedshiftIdcApplicationMessageTypeDef",
352
358
  "ModifyRedshiftIdcApplicationResultTypeDef",
353
359
  "ModifyScheduledActionMessageTypeDef",
@@ -384,6 +390,7 @@ __all__ = (
384
390
  "RecommendedActionTypeDef",
385
391
  "RecurringChargeTypeDef",
386
392
  "RedshiftIdcApplicationTypeDef",
393
+ "RedshiftScopeUnionTypeDef",
387
394
  "ReferenceLinkTypeDef",
388
395
  "RegisterNamespaceInputMessageTypeDef",
389
396
  "RegisterNamespaceOutputMessageTypeDef",
@@ -660,6 +667,9 @@ class ClusterVersionTypeDef(TypedDict):
660
667
  ClusterParameterGroupFamily: NotRequired[str]
661
668
  Description: NotRequired[str]
662
669
 
670
+ class ConnectTypeDef(TypedDict):
671
+ Authorization: ServiceAuthorizationType
672
+
663
673
  class CopyClusterSnapshotMessageTypeDef(TypedDict):
664
674
  SourceSnapshotIdentifier: str
665
675
  TargetSnapshotIdentifier: str
@@ -1192,6 +1202,14 @@ class ModifyIntegrationMessageTypeDef(TypedDict):
1192
1202
  Description: NotRequired[str]
1193
1203
  IntegrationName: NotRequired[str]
1194
1204
 
1205
+ class ModifyLakehouseConfigurationMessageTypeDef(TypedDict):
1206
+ ClusterIdentifier: str
1207
+ LakehouseRegistration: NotRequired[LakehouseRegistrationType]
1208
+ CatalogName: NotRequired[str]
1209
+ LakehouseIdcRegistration: NotRequired[LakehouseIdcRegistrationType]
1210
+ LakehouseIdcApplicationArn: NotRequired[str]
1211
+ DryRun: NotRequired[bool]
1212
+
1195
1213
  class ModifySnapshotCopyRetentionPeriodMessageTypeDef(TypedDict):
1196
1214
  ClusterIdentifier: str
1197
1215
  RetentionPeriod: int
@@ -1338,6 +1356,8 @@ class RestoreFromClusterSnapshotMessageTypeDef(TypedDict):
1338
1356
  MasterPasswordSecretKmsKeyId: NotRequired[str]
1339
1357
  IpAddressType: NotRequired[str]
1340
1358
  MultiAZ: NotRequired[bool]
1359
+ CatalogName: NotRequired[str]
1360
+ RedshiftIdcApplicationArn: NotRequired[str]
1341
1361
 
1342
1362
  class RestoreTableFromClusterSnapshotMessageTypeDef(TypedDict):
1343
1363
  ClusterIdentifier: str
@@ -1467,6 +1487,13 @@ class GetIdentityCenterAuthTokenResponseTypeDef(TypedDict):
1467
1487
  ExpirationTime: datetime
1468
1488
  ResponseMetadata: ResponseMetadataTypeDef
1469
1489
 
1490
+ class LakehouseConfigurationTypeDef(TypedDict):
1491
+ ClusterIdentifier: str
1492
+ LakehouseIdcApplicationArn: str
1493
+ LakehouseRegistrationStatus: str
1494
+ CatalogArn: str
1495
+ ResponseMetadata: ResponseMetadataTypeDef
1496
+
1470
1497
  class LoggingStatusTypeDef(TypedDict):
1471
1498
  LoggingEnabled: bool
1472
1499
  BucketName: str
@@ -1636,6 +1663,7 @@ class CreateClusterMessageTypeDef(TypedDict):
1636
1663
  IpAddressType: NotRequired[str]
1637
1664
  MultiAZ: NotRequired[bool]
1638
1665
  RedshiftIdcApplicationArn: NotRequired[str]
1666
+ CatalogName: NotRequired[str]
1639
1667
 
1640
1668
  class CreateClusterParameterGroupMessageTypeDef(TypedDict):
1641
1669
  ParameterGroupName: str
@@ -1853,6 +1881,9 @@ class ClusterVersionsMessageTypeDef(TypedDict):
1853
1881
  ClusterVersions: list[ClusterVersionTypeDef]
1854
1882
  ResponseMetadata: ResponseMetadataTypeDef
1855
1883
 
1884
+ class RedshiftScopeUnionTypeDef(TypedDict):
1885
+ Connect: NotRequired[ConnectTypeDef]
1886
+
1856
1887
  class DescribeEventsMessageTypeDef(TypedDict):
1857
1888
  SourceIdentifier: NotRequired[str]
1858
1889
  SourceType: NotRequired[SourceTypeType]
@@ -2523,10 +2554,12 @@ class EndpointTypeDef(TypedDict):
2523
2554
  class ServiceIntegrationsUnionOutputTypeDef(TypedDict):
2524
2555
  LakeFormation: NotRequired[list[LakeFormationScopeUnionTypeDef]]
2525
2556
  S3AccessGrants: NotRequired[list[S3AccessGrantsScopeUnionTypeDef]]
2557
+ Redshift: NotRequired[list[RedshiftScopeUnionTypeDef]]
2526
2558
 
2527
2559
  class ServiceIntegrationsUnionTypeDef(TypedDict):
2528
2560
  LakeFormation: NotRequired[Sequence[LakeFormationScopeUnionTypeDef]]
2529
2561
  S3AccessGrants: NotRequired[Sequence[S3AccessGrantsScopeUnionTypeDef]]
2562
+ Redshift: NotRequired[Sequence[RedshiftScopeUnionTypeDef]]
2530
2563
 
2531
2564
  class ListRecommendationsResultTypeDef(TypedDict):
2532
2565
  Recommendations: list[RecommendationTypeDef]
@@ -2706,6 +2739,8 @@ class ClusterTypeDef(TypedDict):
2706
2739
  IpAddressType: NotRequired[str]
2707
2740
  MultiAZ: NotRequired[str]
2708
2741
  MultiAZSecondary: NotRequired[SecondaryClusterInfoTypeDef]
2742
+ LakehouseRegistrationStatus: NotRequired[str]
2743
+ CatalogArn: NotRequired[str]
2709
2744
 
2710
2745
  class RedshiftIdcApplicationTypeDef(TypedDict):
2711
2746
  IdcInstanceArn: NotRequired[str]
@@ -2718,6 +2753,7 @@ class RedshiftIdcApplicationTypeDef(TypedDict):
2718
2753
  IdcOnboardStatus: NotRequired[str]
2719
2754
  AuthorizedTokenIssuerList: NotRequired[list[AuthorizedTokenIssuerOutputTypeDef]]
2720
2755
  ServiceIntegrations: NotRequired[list[ServiceIntegrationsUnionOutputTypeDef]]
2756
+ ApplicationType: NotRequired[ApplicationTypeType]
2721
2757
  Tags: NotRequired[list[TagTypeDef]]
2722
2758
  SsoTagKeys: NotRequired[list[str]]
2723
2759
 
@@ -2843,6 +2879,7 @@ class CreateRedshiftIdcApplicationMessageTypeDef(TypedDict):
2843
2879
  IdentityNamespace: NotRequired[str]
2844
2880
  AuthorizedTokenIssuerList: NotRequired[Sequence[AuthorizedTokenIssuerUnionTypeDef]]
2845
2881
  ServiceIntegrations: NotRequired[Sequence[ServiceIntegrationsUnionUnionTypeDef]]
2882
+ ApplicationType: NotRequired[ApplicationTypeType]
2846
2883
  Tags: NotRequired[Sequence[TagTypeDef]]
2847
2884
  SsoTagKeys: NotRequired[Sequence[str]]
2848
2885
 
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.40.72"
7
+ __version__ = "1.41.2"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: types-boto3-redshift
3
- Version: 1.40.72
4
- Summary: Type annotations for boto3 Redshift 1.40.72 service generated with mypy-boto3-builder 8.12.0
3
+ Version: 1.41.2
4
+ Summary: Type annotations for boto3 Redshift 1.41.2 service generated with mypy-boto3-builder 8.12.0
5
5
  Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
6
6
  License-Expression: MIT
7
7
  Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
@@ -42,7 +42,7 @@ Dynamic: license-file
42
42
 
43
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
- Type annotations for [boto3 Redshift 1.40.72](https://pypi.org/project/boto3/)
45
+ Type annotations for [boto3 Redshift 1.41.2](https://pypi.org/project/boto3/)
46
46
  compatible with [VSCode](https://code.visualstudio.com/),
47
47
  [PyCharm](https://www.jetbrains.com/pycharm/),
48
48
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -105,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
105
105
  isolation.
106
106
 
107
107
  1. Run mypy-boto3-builder in your package root directory:
108
- `uvx --with 'boto3==1.40.72' mypy-boto3-builder`
108
+ `uvx --with 'boto3==1.41.2' mypy-boto3-builder`
109
109
  2. Select `boto3` AWS SDK.
110
110
  3. Add `Redshift` service.
111
111
  4. Use provided commands to install generated packages.
@@ -0,0 +1,20 @@
1
+ types_boto3_redshift/__init__.py,sha256=AKuuF2VvRLcPUdgUn_xz6F3iGPfixRr63HP2Atn4Kmg,11061
2
+ types_boto3_redshift/__init__.pyi,sha256=VlBt4rSxLclDcqFzSdnWwUmstVmaj8FZ52dbFGAaflU,11060
3
+ types_boto3_redshift/__main__.py,sha256=ReqAaCXobUWxHcFSZEv7ViIQZlPeRBlt8sKLZe824RA,986
4
+ types_boto3_redshift/client.py,sha256=cqjeiIplpkWhTZxQhBsLNdkN1fELqhmP0GcCWRVzBbw,124481
5
+ types_boto3_redshift/client.pyi,sha256=78SwXQEVuLU8n7upxbSdZRGAAZMD7rLg6eXNRQpuPY0,124478
6
+ types_boto3_redshift/literals.py,sha256=-77OCebT3gas_hFM_nnP17jLBg6GtsNXyPawnN4ghuw,20456
7
+ types_boto3_redshift/literals.pyi,sha256=QOrGJcnflqfSnmSagKFAeLCDXjdkviI8ufMstGha8oI,20454
8
+ types_boto3_redshift/paginator.py,sha256=KzRgPc0fRi__FXw86zY_hkMMD2Anj9C3WVXG7iIpMt8,58561
9
+ types_boto3_redshift/paginator.pyi,sha256=Y1xZxvRLJWaTN2aqQBhpq_sFSJtf--7MgHU3P0NIcpY,58449
10
+ types_boto3_redshift/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ types_boto3_redshift/type_defs.py,sha256=bstvE687dHArAGGPsUJSTVrCSuAwnpzjdpC6i6bhRdQ,105410
12
+ types_boto3_redshift/type_defs.pyi,sha256=21HFvVIzdUV_HsDwh8FGzEIxxz0LidRlWsJE5X87axI,105015
13
+ types_boto3_redshift/version.py,sha256=aLKGJmxodYlE7i2btZqBdcB8RTTGw1f6JzSmoqyix3w,92
14
+ types_boto3_redshift/waiter.py,sha256=b61zOvUYMR_f5vti0v5h5pd_MF7hbRHZ7u62kESRIkA,4852
15
+ types_boto3_redshift/waiter.pyi,sha256=sMqV7PAvsEr-9AVlgFCX87aXnHGcs3Cs2-QXe2dtO8g,4843
16
+ types_boto3_redshift-1.41.2.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ types_boto3_redshift-1.41.2.dist-info/METADATA,sha256=dLRgaZJztcOO_GG7m-oc0eerZ6ivfHyMRYCLSQvzXFw,22139
18
+ types_boto3_redshift-1.41.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ types_boto3_redshift-1.41.2.dist-info/top_level.txt,sha256=9GHhOkrYLjf7oTE-Nn27mlaFRBVWb2TrtzoQ6ZM9vs4,21
20
+ types_boto3_redshift-1.41.2.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- types_boto3_redshift/__init__.py,sha256=AKuuF2VvRLcPUdgUn_xz6F3iGPfixRr63HP2Atn4Kmg,11061
2
- types_boto3_redshift/__init__.pyi,sha256=VlBt4rSxLclDcqFzSdnWwUmstVmaj8FZ52dbFGAaflU,11060
3
- types_boto3_redshift/__main__.py,sha256=IUEl_-AedC6N3Z3lxCfKKramQY62GOVZ-yboBae0Izo,989
4
- types_boto3_redshift/client.py,sha256=1wXU7UmHa-5MRMG2gEO2pecBIT_51SIK68ec5oN7_e0,123849
5
- types_boto3_redshift/client.pyi,sha256=wihGBu6o-GKvO9S_dvOBC8M6yBq4rSkbaC_ela66RRg,123846
6
- types_boto3_redshift/literals.py,sha256=1pe_sJGj2kDgaTmKJugwDXZv9lI2Xdwixok38FUOUB4,20076
7
- types_boto3_redshift/literals.pyi,sha256=t2F3j_ggD_iRIGqd4FsEZF2aEW6w0cXF1bnBrOBIX_g,20074
8
- types_boto3_redshift/paginator.py,sha256=KzRgPc0fRi__FXw86zY_hkMMD2Anj9C3WVXG7iIpMt8,58561
9
- types_boto3_redshift/paginator.pyi,sha256=Y1xZxvRLJWaTN2aqQBhpq_sFSJtf--7MgHU3P0NIcpY,58449
10
- types_boto3_redshift/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_redshift/type_defs.py,sha256=Uqq3koUXbPFh8SdKoVhdMqLz4pwZ7CdO4bfR_XyPBB4,104026
12
- types_boto3_redshift/type_defs.pyi,sha256=6qbEhFyIfTleSksKzRzBryN_XqvVNscRRLIyc6VOyNg,103635
13
- types_boto3_redshift/version.py,sha256=A9mz7kTKVqbB9jJQMODEBIgqb1CnVK35wRiikOGig68,93
14
- types_boto3_redshift/waiter.py,sha256=b61zOvUYMR_f5vti0v5h5pd_MF7hbRHZ7u62kESRIkA,4852
15
- types_boto3_redshift/waiter.pyi,sha256=sMqV7PAvsEr-9AVlgFCX87aXnHGcs3Cs2-QXe2dtO8g,4843
16
- types_boto3_redshift-1.40.72.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- types_boto3_redshift-1.40.72.dist-info/METADATA,sha256=6Hxbr4sVvglbA0-c8JasmOOF1Qtl9_m4JO5OwiSLFPY,22143
18
- types_boto3_redshift-1.40.72.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- types_boto3_redshift-1.40.72.dist-info/top_level.txt,sha256=9GHhOkrYLjf7oTE-Nn27mlaFRBVWb2TrtzoQ6ZM9vs4,21
20
- types_boto3_redshift-1.40.72.dist-info/RECORD,,