types-boto3-redshift 1.40.64__py3-none-any.whl → 1.40.72__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.
- types_boto3_redshift/__main__.py +4 -4
- types_boto3_redshift/client.py +158 -148
- types_boto3_redshift/client.pyi +158 -148
- types_boto3_redshift/type_defs.py +139 -132
- types_boto3_redshift/type_defs.pyi +137 -132
- types_boto3_redshift/version.py +1 -1
- {types_boto3_redshift-1.40.64.dist-info → types_boto3_redshift-1.40.72.dist-info}/METADATA +11 -25
- {types_boto3_redshift-1.40.64.dist-info → types_boto3_redshift-1.40.72.dist-info}/RECORD +11 -11
- {types_boto3_redshift-1.40.64.dist-info → types_boto3_redshift-1.40.72.dist-info}/WHEEL +0 -0
- {types_boto3_redshift-1.40.64.dist-info → types_boto3_redshift-1.40.72.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_redshift-1.40.64.dist-info → types_boto3_redshift-1.40.72.dist-info}/top_level.txt +0 -0
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import Union
|
|
22
23
|
|
|
@@ -57,12 +58,6 @@ from .literals import (
|
|
|
57
58
|
ZeroETLIntegrationStatusType,
|
|
58
59
|
)
|
|
59
60
|
|
|
60
|
-
if sys.version_info >= (3, 9):
|
|
61
|
-
from builtins import dict as Dict
|
|
62
|
-
from builtins import list as List
|
|
63
|
-
from collections.abc import Mapping, Sequence
|
|
64
|
-
else:
|
|
65
|
-
from typing import Dict, List, Mapping, Sequence
|
|
66
61
|
if sys.version_info >= (3, 12):
|
|
67
62
|
from typing import Literal, NotRequired, TypedDict
|
|
68
63
|
else:
|
|
@@ -301,6 +296,8 @@ __all__ = (
|
|
|
301
296
|
"FailoverPrimaryComputeResultTypeDef",
|
|
302
297
|
"GetClusterCredentialsMessageTypeDef",
|
|
303
298
|
"GetClusterCredentialsWithIAMMessageTypeDef",
|
|
299
|
+
"GetIdentityCenterAuthTokenRequestTypeDef",
|
|
300
|
+
"GetIdentityCenterAuthTokenResponseTypeDef",
|
|
304
301
|
"GetReservedNodeExchangeConfigurationOptionsInputMessagePaginateTypeDef",
|
|
305
302
|
"GetReservedNodeExchangeConfigurationOptionsInputMessageTypeDef",
|
|
306
303
|
"GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef",
|
|
@@ -470,7 +467,7 @@ class AcceptReservedNodeExchangeInputMessageTypeDef(TypedDict):
|
|
|
470
467
|
class ResponseMetadataTypeDef(TypedDict):
|
|
471
468
|
RequestId: str
|
|
472
469
|
HTTPStatusCode: int
|
|
473
|
-
HTTPHeaders:
|
|
470
|
+
HTTPHeaders: dict[str, str]
|
|
474
471
|
RetryAttempts: int
|
|
475
472
|
HostId: NotRequired[str]
|
|
476
473
|
|
|
@@ -535,7 +532,7 @@ class AuthorizeSnapshotAccessMessageTypeDef(TypedDict):
|
|
|
535
532
|
|
|
536
533
|
class AuthorizedTokenIssuerOutputTypeDef(TypedDict):
|
|
537
534
|
TrustedTokenIssuerArn: NotRequired[str]
|
|
538
|
-
AuthorizedAudiencesList: NotRequired[
|
|
535
|
+
AuthorizedAudiencesList: NotRequired[list[str]]
|
|
539
536
|
|
|
540
537
|
|
|
541
538
|
class AuthorizedTokenIssuerTypeDef(TypedDict):
|
|
@@ -1150,13 +1147,13 @@ class EndpointAuthorizationTypeDef(TypedDict):
|
|
|
1150
1147
|
ClusterStatus: NotRequired[str]
|
|
1151
1148
|
Status: NotRequired[AuthorizationStatusType]
|
|
1152
1149
|
AllowedAllVPCs: NotRequired[bool]
|
|
1153
|
-
AllowedVPCs: NotRequired[
|
|
1150
|
+
AllowedVPCs: NotRequired[list[str]]
|
|
1154
1151
|
EndpointCount: NotRequired[int]
|
|
1155
1152
|
|
|
1156
1153
|
|
|
1157
1154
|
class EventInfoMapTypeDef(TypedDict):
|
|
1158
1155
|
EventId: NotRequired[str]
|
|
1159
|
-
EventCategories: NotRequired[
|
|
1156
|
+
EventCategories: NotRequired[list[str]]
|
|
1160
1157
|
EventDescription: NotRequired[str]
|
|
1161
1158
|
Severity: NotRequired[str]
|
|
1162
1159
|
|
|
@@ -1165,7 +1162,7 @@ class EventTypeDef(TypedDict):
|
|
|
1165
1162
|
SourceIdentifier: NotRequired[str]
|
|
1166
1163
|
SourceType: NotRequired[SourceTypeType]
|
|
1167
1164
|
Message: NotRequired[str]
|
|
1168
|
-
EventCategories: NotRequired[
|
|
1165
|
+
EventCategories: NotRequired[list[str]]
|
|
1169
1166
|
Severity: NotRequired[str]
|
|
1170
1167
|
Date: NotRequired[datetime]
|
|
1171
1168
|
EventId: NotRequired[str]
|
|
@@ -1192,6 +1189,10 @@ class GetClusterCredentialsWithIAMMessageTypeDef(TypedDict):
|
|
|
1192
1189
|
CustomDomainName: NotRequired[str]
|
|
1193
1190
|
|
|
1194
1191
|
|
|
1192
|
+
class GetIdentityCenterAuthTokenRequestTypeDef(TypedDict):
|
|
1193
|
+
ClusterIds: Sequence[str]
|
|
1194
|
+
|
|
1195
|
+
|
|
1195
1196
|
class GetReservedNodeExchangeConfigurationOptionsInputMessageTypeDef(TypedDict):
|
|
1196
1197
|
ActionType: ReservedNodeExchangeActionTypeType
|
|
1197
1198
|
ClusterIdentifier: NotRequired[str]
|
|
@@ -1636,11 +1637,17 @@ class EndpointAuthorizationResponseTypeDef(TypedDict):
|
|
|
1636
1637
|
ClusterStatus: str
|
|
1637
1638
|
Status: AuthorizationStatusType
|
|
1638
1639
|
AllowedAllVPCs: bool
|
|
1639
|
-
AllowedVPCs:
|
|
1640
|
+
AllowedVPCs: list[str]
|
|
1640
1641
|
EndpointCount: int
|
|
1641
1642
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1642
1643
|
|
|
1643
1644
|
|
|
1645
|
+
class GetIdentityCenterAuthTokenResponseTypeDef(TypedDict):
|
|
1646
|
+
Token: str
|
|
1647
|
+
ExpirationTime: datetime
|
|
1648
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1649
|
+
|
|
1650
|
+
|
|
1644
1651
|
class LoggingStatusTypeDef(TypedDict):
|
|
1645
1652
|
LoggingEnabled: bool
|
|
1646
1653
|
BucketName: str
|
|
@@ -1649,7 +1656,7 @@ class LoggingStatusTypeDef(TypedDict):
|
|
|
1649
1656
|
LastFailureTime: datetime
|
|
1650
1657
|
LastFailureMessage: str
|
|
1651
1658
|
LogDestinationType: LogDestinationTypeType
|
|
1652
|
-
LogExports:
|
|
1659
|
+
LogExports: list[str]
|
|
1653
1660
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1654
1661
|
|
|
1655
1662
|
|
|
@@ -1683,9 +1690,9 @@ class ResizeProgressMessageTypeDef(TypedDict):
|
|
|
1683
1690
|
TargetNumberOfNodes: int
|
|
1684
1691
|
TargetClusterType: str
|
|
1685
1692
|
Status: str
|
|
1686
|
-
ImportTablesCompleted:
|
|
1687
|
-
ImportTablesInProgress:
|
|
1688
|
-
ImportTablesNotStarted:
|
|
1693
|
+
ImportTablesCompleted: list[str]
|
|
1694
|
+
ImportTablesInProgress: list[str]
|
|
1695
|
+
ImportTablesNotStarted: list[str]
|
|
1689
1696
|
AvgResizeRateInMegaBytesPerSecond: float
|
|
1690
1697
|
TotalResizeDataInMegaBytes: int
|
|
1691
1698
|
ProgressInMegaBytes: int
|
|
@@ -1700,7 +1707,7 @@ class ResizeProgressMessageTypeDef(TypedDict):
|
|
|
1700
1707
|
|
|
1701
1708
|
class AccountAttributeTypeDef(TypedDict):
|
|
1702
1709
|
AttributeName: NotRequired[str]
|
|
1703
|
-
AttributeValues: NotRequired[
|
|
1710
|
+
AttributeValues: NotRequired[list[AttributeValueTargetTypeDef]]
|
|
1704
1711
|
|
|
1705
1712
|
|
|
1706
1713
|
class ModifyAquaOutputMessageTypeDef(TypedDict):
|
|
@@ -1711,11 +1718,11 @@ class ModifyAquaOutputMessageTypeDef(TypedDict):
|
|
|
1711
1718
|
class AssociationTypeDef(TypedDict):
|
|
1712
1719
|
CustomDomainCertificateArn: NotRequired[str]
|
|
1713
1720
|
CustomDomainCertificateExpiryDate: NotRequired[datetime]
|
|
1714
|
-
CertificateAssociations: NotRequired[
|
|
1721
|
+
CertificateAssociations: NotRequired[list[CertificateAssociationTypeDef]]
|
|
1715
1722
|
|
|
1716
1723
|
|
|
1717
1724
|
class DescribeAuthenticationProfilesResultTypeDef(TypedDict):
|
|
1718
|
-
AuthenticationProfiles:
|
|
1725
|
+
AuthenticationProfiles: list[AuthenticationProfileTypeDef]
|
|
1719
1726
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1720
1727
|
|
|
1721
1728
|
|
|
@@ -1726,7 +1733,7 @@ AuthorizedTokenIssuerUnionTypeDef = Union[
|
|
|
1726
1733
|
|
|
1727
1734
|
class AvailabilityZoneTypeDef(TypedDict):
|
|
1728
1735
|
Name: NotRequired[str]
|
|
1729
|
-
SupportedPlatforms: NotRequired[
|
|
1736
|
+
SupportedPlatforms: NotRequired[list[SupportedPlatformTypeDef]]
|
|
1730
1737
|
|
|
1731
1738
|
|
|
1732
1739
|
class BatchDeleteClusterSnapshotsRequestTypeDef(TypedDict):
|
|
@@ -1734,14 +1741,14 @@ class BatchDeleteClusterSnapshotsRequestTypeDef(TypedDict):
|
|
|
1734
1741
|
|
|
1735
1742
|
|
|
1736
1743
|
class BatchDeleteClusterSnapshotsResultTypeDef(TypedDict):
|
|
1737
|
-
Resources:
|
|
1738
|
-
Errors:
|
|
1744
|
+
Resources: list[str]
|
|
1745
|
+
Errors: list[SnapshotErrorMessageTypeDef]
|
|
1739
1746
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1740
1747
|
|
|
1741
1748
|
|
|
1742
1749
|
class BatchModifyClusterSnapshotsOutputMessageTypeDef(TypedDict):
|
|
1743
|
-
Resources:
|
|
1744
|
-
Errors:
|
|
1750
|
+
Resources: list[str]
|
|
1751
|
+
Errors: list[SnapshotErrorMessageTypeDef]
|
|
1745
1752
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1746
1753
|
|
|
1747
1754
|
|
|
@@ -1749,16 +1756,16 @@ class ClusterDbRevisionTypeDef(TypedDict):
|
|
|
1749
1756
|
ClusterIdentifier: NotRequired[str]
|
|
1750
1757
|
CurrentDatabaseRevision: NotRequired[str]
|
|
1751
1758
|
DatabaseRevisionReleaseDate: NotRequired[datetime]
|
|
1752
|
-
RevisionTargets: NotRequired[
|
|
1759
|
+
RevisionTargets: NotRequired[list[RevisionTargetTypeDef]]
|
|
1753
1760
|
|
|
1754
1761
|
|
|
1755
1762
|
class SecondaryClusterInfoTypeDef(TypedDict):
|
|
1756
1763
|
AvailabilityZone: NotRequired[str]
|
|
1757
|
-
ClusterNodes: NotRequired[
|
|
1764
|
+
ClusterNodes: NotRequired[list[ClusterNodeTypeDef]]
|
|
1758
1765
|
|
|
1759
1766
|
|
|
1760
1767
|
class ClusterParameterGroupDetailsTypeDef(TypedDict):
|
|
1761
|
-
Parameters:
|
|
1768
|
+
Parameters: list[ParameterTypeDef]
|
|
1762
1769
|
Marker: str
|
|
1763
1770
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1764
1771
|
|
|
@@ -1766,7 +1773,7 @@ class ClusterParameterGroupDetailsTypeDef(TypedDict):
|
|
|
1766
1773
|
class DefaultClusterParametersTypeDef(TypedDict):
|
|
1767
1774
|
ParameterGroupFamily: NotRequired[str]
|
|
1768
1775
|
Marker: NotRequired[str]
|
|
1769
|
-
Parameters: NotRequired[
|
|
1776
|
+
Parameters: NotRequired[list[ParameterTypeDef]]
|
|
1770
1777
|
|
|
1771
1778
|
|
|
1772
1779
|
class ModifyClusterParameterGroupMessageTypeDef(TypedDict):
|
|
@@ -1783,14 +1790,14 @@ class ResetClusterParameterGroupMessageTypeDef(TypedDict):
|
|
|
1783
1790
|
class ClusterParameterGroupStatusTypeDef(TypedDict):
|
|
1784
1791
|
ParameterGroupName: NotRequired[str]
|
|
1785
1792
|
ParameterApplyStatus: NotRequired[str]
|
|
1786
|
-
ClusterParameterStatusList: NotRequired[
|
|
1793
|
+
ClusterParameterStatusList: NotRequired[list[ClusterParameterStatusTypeDef]]
|
|
1787
1794
|
|
|
1788
1795
|
|
|
1789
1796
|
class ClusterParameterGroupTypeDef(TypedDict):
|
|
1790
1797
|
ParameterGroupName: NotRequired[str]
|
|
1791
1798
|
ParameterGroupFamily: NotRequired[str]
|
|
1792
1799
|
Description: NotRequired[str]
|
|
1793
|
-
Tags: NotRequired[
|
|
1800
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1794
1801
|
|
|
1795
1802
|
|
|
1796
1803
|
class CreateClusterMessageTypeDef(TypedDict):
|
|
@@ -1932,7 +1939,7 @@ class EC2SecurityGroupTypeDef(TypedDict):
|
|
|
1932
1939
|
Status: NotRequired[str]
|
|
1933
1940
|
EC2SecurityGroupName: NotRequired[str]
|
|
1934
1941
|
EC2SecurityGroupOwnerId: NotRequired[str]
|
|
1935
|
-
Tags: NotRequired[
|
|
1942
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1936
1943
|
|
|
1937
1944
|
|
|
1938
1945
|
class EventSubscriptionTypeDef(TypedDict):
|
|
@@ -1942,17 +1949,17 @@ class EventSubscriptionTypeDef(TypedDict):
|
|
|
1942
1949
|
Status: NotRequired[str]
|
|
1943
1950
|
SubscriptionCreationTime: NotRequired[datetime]
|
|
1944
1951
|
SourceType: NotRequired[str]
|
|
1945
|
-
SourceIdsList: NotRequired[
|
|
1946
|
-
EventCategoriesList: NotRequired[
|
|
1952
|
+
SourceIdsList: NotRequired[list[str]]
|
|
1953
|
+
EventCategoriesList: NotRequired[list[str]]
|
|
1947
1954
|
Severity: NotRequired[str]
|
|
1948
1955
|
Enabled: NotRequired[bool]
|
|
1949
|
-
Tags: NotRequired[
|
|
1956
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1950
1957
|
|
|
1951
1958
|
|
|
1952
1959
|
class HsmClientCertificateTypeDef(TypedDict):
|
|
1953
1960
|
HsmClientCertificateIdentifier: NotRequired[str]
|
|
1954
1961
|
HsmClientCertificatePublicKey: NotRequired[str]
|
|
1955
|
-
Tags: NotRequired[
|
|
1962
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1956
1963
|
|
|
1957
1964
|
|
|
1958
1965
|
class HsmConfigurationTypeDef(TypedDict):
|
|
@@ -1960,40 +1967,40 @@ class HsmConfigurationTypeDef(TypedDict):
|
|
|
1960
1967
|
Description: NotRequired[str]
|
|
1961
1968
|
HsmIpAddress: NotRequired[str]
|
|
1962
1969
|
HsmPartitionName: NotRequired[str]
|
|
1963
|
-
Tags: NotRequired[
|
|
1970
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1964
1971
|
|
|
1965
1972
|
|
|
1966
1973
|
class IPRangeTypeDef(TypedDict):
|
|
1967
1974
|
Status: NotRequired[str]
|
|
1968
1975
|
CIDRIP: NotRequired[str]
|
|
1969
|
-
Tags: NotRequired[
|
|
1976
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1970
1977
|
|
|
1971
1978
|
|
|
1972
1979
|
class SnapshotCopyGrantTypeDef(TypedDict):
|
|
1973
1980
|
SnapshotCopyGrantName: NotRequired[str]
|
|
1974
1981
|
KmsKeyId: NotRequired[str]
|
|
1975
|
-
Tags: NotRequired[
|
|
1982
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
1976
1983
|
|
|
1977
1984
|
|
|
1978
1985
|
class SnapshotScheduleResponseTypeDef(TypedDict):
|
|
1979
|
-
ScheduleDefinitions:
|
|
1986
|
+
ScheduleDefinitions: list[str]
|
|
1980
1987
|
ScheduleIdentifier: str
|
|
1981
1988
|
ScheduleDescription: str
|
|
1982
|
-
Tags:
|
|
1983
|
-
NextInvocations:
|
|
1989
|
+
Tags: list[TagTypeDef]
|
|
1990
|
+
NextInvocations: list[datetime]
|
|
1984
1991
|
AssociatedClusterCount: int
|
|
1985
|
-
AssociatedClusters:
|
|
1992
|
+
AssociatedClusters: list[ClusterAssociatedToScheduleTypeDef]
|
|
1986
1993
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1987
1994
|
|
|
1988
1995
|
|
|
1989
1996
|
class SnapshotScheduleTypeDef(TypedDict):
|
|
1990
|
-
ScheduleDefinitions: NotRequired[
|
|
1997
|
+
ScheduleDefinitions: NotRequired[list[str]]
|
|
1991
1998
|
ScheduleIdentifier: NotRequired[str]
|
|
1992
1999
|
ScheduleDescription: NotRequired[str]
|
|
1993
|
-
Tags: NotRequired[
|
|
1994
|
-
NextInvocations: NotRequired[
|
|
2000
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
2001
|
+
NextInvocations: NotRequired[list[datetime]]
|
|
1995
2002
|
AssociatedClusterCount: NotRequired[int]
|
|
1996
|
-
AssociatedClusters: NotRequired[
|
|
2003
|
+
AssociatedClusters: NotRequired[list[ClusterAssociatedToScheduleTypeDef]]
|
|
1997
2004
|
|
|
1998
2005
|
|
|
1999
2006
|
class SnapshotTypeDef(TypedDict):
|
|
@@ -2015,7 +2022,7 @@ class SnapshotTypeDef(TypedDict):
|
|
|
2015
2022
|
Encrypted: NotRequired[bool]
|
|
2016
2023
|
KmsKeyId: NotRequired[str]
|
|
2017
2024
|
EncryptedWithHSM: NotRequired[bool]
|
|
2018
|
-
AccountsWithRestoreAccess: NotRequired[
|
|
2025
|
+
AccountsWithRestoreAccess: NotRequired[list[AccountWithRestoreAccessTypeDef]]
|
|
2019
2026
|
OwnerAccount: NotRequired[str]
|
|
2020
2027
|
TotalBackupSizeInMegaBytes: NotRequired[float]
|
|
2021
2028
|
ActualIncrementalBackupSizeInMegaBytes: NotRequired[float]
|
|
@@ -2024,8 +2031,8 @@ class SnapshotTypeDef(TypedDict):
|
|
|
2024
2031
|
EstimatedSecondsToCompletion: NotRequired[int]
|
|
2025
2032
|
ElapsedTimeInSeconds: NotRequired[int]
|
|
2026
2033
|
SourceRegion: NotRequired[str]
|
|
2027
|
-
Tags: NotRequired[
|
|
2028
|
-
RestorableNodeTypes: NotRequired[
|
|
2034
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
2035
|
+
RestorableNodeTypes: NotRequired[list[str]]
|
|
2029
2036
|
EnhancedVpcRouting: NotRequired[bool]
|
|
2030
2037
|
MaintenanceTrackName: NotRequired[str]
|
|
2031
2038
|
ManualSnapshotRetentionPeriod: NotRequired[int]
|
|
@@ -2050,7 +2057,7 @@ class UsageLimitResponseTypeDef(TypedDict):
|
|
|
2050
2057
|
Amount: int
|
|
2051
2058
|
Period: UsageLimitPeriodType
|
|
2052
2059
|
BreachAction: UsageLimitBreachActionType
|
|
2053
|
-
Tags:
|
|
2060
|
+
Tags: list[TagTypeDef]
|
|
2054
2061
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2055
2062
|
|
|
2056
2063
|
|
|
@@ -2062,18 +2069,18 @@ class UsageLimitTypeDef(TypedDict):
|
|
|
2062
2069
|
Amount: NotRequired[int]
|
|
2063
2070
|
Period: NotRequired[UsageLimitPeriodType]
|
|
2064
2071
|
BreachAction: NotRequired[UsageLimitBreachActionType]
|
|
2065
|
-
Tags: NotRequired[
|
|
2072
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
2066
2073
|
|
|
2067
2074
|
|
|
2068
2075
|
class DescribeReservedNodeExchangeStatusOutputMessageTypeDef(TypedDict):
|
|
2069
|
-
ReservedNodeExchangeStatusDetails:
|
|
2076
|
+
ReservedNodeExchangeStatusDetails: list[ReservedNodeExchangeStatusTypeDef]
|
|
2070
2077
|
Marker: str
|
|
2071
2078
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2072
2079
|
|
|
2073
2080
|
|
|
2074
2081
|
class ClusterVersionsMessageTypeDef(TypedDict):
|
|
2075
2082
|
Marker: str
|
|
2076
|
-
ClusterVersions:
|
|
2083
|
+
ClusterVersions: list[ClusterVersionTypeDef]
|
|
2077
2084
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2078
2085
|
|
|
2079
2086
|
|
|
@@ -2100,7 +2107,7 @@ class DataShareResponseTypeDef(TypedDict):
|
|
|
2100
2107
|
DataShareArn: str
|
|
2101
2108
|
ProducerArn: str
|
|
2102
2109
|
AllowPubliclyAccessibleConsumers: bool
|
|
2103
|
-
DataShareAssociations:
|
|
2110
|
+
DataShareAssociations: list[DataShareAssociationTypeDef]
|
|
2104
2111
|
ManagedBy: str
|
|
2105
2112
|
DataShareType: Literal["INTERNAL"]
|
|
2106
2113
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -2110,7 +2117,7 @@ class DataShareTypeDef(TypedDict):
|
|
|
2110
2117
|
DataShareArn: NotRequired[str]
|
|
2111
2118
|
ProducerArn: NotRequired[str]
|
|
2112
2119
|
AllowPubliclyAccessibleConsumers: NotRequired[bool]
|
|
2113
|
-
DataShareAssociations: NotRequired[
|
|
2120
|
+
DataShareAssociations: NotRequired[list[DataShareAssociationTypeDef]]
|
|
2114
2121
|
ManagedBy: NotRequired[str]
|
|
2115
2122
|
DataShareType: NotRequired[Literal["INTERNAL"]]
|
|
2116
2123
|
|
|
@@ -2437,7 +2444,7 @@ class DescribeNodeConfigurationOptionsMessageTypeDef(TypedDict):
|
|
|
2437
2444
|
|
|
2438
2445
|
|
|
2439
2446
|
class DescribePartnersOutputMessageTypeDef(TypedDict):
|
|
2440
|
-
PartnerIntegrationInfoList:
|
|
2447
|
+
PartnerIntegrationInfoList: list[PartnerIntegrationInfoTypeDef]
|
|
2441
2448
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2442
2449
|
|
|
2443
2450
|
|
|
@@ -2463,19 +2470,19 @@ class DescribeScheduledActionsMessageTypeDef(TypedDict):
|
|
|
2463
2470
|
|
|
2464
2471
|
|
|
2465
2472
|
class EndpointAuthorizationListTypeDef(TypedDict):
|
|
2466
|
-
EndpointAuthorizationList:
|
|
2473
|
+
EndpointAuthorizationList: list[EndpointAuthorizationTypeDef]
|
|
2467
2474
|
Marker: str
|
|
2468
2475
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2469
2476
|
|
|
2470
2477
|
|
|
2471
2478
|
class EventCategoriesMapTypeDef(TypedDict):
|
|
2472
2479
|
SourceType: NotRequired[str]
|
|
2473
|
-
Events: NotRequired[
|
|
2480
|
+
Events: NotRequired[list[EventInfoMapTypeDef]]
|
|
2474
2481
|
|
|
2475
2482
|
|
|
2476
2483
|
class EventsMessageTypeDef(TypedDict):
|
|
2477
2484
|
Marker: str
|
|
2478
|
-
Events:
|
|
2485
|
+
Events: list[EventTypeDef]
|
|
2479
2486
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2480
2487
|
|
|
2481
2488
|
|
|
@@ -2494,7 +2501,7 @@ class InboundIntegrationTypeDef(TypedDict):
|
|
|
2494
2501
|
SourceArn: NotRequired[str]
|
|
2495
2502
|
TargetArn: NotRequired[str]
|
|
2496
2503
|
Status: NotRequired[ZeroETLIntegrationStatusType]
|
|
2497
|
-
Errors: NotRequired[
|
|
2504
|
+
Errors: NotRequired[list[IntegrationErrorTypeDef]]
|
|
2498
2505
|
CreateTime: NotRequired[datetime]
|
|
2499
2506
|
|
|
2500
2507
|
|
|
@@ -2504,12 +2511,12 @@ class IntegrationResponseTypeDef(TypedDict):
|
|
|
2504
2511
|
SourceArn: str
|
|
2505
2512
|
TargetArn: str
|
|
2506
2513
|
Status: ZeroETLIntegrationStatusType
|
|
2507
|
-
Errors:
|
|
2514
|
+
Errors: list[IntegrationErrorTypeDef]
|
|
2508
2515
|
CreateTime: datetime
|
|
2509
2516
|
Description: str
|
|
2510
2517
|
KMSKeyId: str
|
|
2511
|
-
AdditionalEncryptionContext:
|
|
2512
|
-
Tags:
|
|
2518
|
+
AdditionalEncryptionContext: dict[str, str]
|
|
2519
|
+
Tags: list[TagTypeDef]
|
|
2513
2520
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2514
2521
|
|
|
2515
2522
|
|
|
@@ -2519,12 +2526,12 @@ class IntegrationTypeDef(TypedDict):
|
|
|
2519
2526
|
SourceArn: NotRequired[str]
|
|
2520
2527
|
TargetArn: NotRequired[str]
|
|
2521
2528
|
Status: NotRequired[ZeroETLIntegrationStatusType]
|
|
2522
|
-
Errors: NotRequired[
|
|
2529
|
+
Errors: NotRequired[list[IntegrationErrorTypeDef]]
|
|
2523
2530
|
CreateTime: NotRequired[datetime]
|
|
2524
2531
|
Description: NotRequired[str]
|
|
2525
2532
|
KMSKeyId: NotRequired[str]
|
|
2526
|
-
AdditionalEncryptionContext: NotRequired[
|
|
2527
|
-
Tags: NotRequired[
|
|
2533
|
+
AdditionalEncryptionContext: NotRequired[dict[str, str]]
|
|
2534
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
2528
2535
|
|
|
2529
2536
|
|
|
2530
2537
|
class LakeFormationScopeUnionTypeDef(TypedDict):
|
|
@@ -2539,11 +2546,11 @@ class NamespaceIdentifierUnionTypeDef(TypedDict):
|
|
|
2539
2546
|
class VpcEndpointTypeDef(TypedDict):
|
|
2540
2547
|
VpcEndpointId: NotRequired[str]
|
|
2541
2548
|
VpcId: NotRequired[str]
|
|
2542
|
-
NetworkInterfaces: NotRequired[
|
|
2549
|
+
NetworkInterfaces: NotRequired[list[NetworkInterfaceTypeDef]]
|
|
2543
2550
|
|
|
2544
2551
|
|
|
2545
2552
|
class NodeConfigurationOptionsMessageTypeDef(TypedDict):
|
|
2546
|
-
NodeConfigurationOptionList:
|
|
2553
|
+
NodeConfigurationOptionList: list[NodeConfigurationOptionTypeDef]
|
|
2547
2554
|
Marker: str
|
|
2548
2555
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2549
2556
|
|
|
@@ -2563,8 +2570,8 @@ class RecommendationTypeDef(TypedDict):
|
|
|
2563
2570
|
Observation: NotRequired[str]
|
|
2564
2571
|
ImpactRanking: NotRequired[ImpactRankingTypeType]
|
|
2565
2572
|
RecommendationText: NotRequired[str]
|
|
2566
|
-
RecommendedActions: NotRequired[
|
|
2567
|
-
ReferenceLinks: NotRequired[
|
|
2573
|
+
RecommendedActions: NotRequired[list[RecommendedActionTypeDef]]
|
|
2574
|
+
ReferenceLinks: NotRequired[list[ReferenceLinkTypeDef]]
|
|
2568
2575
|
|
|
2569
2576
|
|
|
2570
2577
|
class ReservedNodeOfferingTypeDef(TypedDict):
|
|
@@ -2575,7 +2582,7 @@ class ReservedNodeOfferingTypeDef(TypedDict):
|
|
|
2575
2582
|
UsagePrice: NotRequired[float]
|
|
2576
2583
|
CurrencyCode: NotRequired[str]
|
|
2577
2584
|
OfferingType: NotRequired[str]
|
|
2578
|
-
RecurringCharges: NotRequired[
|
|
2585
|
+
RecurringCharges: NotRequired[list[RecurringChargeTypeDef]]
|
|
2579
2586
|
ReservedNodeOfferingType: NotRequired[ReservedNodeOfferingTypeType]
|
|
2580
2587
|
|
|
2581
2588
|
|
|
@@ -2591,7 +2598,7 @@ class ReservedNodeTypeDef(TypedDict):
|
|
|
2591
2598
|
NodeCount: NotRequired[int]
|
|
2592
2599
|
State: NotRequired[str]
|
|
2593
2600
|
OfferingType: NotRequired[str]
|
|
2594
|
-
RecurringCharges: NotRequired[
|
|
2601
|
+
RecurringCharges: NotRequired[list[RecurringChargeTypeDef]]
|
|
2595
2602
|
ReservedNodeOfferingType: NotRequired[ReservedNodeOfferingTypeType]
|
|
2596
2603
|
|
|
2597
2604
|
|
|
@@ -2601,7 +2608,7 @@ class RestoreTableFromClusterSnapshotResultTypeDef(TypedDict):
|
|
|
2601
2608
|
|
|
2602
2609
|
|
|
2603
2610
|
class TableRestoreStatusMessageTypeDef(TypedDict):
|
|
2604
|
-
TableRestoreStatusDetails:
|
|
2611
|
+
TableRestoreStatusDetails: list[TableRestoreStatusTypeDef]
|
|
2605
2612
|
Marker: str
|
|
2606
2613
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2607
2614
|
|
|
@@ -2615,17 +2622,17 @@ class ScheduledActionTypeTypeDef(TypedDict):
|
|
|
2615
2622
|
class UpdateTargetTypeDef(TypedDict):
|
|
2616
2623
|
MaintenanceTrackName: NotRequired[str]
|
|
2617
2624
|
DatabaseVersion: NotRequired[str]
|
|
2618
|
-
SupportedOperations: NotRequired[
|
|
2625
|
+
SupportedOperations: NotRequired[list[SupportedOperationTypeDef]]
|
|
2619
2626
|
|
|
2620
2627
|
|
|
2621
2628
|
class AccountAttributeListTypeDef(TypedDict):
|
|
2622
|
-
AccountAttributes:
|
|
2629
|
+
AccountAttributes: list[AccountAttributeTypeDef]
|
|
2623
2630
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2624
2631
|
|
|
2625
2632
|
|
|
2626
2633
|
class CustomDomainAssociationsMessageTypeDef(TypedDict):
|
|
2627
2634
|
Marker: str
|
|
2628
|
-
Associations:
|
|
2635
|
+
Associations: list[AssociationTypeDef]
|
|
2629
2636
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2630
2637
|
|
|
2631
2638
|
|
|
@@ -2633,7 +2640,7 @@ class OrderableClusterOptionTypeDef(TypedDict):
|
|
|
2633
2640
|
ClusterVersion: NotRequired[str]
|
|
2634
2641
|
ClusterType: NotRequired[str]
|
|
2635
2642
|
NodeType: NotRequired[str]
|
|
2636
|
-
AvailabilityZones: NotRequired[
|
|
2643
|
+
AvailabilityZones: NotRequired[list[AvailabilityZoneTypeDef]]
|
|
2637
2644
|
|
|
2638
2645
|
|
|
2639
2646
|
class SubnetTypeDef(TypedDict):
|
|
@@ -2644,7 +2651,7 @@ class SubnetTypeDef(TypedDict):
|
|
|
2644
2651
|
|
|
2645
2652
|
class ClusterDbRevisionsMessageTypeDef(TypedDict):
|
|
2646
2653
|
Marker: str
|
|
2647
|
-
ClusterDbRevisions:
|
|
2654
|
+
ClusterDbRevisions: list[ClusterDbRevisionTypeDef]
|
|
2648
2655
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2649
2656
|
|
|
2650
2657
|
|
|
@@ -2655,7 +2662,7 @@ class DescribeDefaultClusterParametersResultTypeDef(TypedDict):
|
|
|
2655
2662
|
|
|
2656
2663
|
class ClusterParameterGroupsMessageTypeDef(TypedDict):
|
|
2657
2664
|
Marker: str
|
|
2658
|
-
ParameterGroups:
|
|
2665
|
+
ParameterGroups: list[ClusterParameterGroupTypeDef]
|
|
2659
2666
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2660
2667
|
|
|
2661
2668
|
|
|
@@ -2671,7 +2678,7 @@ class CreateEventSubscriptionResultTypeDef(TypedDict):
|
|
|
2671
2678
|
|
|
2672
2679
|
class EventSubscriptionsMessageTypeDef(TypedDict):
|
|
2673
2680
|
Marker: str
|
|
2674
|
-
EventSubscriptionsList:
|
|
2681
|
+
EventSubscriptionsList: list[EventSubscriptionTypeDef]
|
|
2675
2682
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2676
2683
|
|
|
2677
2684
|
|
|
@@ -2687,7 +2694,7 @@ class CreateHsmClientCertificateResultTypeDef(TypedDict):
|
|
|
2687
2694
|
|
|
2688
2695
|
class HsmClientCertificateMessageTypeDef(TypedDict):
|
|
2689
2696
|
Marker: str
|
|
2690
|
-
HsmClientCertificates:
|
|
2697
|
+
HsmClientCertificates: list[HsmClientCertificateTypeDef]
|
|
2691
2698
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2692
2699
|
|
|
2693
2700
|
|
|
@@ -2698,16 +2705,16 @@ class CreateHsmConfigurationResultTypeDef(TypedDict):
|
|
|
2698
2705
|
|
|
2699
2706
|
class HsmConfigurationMessageTypeDef(TypedDict):
|
|
2700
2707
|
Marker: str
|
|
2701
|
-
HsmConfigurations:
|
|
2708
|
+
HsmConfigurations: list[HsmConfigurationTypeDef]
|
|
2702
2709
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2703
2710
|
|
|
2704
2711
|
|
|
2705
2712
|
class ClusterSecurityGroupTypeDef(TypedDict):
|
|
2706
2713
|
ClusterSecurityGroupName: NotRequired[str]
|
|
2707
2714
|
Description: NotRequired[str]
|
|
2708
|
-
EC2SecurityGroups: NotRequired[
|
|
2709
|
-
IPRanges: NotRequired[
|
|
2710
|
-
Tags: NotRequired[
|
|
2715
|
+
EC2SecurityGroups: NotRequired[list[EC2SecurityGroupTypeDef]]
|
|
2716
|
+
IPRanges: NotRequired[list[IPRangeTypeDef]]
|
|
2717
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
2711
2718
|
|
|
2712
2719
|
|
|
2713
2720
|
class CreateSnapshotCopyGrantResultTypeDef(TypedDict):
|
|
@@ -2717,12 +2724,12 @@ class CreateSnapshotCopyGrantResultTypeDef(TypedDict):
|
|
|
2717
2724
|
|
|
2718
2725
|
class SnapshotCopyGrantMessageTypeDef(TypedDict):
|
|
2719
2726
|
Marker: str
|
|
2720
|
-
SnapshotCopyGrants:
|
|
2727
|
+
SnapshotCopyGrants: list[SnapshotCopyGrantTypeDef]
|
|
2721
2728
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2722
2729
|
|
|
2723
2730
|
|
|
2724
2731
|
class DescribeSnapshotSchedulesOutputMessageTypeDef(TypedDict):
|
|
2725
|
-
SnapshotSchedules:
|
|
2732
|
+
SnapshotSchedules: list[SnapshotScheduleTypeDef]
|
|
2726
2733
|
Marker: str
|
|
2727
2734
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2728
2735
|
|
|
@@ -2759,54 +2766,54 @@ class RevokeSnapshotAccessResultTypeDef(TypedDict):
|
|
|
2759
2766
|
|
|
2760
2767
|
class SnapshotMessageTypeDef(TypedDict):
|
|
2761
2768
|
Marker: str
|
|
2762
|
-
Snapshots:
|
|
2769
|
+
Snapshots: list[SnapshotTypeDef]
|
|
2763
2770
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2764
2771
|
|
|
2765
2772
|
|
|
2766
2773
|
class TaggedResourceListMessageTypeDef(TypedDict):
|
|
2767
|
-
TaggedResources:
|
|
2774
|
+
TaggedResources: list[TaggedResourceTypeDef]
|
|
2768
2775
|
Marker: str
|
|
2769
2776
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2770
2777
|
|
|
2771
2778
|
|
|
2772
2779
|
class UsageLimitListTypeDef(TypedDict):
|
|
2773
|
-
UsageLimits:
|
|
2780
|
+
UsageLimits: list[UsageLimitTypeDef]
|
|
2774
2781
|
Marker: str
|
|
2775
2782
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2776
2783
|
|
|
2777
2784
|
|
|
2778
2785
|
class DescribeDataSharesForConsumerResultTypeDef(TypedDict):
|
|
2779
|
-
DataShares:
|
|
2786
|
+
DataShares: list[DataShareTypeDef]
|
|
2780
2787
|
Marker: str
|
|
2781
2788
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2782
2789
|
|
|
2783
2790
|
|
|
2784
2791
|
class DescribeDataSharesForProducerResultTypeDef(TypedDict):
|
|
2785
|
-
DataShares:
|
|
2792
|
+
DataShares: list[DataShareTypeDef]
|
|
2786
2793
|
Marker: str
|
|
2787
2794
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2788
2795
|
|
|
2789
2796
|
|
|
2790
2797
|
class DescribeDataSharesResultTypeDef(TypedDict):
|
|
2791
|
-
DataShares:
|
|
2798
|
+
DataShares: list[DataShareTypeDef]
|
|
2792
2799
|
Marker: str
|
|
2793
2800
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2794
2801
|
|
|
2795
2802
|
|
|
2796
2803
|
class EventCategoriesMessageTypeDef(TypedDict):
|
|
2797
|
-
EventCategoriesMapList:
|
|
2804
|
+
EventCategoriesMapList: list[EventCategoriesMapTypeDef]
|
|
2798
2805
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2799
2806
|
|
|
2800
2807
|
|
|
2801
2808
|
class InboundIntegrationsMessageTypeDef(TypedDict):
|
|
2802
2809
|
Marker: str
|
|
2803
|
-
InboundIntegrations:
|
|
2810
|
+
InboundIntegrations: list[InboundIntegrationTypeDef]
|
|
2804
2811
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2805
2812
|
|
|
2806
2813
|
|
|
2807
2814
|
class IntegrationsMessageTypeDef(TypedDict):
|
|
2808
2815
|
Marker: str
|
|
2809
|
-
Integrations:
|
|
2816
|
+
Integrations: list[IntegrationTypeDef]
|
|
2810
2817
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2811
2818
|
|
|
2812
2819
|
|
|
@@ -2829,7 +2836,7 @@ class EndpointAccessResponseTypeDef(TypedDict):
|
|
|
2829
2836
|
EndpointCreateTime: datetime
|
|
2830
2837
|
Port: int
|
|
2831
2838
|
Address: str
|
|
2832
|
-
VpcSecurityGroups:
|
|
2839
|
+
VpcSecurityGroups: list[VpcSecurityGroupMembershipTypeDef]
|
|
2833
2840
|
VpcEndpoint: VpcEndpointTypeDef
|
|
2834
2841
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2835
2842
|
|
|
@@ -2843,19 +2850,19 @@ class EndpointAccessTypeDef(TypedDict):
|
|
|
2843
2850
|
EndpointCreateTime: NotRequired[datetime]
|
|
2844
2851
|
Port: NotRequired[int]
|
|
2845
2852
|
Address: NotRequired[str]
|
|
2846
|
-
VpcSecurityGroups: NotRequired[
|
|
2853
|
+
VpcSecurityGroups: NotRequired[list[VpcSecurityGroupMembershipTypeDef]]
|
|
2847
2854
|
VpcEndpoint: NotRequired[VpcEndpointTypeDef]
|
|
2848
2855
|
|
|
2849
2856
|
|
|
2850
2857
|
class EndpointTypeDef(TypedDict):
|
|
2851
2858
|
Address: NotRequired[str]
|
|
2852
2859
|
Port: NotRequired[int]
|
|
2853
|
-
VpcEndpoints: NotRequired[
|
|
2860
|
+
VpcEndpoints: NotRequired[list[VpcEndpointTypeDef]]
|
|
2854
2861
|
|
|
2855
2862
|
|
|
2856
2863
|
class ServiceIntegrationsUnionOutputTypeDef(TypedDict):
|
|
2857
|
-
LakeFormation: NotRequired[
|
|
2858
|
-
S3AccessGrants: NotRequired[
|
|
2864
|
+
LakeFormation: NotRequired[list[LakeFormationScopeUnionTypeDef]]
|
|
2865
|
+
S3AccessGrants: NotRequired[list[S3AccessGrantsScopeUnionTypeDef]]
|
|
2859
2866
|
|
|
2860
2867
|
|
|
2861
2868
|
class ServiceIntegrationsUnionTypeDef(TypedDict):
|
|
@@ -2864,20 +2871,20 @@ class ServiceIntegrationsUnionTypeDef(TypedDict):
|
|
|
2864
2871
|
|
|
2865
2872
|
|
|
2866
2873
|
class ListRecommendationsResultTypeDef(TypedDict):
|
|
2867
|
-
Recommendations:
|
|
2874
|
+
Recommendations: list[RecommendationTypeDef]
|
|
2868
2875
|
Marker: str
|
|
2869
2876
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2870
2877
|
|
|
2871
2878
|
|
|
2872
2879
|
class GetReservedNodeExchangeOfferingsOutputMessageTypeDef(TypedDict):
|
|
2873
2880
|
Marker: str
|
|
2874
|
-
ReservedNodeOfferings:
|
|
2881
|
+
ReservedNodeOfferings: list[ReservedNodeOfferingTypeDef]
|
|
2875
2882
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2876
2883
|
|
|
2877
2884
|
|
|
2878
2885
|
class ReservedNodeOfferingsMessageTypeDef(TypedDict):
|
|
2879
2886
|
Marker: str
|
|
2880
|
-
ReservedNodeOfferings:
|
|
2887
|
+
ReservedNodeOfferings: list[ReservedNodeOfferingTypeDef]
|
|
2881
2888
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2882
2889
|
|
|
2883
2890
|
|
|
@@ -2899,7 +2906,7 @@ class ReservedNodeConfigurationOptionTypeDef(TypedDict):
|
|
|
2899
2906
|
|
|
2900
2907
|
class ReservedNodesMessageTypeDef(TypedDict):
|
|
2901
2908
|
Marker: str
|
|
2902
|
-
ReservedNodes:
|
|
2909
|
+
ReservedNodes: list[ReservedNodeTypeDef]
|
|
2903
2910
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2904
2911
|
|
|
2905
2912
|
|
|
@@ -2932,7 +2939,7 @@ class ScheduledActionResponseTypeDef(TypedDict):
|
|
|
2932
2939
|
IamRole: str
|
|
2933
2940
|
ScheduledActionDescription: str
|
|
2934
2941
|
State: ScheduledActionStateType
|
|
2935
|
-
NextInvocations:
|
|
2942
|
+
NextInvocations: list[datetime]
|
|
2936
2943
|
StartTime: datetime
|
|
2937
2944
|
EndTime: datetime
|
|
2938
2945
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -2945,7 +2952,7 @@ class ScheduledActionTypeDef(TypedDict):
|
|
|
2945
2952
|
IamRole: NotRequired[str]
|
|
2946
2953
|
ScheduledActionDescription: NotRequired[str]
|
|
2947
2954
|
State: NotRequired[ScheduledActionStateType]
|
|
2948
|
-
NextInvocations: NotRequired[
|
|
2955
|
+
NextInvocations: NotRequired[list[datetime]]
|
|
2949
2956
|
StartTime: NotRequired[datetime]
|
|
2950
2957
|
EndTime: NotRequired[datetime]
|
|
2951
2958
|
|
|
@@ -2953,11 +2960,11 @@ class ScheduledActionTypeDef(TypedDict):
|
|
|
2953
2960
|
class MaintenanceTrackTypeDef(TypedDict):
|
|
2954
2961
|
MaintenanceTrackName: NotRequired[str]
|
|
2955
2962
|
DatabaseVersion: NotRequired[str]
|
|
2956
|
-
UpdateTargets: NotRequired[
|
|
2963
|
+
UpdateTargets: NotRequired[list[UpdateTargetTypeDef]]
|
|
2957
2964
|
|
|
2958
2965
|
|
|
2959
2966
|
class OrderableClusterOptionsMessageTypeDef(TypedDict):
|
|
2960
|
-
OrderableClusterOptions:
|
|
2967
|
+
OrderableClusterOptions: list[OrderableClusterOptionTypeDef]
|
|
2961
2968
|
Marker: str
|
|
2962
2969
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2963
2970
|
|
|
@@ -2967,9 +2974,9 @@ class ClusterSubnetGroupTypeDef(TypedDict):
|
|
|
2967
2974
|
Description: NotRequired[str]
|
|
2968
2975
|
VpcId: NotRequired[str]
|
|
2969
2976
|
SubnetGroupStatus: NotRequired[str]
|
|
2970
|
-
Subnets: NotRequired[
|
|
2971
|
-
Tags: NotRequired[
|
|
2972
|
-
SupportedClusterIpAddressTypes: NotRequired[
|
|
2977
|
+
Subnets: NotRequired[list[SubnetTypeDef]]
|
|
2978
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
2979
|
+
SupportedClusterIpAddressTypes: NotRequired[list[str]]
|
|
2973
2980
|
|
|
2974
2981
|
|
|
2975
2982
|
class AuthorizeClusterSecurityGroupIngressResultTypeDef(TypedDict):
|
|
@@ -2979,7 +2986,7 @@ class AuthorizeClusterSecurityGroupIngressResultTypeDef(TypedDict):
|
|
|
2979
2986
|
|
|
2980
2987
|
class ClusterSecurityGroupMessageTypeDef(TypedDict):
|
|
2981
2988
|
Marker: str
|
|
2982
|
-
ClusterSecurityGroups:
|
|
2989
|
+
ClusterSecurityGroups: list[ClusterSecurityGroupTypeDef]
|
|
2983
2990
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2984
2991
|
|
|
2985
2992
|
|
|
@@ -2994,7 +3001,7 @@ class RevokeClusterSecurityGroupIngressResultTypeDef(TypedDict):
|
|
|
2994
3001
|
|
|
2995
3002
|
|
|
2996
3003
|
class EndpointAccessListTypeDef(TypedDict):
|
|
2997
|
-
EndpointAccessList:
|
|
3004
|
+
EndpointAccessList: list[EndpointAccessTypeDef]
|
|
2998
3005
|
Marker: str
|
|
2999
3006
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3000
3007
|
|
|
@@ -3011,9 +3018,9 @@ class ClusterTypeDef(TypedDict):
|
|
|
3011
3018
|
ClusterCreateTime: NotRequired[datetime]
|
|
3012
3019
|
AutomatedSnapshotRetentionPeriod: NotRequired[int]
|
|
3013
3020
|
ManualSnapshotRetentionPeriod: NotRequired[int]
|
|
3014
|
-
ClusterSecurityGroups: NotRequired[
|
|
3015
|
-
VpcSecurityGroups: NotRequired[
|
|
3016
|
-
ClusterParameterGroups: NotRequired[
|
|
3021
|
+
ClusterSecurityGroups: NotRequired[list[ClusterSecurityGroupMembershipTypeDef]]
|
|
3022
|
+
VpcSecurityGroups: NotRequired[list[VpcSecurityGroupMembershipTypeDef]]
|
|
3023
|
+
ClusterParameterGroups: NotRequired[list[ClusterParameterGroupStatusTypeDef]]
|
|
3017
3024
|
ClusterSubnetGroupName: NotRequired[str]
|
|
3018
3025
|
VpcId: NotRequired[str]
|
|
3019
3026
|
AvailabilityZone: NotRequired[str]
|
|
@@ -3029,17 +3036,17 @@ class ClusterTypeDef(TypedDict):
|
|
|
3029
3036
|
HsmStatus: NotRequired[HsmStatusTypeDef]
|
|
3030
3037
|
ClusterSnapshotCopyStatus: NotRequired[ClusterSnapshotCopyStatusTypeDef]
|
|
3031
3038
|
ClusterPublicKey: NotRequired[str]
|
|
3032
|
-
ClusterNodes: NotRequired[
|
|
3039
|
+
ClusterNodes: NotRequired[list[ClusterNodeTypeDef]]
|
|
3033
3040
|
ElasticIpStatus: NotRequired[ElasticIpStatusTypeDef]
|
|
3034
3041
|
ClusterRevisionNumber: NotRequired[str]
|
|
3035
|
-
Tags: NotRequired[
|
|
3042
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
3036
3043
|
KmsKeyId: NotRequired[str]
|
|
3037
3044
|
EnhancedVpcRouting: NotRequired[bool]
|
|
3038
|
-
IamRoles: NotRequired[
|
|
3039
|
-
PendingActions: NotRequired[
|
|
3045
|
+
IamRoles: NotRequired[list[ClusterIamRoleTypeDef]]
|
|
3046
|
+
PendingActions: NotRequired[list[str]]
|
|
3040
3047
|
MaintenanceTrackName: NotRequired[str]
|
|
3041
3048
|
ElasticResizeNumberOfNodeOptions: NotRequired[str]
|
|
3042
|
-
DeferredMaintenanceWindows: NotRequired[
|
|
3049
|
+
DeferredMaintenanceWindows: NotRequired[list[DeferredMaintenanceWindowTypeDef]]
|
|
3043
3050
|
SnapshotScheduleIdentifier: NotRequired[str]
|
|
3044
3051
|
SnapshotScheduleState: NotRequired[ScheduleStateType]
|
|
3045
3052
|
ExpectedNextSnapshotScheduleTime: NotRequired[datetime]
|
|
@@ -3071,10 +3078,10 @@ class RedshiftIdcApplicationTypeDef(TypedDict):
|
|
|
3071
3078
|
IamRoleArn: NotRequired[str]
|
|
3072
3079
|
IdcManagedApplicationArn: NotRequired[str]
|
|
3073
3080
|
IdcOnboardStatus: NotRequired[str]
|
|
3074
|
-
AuthorizedTokenIssuerList: NotRequired[
|
|
3075
|
-
ServiceIntegrations: NotRequired[
|
|
3076
|
-
Tags: NotRequired[
|
|
3077
|
-
SsoTagKeys: NotRequired[
|
|
3081
|
+
AuthorizedTokenIssuerList: NotRequired[list[AuthorizedTokenIssuerOutputTypeDef]]
|
|
3082
|
+
ServiceIntegrations: NotRequired[list[ServiceIntegrationsUnionOutputTypeDef]]
|
|
3083
|
+
Tags: NotRequired[list[TagTypeDef]]
|
|
3084
|
+
SsoTagKeys: NotRequired[list[str]]
|
|
3078
3085
|
|
|
3079
3086
|
|
|
3080
3087
|
ServiceIntegrationsUnionUnionTypeDef = Union[
|
|
@@ -3084,25 +3091,25 @@ ServiceIntegrationsUnionUnionTypeDef = Union[
|
|
|
3084
3091
|
|
|
3085
3092
|
class GetReservedNodeExchangeConfigurationOptionsOutputMessageTypeDef(TypedDict):
|
|
3086
3093
|
Marker: str
|
|
3087
|
-
ReservedNodeConfigurationOptionList:
|
|
3094
|
+
ReservedNodeConfigurationOptionList: list[ReservedNodeConfigurationOptionTypeDef]
|
|
3088
3095
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3089
3096
|
|
|
3090
3097
|
|
|
3091
3098
|
class ScheduledActionsMessageTypeDef(TypedDict):
|
|
3092
3099
|
Marker: str
|
|
3093
|
-
ScheduledActions:
|
|
3100
|
+
ScheduledActions: list[ScheduledActionTypeDef]
|
|
3094
3101
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3095
3102
|
|
|
3096
3103
|
|
|
3097
3104
|
class TrackListMessageTypeDef(TypedDict):
|
|
3098
|
-
MaintenanceTracks:
|
|
3105
|
+
MaintenanceTracks: list[MaintenanceTrackTypeDef]
|
|
3099
3106
|
Marker: str
|
|
3100
3107
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3101
3108
|
|
|
3102
3109
|
|
|
3103
3110
|
class ClusterSubnetGroupMessageTypeDef(TypedDict):
|
|
3104
3111
|
Marker: str
|
|
3105
|
-
ClusterSubnetGroups:
|
|
3112
|
+
ClusterSubnetGroups: list[ClusterSubnetGroupTypeDef]
|
|
3106
3113
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3107
3114
|
|
|
3108
3115
|
|
|
@@ -3118,7 +3125,7 @@ class ModifyClusterSubnetGroupResultTypeDef(TypedDict):
|
|
|
3118
3125
|
|
|
3119
3126
|
class ClustersMessageTypeDef(TypedDict):
|
|
3120
3127
|
Marker: str
|
|
3121
|
-
Clusters:
|
|
3128
|
+
Clusters: list[ClusterTypeDef]
|
|
3122
3129
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3123
3130
|
|
|
3124
3131
|
|
|
@@ -3208,7 +3215,7 @@ class CreateRedshiftIdcApplicationResultTypeDef(TypedDict):
|
|
|
3208
3215
|
|
|
3209
3216
|
|
|
3210
3217
|
class DescribeRedshiftIdcApplicationsResultTypeDef(TypedDict):
|
|
3211
|
-
RedshiftIdcApplications:
|
|
3218
|
+
RedshiftIdcApplications: list[RedshiftIdcApplicationTypeDef]
|
|
3212
3219
|
Marker: str
|
|
3213
3220
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
3214
3221
|
|