aws-cdk-lib 2.164.1__py3-none-any.whl → 2.165.0__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 aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +20 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.164.1.jsii.tgz → aws-cdk-lib@2.165.0.jsii.tgz} +0 -0
- aws_cdk/aws_appsync/__init__.py +24 -18
- aws_cdk/aws_autoscaling/__init__.py +145 -8
- aws_cdk/aws_backup/__init__.py +598 -0
- aws_cdk/aws_bedrock/__init__.py +8 -8
- aws_cdk/aws_codebuild/__init__.py +88 -33
- aws_cdk/aws_cognito/__init__.py +657 -95
- aws_cdk/aws_ec2/__init__.py +122 -32
- aws_cdk/aws_eks/__init__.py +10 -12
- aws_cdk/aws_elasticache/__init__.py +47 -6
- aws_cdk/aws_imagebuilder/__init__.py +183 -0
- aws_cdk/aws_iot/__init__.py +37 -43
- aws_cdk/aws_iotwireless/__init__.py +2 -2
- aws_cdk/aws_memorydb/__init__.py +41 -0
- aws_cdk/aws_qbusiness/__init__.py +21 -14
- aws_cdk/aws_rds/__init__.py +122 -32
- aws_cdk/aws_redshift/__init__.py +23 -23
- aws_cdk/aws_refactorspaces/__init__.py +56 -61
- aws_cdk/aws_resiliencehub/__init__.py +4 -4
- aws_cdk/aws_route53/__init__.py +3 -1
- aws_cdk/aws_sagemaker/__init__.py +69 -0
- aws_cdk/aws_sqs/__init__.py +9 -12
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.165.0.dist-info}/METADATA +6 -6
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.165.0.dist-info}/RECORD +30 -30
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.165.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.165.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.165.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.164.1.dist-info → aws_cdk_lib-2.165.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -1733,12 +1733,15 @@ class AuroraCapacityUnit(enum.Enum):
|
|
|
1733
1733
|
)
|
|
1734
1734
|
class AuroraClusterEngineProps:
|
|
1735
1735
|
def __init__(self, *, version: "AuroraEngineVersion") -> None:
|
|
1736
|
-
'''Creation properties of the plain Aurora database cluster engine.
|
|
1736
|
+
'''(deprecated) Creation properties of the plain Aurora database cluster engine.
|
|
1737
1737
|
|
|
1738
1738
|
Used in ``DatabaseClusterEngine.aurora``.
|
|
1739
1739
|
|
|
1740
|
-
:param version: The version of the Aurora cluster engine.
|
|
1740
|
+
:param version: (deprecated) The version of the Aurora cluster engine.
|
|
1741
1741
|
|
|
1742
|
+
:deprecated: use ``AuroraMysqlClusterEngineProps`` instead
|
|
1743
|
+
|
|
1744
|
+
:stability: deprecated
|
|
1742
1745
|
:exampleMetadata: infused
|
|
1743
1746
|
|
|
1744
1747
|
Example::
|
|
@@ -1761,7 +1764,10 @@ class AuroraClusterEngineProps:
|
|
|
1761
1764
|
|
|
1762
1765
|
@builtins.property
|
|
1763
1766
|
def version(self) -> "AuroraEngineVersion":
|
|
1764
|
-
'''The version of the Aurora cluster engine.
|
|
1767
|
+
'''(deprecated) The version of the Aurora cluster engine.
|
|
1768
|
+
|
|
1769
|
+
:stability: deprecated
|
|
1770
|
+
'''
|
|
1765
1771
|
result = self._values.get("version")
|
|
1766
1772
|
assert result is not None, "Required property 'version' is missing"
|
|
1767
1773
|
return typing.cast("AuroraEngineVersion", result)
|
|
@@ -1782,8 +1788,11 @@ class AuroraEngineVersion(
|
|
|
1782
1788
|
metaclass=jsii.JSIIMeta,
|
|
1783
1789
|
jsii_type="aws-cdk-lib.aws_rds.AuroraEngineVersion",
|
|
1784
1790
|
):
|
|
1785
|
-
'''The versions for the Aurora cluster engine (those returned by ``DatabaseClusterEngine.aurora``).
|
|
1791
|
+
'''(deprecated) The versions for the Aurora cluster engine (those returned by ``DatabaseClusterEngine.aurora``).
|
|
1792
|
+
|
|
1793
|
+
:deprecated: use ``AuroraMysqlEngineVersion`` instead
|
|
1786
1794
|
|
|
1795
|
+
:stability: deprecated
|
|
1787
1796
|
:exampleMetadata: infused
|
|
1788
1797
|
|
|
1789
1798
|
Example::
|
|
@@ -1805,10 +1814,12 @@ class AuroraEngineVersion(
|
|
|
1805
1814
|
aurora_full_version: builtins.str,
|
|
1806
1815
|
aurora_major_version: typing.Optional[builtins.str] = None,
|
|
1807
1816
|
) -> "AuroraEngineVersion":
|
|
1808
|
-
'''Create a new AuroraEngineVersion with an arbitrary version.
|
|
1817
|
+
'''(deprecated) Create a new AuroraEngineVersion with an arbitrary version.
|
|
1809
1818
|
|
|
1810
1819
|
:param aurora_full_version: the full version string, for example "5.6.mysql_aurora.1.78.3.6".
|
|
1811
1820
|
:param aurora_major_version: the major version of the engine, defaults to "5.6".
|
|
1821
|
+
|
|
1822
|
+
:stability: deprecated
|
|
1812
1823
|
'''
|
|
1813
1824
|
if __debug__:
|
|
1814
1825
|
type_hints = typing.get_type_hints(_typecheckingstub__df17b87254cb31dd21f497140057c7bf82f0bc2436472cda0fb6ff7a099ecbde)
|
|
@@ -1819,147 +1830,218 @@ class AuroraEngineVersion(
|
|
|
1819
1830
|
@jsii.python.classproperty
|
|
1820
1831
|
@jsii.member(jsii_name="VER_1_17_9")
|
|
1821
1832
|
def VER_1_17_9(cls) -> "AuroraEngineVersion":
|
|
1822
|
-
'''Version "5.6.mysql_aurora.1.17.9".
|
|
1833
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.17.9".
|
|
1834
|
+
|
|
1835
|
+
:stability: deprecated
|
|
1836
|
+
'''
|
|
1823
1837
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_17_9"))
|
|
1824
1838
|
|
|
1825
1839
|
@jsii.python.classproperty
|
|
1826
1840
|
@jsii.member(jsii_name="VER_1_19_0")
|
|
1827
1841
|
def VER_1_19_0(cls) -> "AuroraEngineVersion":
|
|
1828
|
-
'''Version "5.6.mysql_aurora.1.19.0".
|
|
1842
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.19.0".
|
|
1843
|
+
|
|
1844
|
+
:stability: deprecated
|
|
1845
|
+
'''
|
|
1829
1846
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_19_0"))
|
|
1830
1847
|
|
|
1831
1848
|
@jsii.python.classproperty
|
|
1832
1849
|
@jsii.member(jsii_name="VER_1_19_1")
|
|
1833
1850
|
def VER_1_19_1(cls) -> "AuroraEngineVersion":
|
|
1834
|
-
'''Version "5.6.mysql_aurora.1.19.1".
|
|
1851
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.19.1".
|
|
1852
|
+
|
|
1853
|
+
:stability: deprecated
|
|
1854
|
+
'''
|
|
1835
1855
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_19_1"))
|
|
1836
1856
|
|
|
1837
1857
|
@jsii.python.classproperty
|
|
1838
1858
|
@jsii.member(jsii_name="VER_1_19_2")
|
|
1839
1859
|
def VER_1_19_2(cls) -> "AuroraEngineVersion":
|
|
1840
|
-
'''Version "5.6.mysql_aurora.1.19.2".
|
|
1860
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.19.2".
|
|
1861
|
+
|
|
1862
|
+
:stability: deprecated
|
|
1863
|
+
'''
|
|
1841
1864
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_19_2"))
|
|
1842
1865
|
|
|
1843
1866
|
@jsii.python.classproperty
|
|
1844
1867
|
@jsii.member(jsii_name="VER_1_19_5")
|
|
1845
1868
|
def VER_1_19_5(cls) -> "AuroraEngineVersion":
|
|
1846
|
-
'''Version "5.6.mysql_aurora.1.19.5".
|
|
1869
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.19.5".
|
|
1870
|
+
|
|
1871
|
+
:stability: deprecated
|
|
1872
|
+
'''
|
|
1847
1873
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_19_5"))
|
|
1848
1874
|
|
|
1849
1875
|
@jsii.python.classproperty
|
|
1850
1876
|
@jsii.member(jsii_name="VER_1_19_6")
|
|
1851
1877
|
def VER_1_19_6(cls) -> "AuroraEngineVersion":
|
|
1852
|
-
'''Version "5.6.mysql_aurora.1.19.6".
|
|
1878
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.19.6".
|
|
1879
|
+
|
|
1880
|
+
:stability: deprecated
|
|
1881
|
+
'''
|
|
1853
1882
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_19_6"))
|
|
1854
1883
|
|
|
1855
1884
|
@jsii.python.classproperty
|
|
1856
1885
|
@jsii.member(jsii_name="VER_1_20_0")
|
|
1857
1886
|
def VER_1_20_0(cls) -> "AuroraEngineVersion":
|
|
1858
|
-
'''Version "5.6.mysql_aurora.1.20.0".
|
|
1887
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.20.0".
|
|
1888
|
+
|
|
1889
|
+
:stability: deprecated
|
|
1890
|
+
'''
|
|
1859
1891
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_20_0"))
|
|
1860
1892
|
|
|
1861
1893
|
@jsii.python.classproperty
|
|
1862
1894
|
@jsii.member(jsii_name="VER_1_20_1")
|
|
1863
1895
|
def VER_1_20_1(cls) -> "AuroraEngineVersion":
|
|
1864
|
-
'''Version "5.6.mysql_aurora.1.20.1".
|
|
1896
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.20.1".
|
|
1897
|
+
|
|
1898
|
+
:stability: deprecated
|
|
1899
|
+
'''
|
|
1865
1900
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_20_1"))
|
|
1866
1901
|
|
|
1867
1902
|
@jsii.python.classproperty
|
|
1868
1903
|
@jsii.member(jsii_name="VER_1_21_0")
|
|
1869
1904
|
def VER_1_21_0(cls) -> "AuroraEngineVersion":
|
|
1870
|
-
'''Version "5.6.mysql_aurora.1.21.0".
|
|
1905
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.21.0".
|
|
1906
|
+
|
|
1907
|
+
:stability: deprecated
|
|
1908
|
+
'''
|
|
1871
1909
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_21_0"))
|
|
1872
1910
|
|
|
1873
1911
|
@jsii.python.classproperty
|
|
1874
1912
|
@jsii.member(jsii_name="VER_1_22_0")
|
|
1875
1913
|
def VER_1_22_0(cls) -> "AuroraEngineVersion":
|
|
1876
|
-
'''Version "5.6.mysql_aurora.1.22.0".
|
|
1914
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.22.0".
|
|
1915
|
+
|
|
1916
|
+
:stability: deprecated
|
|
1917
|
+
'''
|
|
1877
1918
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_22_0"))
|
|
1878
1919
|
|
|
1879
1920
|
@jsii.python.classproperty
|
|
1880
1921
|
@jsii.member(jsii_name="VER_1_22_1")
|
|
1881
1922
|
def VER_1_22_1(cls) -> "AuroraEngineVersion":
|
|
1882
|
-
'''Version "5.6.mysql_aurora.1.22.1".
|
|
1923
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.22.1".
|
|
1924
|
+
|
|
1925
|
+
:stability: deprecated
|
|
1926
|
+
'''
|
|
1883
1927
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_22_1"))
|
|
1884
1928
|
|
|
1885
1929
|
@jsii.python.classproperty
|
|
1886
1930
|
@jsii.member(jsii_name="VER_1_22_1_3")
|
|
1887
1931
|
def VER_1_22_1_3(cls) -> "AuroraEngineVersion":
|
|
1888
|
-
'''Version "5.6.mysql_aurora.1.22.1.3".
|
|
1932
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.22.1.3".
|
|
1933
|
+
|
|
1934
|
+
:stability: deprecated
|
|
1935
|
+
'''
|
|
1889
1936
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_22_1_3"))
|
|
1890
1937
|
|
|
1891
1938
|
@jsii.python.classproperty
|
|
1892
1939
|
@jsii.member(jsii_name="VER_1_22_2")
|
|
1893
1940
|
def VER_1_22_2(cls) -> "AuroraEngineVersion":
|
|
1894
|
-
'''Version "5.6.mysql_aurora.1.22.2".
|
|
1941
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.22.2".
|
|
1942
|
+
|
|
1943
|
+
:stability: deprecated
|
|
1944
|
+
'''
|
|
1895
1945
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_22_2"))
|
|
1896
1946
|
|
|
1897
1947
|
@jsii.python.classproperty
|
|
1898
1948
|
@jsii.member(jsii_name="VER_1_22_3")
|
|
1899
1949
|
def VER_1_22_3(cls) -> "AuroraEngineVersion":
|
|
1900
|
-
'''Version "5.6.mysql_aurora.1.22.3".
|
|
1950
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.22.3".
|
|
1951
|
+
|
|
1952
|
+
:stability: deprecated
|
|
1953
|
+
'''
|
|
1901
1954
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_22_3"))
|
|
1902
1955
|
|
|
1903
1956
|
@jsii.python.classproperty
|
|
1904
1957
|
@jsii.member(jsii_name="VER_1_22_4")
|
|
1905
1958
|
def VER_1_22_4(cls) -> "AuroraEngineVersion":
|
|
1906
|
-
'''Version "5.6.mysql_aurora.1.22.4".
|
|
1959
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.22.4".
|
|
1960
|
+
|
|
1961
|
+
:stability: deprecated
|
|
1962
|
+
'''
|
|
1907
1963
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_22_4"))
|
|
1908
1964
|
|
|
1909
1965
|
@jsii.python.classproperty
|
|
1910
1966
|
@jsii.member(jsii_name="VER_1_22_5")
|
|
1911
1967
|
def VER_1_22_5(cls) -> "AuroraEngineVersion":
|
|
1912
|
-
'''Version "5.6.mysql_aurora.1.22.5".
|
|
1968
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.22.5".
|
|
1969
|
+
|
|
1970
|
+
:stability: deprecated
|
|
1971
|
+
'''
|
|
1913
1972
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_22_5"))
|
|
1914
1973
|
|
|
1915
1974
|
@jsii.python.classproperty
|
|
1916
1975
|
@jsii.member(jsii_name="VER_1_23_0")
|
|
1917
1976
|
def VER_1_23_0(cls) -> "AuroraEngineVersion":
|
|
1918
|
-
'''Version "5.6.mysql_aurora.1.23.0".
|
|
1977
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.23.0".
|
|
1978
|
+
|
|
1979
|
+
:stability: deprecated
|
|
1980
|
+
'''
|
|
1919
1981
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_23_0"))
|
|
1920
1982
|
|
|
1921
1983
|
@jsii.python.classproperty
|
|
1922
1984
|
@jsii.member(jsii_name="VER_1_23_1")
|
|
1923
1985
|
def VER_1_23_1(cls) -> "AuroraEngineVersion":
|
|
1924
|
-
'''Version "5.6.mysql_aurora.1.23.1".
|
|
1986
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.23.1".
|
|
1987
|
+
|
|
1988
|
+
:stability: deprecated
|
|
1989
|
+
'''
|
|
1925
1990
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_23_1"))
|
|
1926
1991
|
|
|
1927
1992
|
@jsii.python.classproperty
|
|
1928
1993
|
@jsii.member(jsii_name="VER_1_23_2")
|
|
1929
1994
|
def VER_1_23_2(cls) -> "AuroraEngineVersion":
|
|
1930
|
-
'''Version "5.6.mysql_aurora.1.23.2".
|
|
1995
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.23.2".
|
|
1996
|
+
|
|
1997
|
+
:stability: deprecated
|
|
1998
|
+
'''
|
|
1931
1999
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_23_2"))
|
|
1932
2000
|
|
|
1933
2001
|
@jsii.python.classproperty
|
|
1934
2002
|
@jsii.member(jsii_name="VER_1_23_3")
|
|
1935
2003
|
def VER_1_23_3(cls) -> "AuroraEngineVersion":
|
|
1936
|
-
'''Version "5.6.mysql_aurora.1.23.3".
|
|
2004
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.23.3".
|
|
2005
|
+
|
|
2006
|
+
:stability: deprecated
|
|
2007
|
+
'''
|
|
1937
2008
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_23_3"))
|
|
1938
2009
|
|
|
1939
2010
|
@jsii.python.classproperty
|
|
1940
2011
|
@jsii.member(jsii_name="VER_1_23_4")
|
|
1941
2012
|
def VER_1_23_4(cls) -> "AuroraEngineVersion":
|
|
1942
|
-
'''Version "5.6.mysql_aurora.1.23.4".
|
|
2013
|
+
'''(deprecated) Version "5.6.mysql_aurora.1.23.4".
|
|
2014
|
+
|
|
2015
|
+
:stability: deprecated
|
|
2016
|
+
'''
|
|
1943
2017
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_1_23_4"))
|
|
1944
2018
|
|
|
1945
2019
|
@jsii.python.classproperty
|
|
1946
2020
|
@jsii.member(jsii_name="VER_10A")
|
|
1947
2021
|
def VER_10_A(cls) -> "AuroraEngineVersion":
|
|
1948
|
-
'''Version "5.6.10a".
|
|
2022
|
+
'''(deprecated) Version "5.6.10a".
|
|
2023
|
+
|
|
2024
|
+
:stability: deprecated
|
|
2025
|
+
'''
|
|
1949
2026
|
return typing.cast("AuroraEngineVersion", jsii.sget(cls, "VER_10A"))
|
|
1950
2027
|
|
|
1951
2028
|
@builtins.property
|
|
1952
2029
|
@jsii.member(jsii_name="auroraFullVersion")
|
|
1953
2030
|
def aurora_full_version(self) -> builtins.str:
|
|
1954
|
-
'''The full version string, for example, "5.6.mysql_aurora.1.78.3.6".
|
|
2031
|
+
'''(deprecated) The full version string, for example, "5.6.mysql_aurora.1.78.3.6".
|
|
2032
|
+
|
|
2033
|
+
:stability: deprecated
|
|
2034
|
+
'''
|
|
1955
2035
|
return typing.cast(builtins.str, jsii.get(self, "auroraFullVersion"))
|
|
1956
2036
|
|
|
1957
2037
|
@builtins.property
|
|
1958
2038
|
@jsii.member(jsii_name="auroraMajorVersion")
|
|
1959
2039
|
def aurora_major_version(self) -> builtins.str:
|
|
1960
|
-
'''The major version of the engine.
|
|
2040
|
+
'''(deprecated) The major version of the engine.
|
|
1961
2041
|
|
|
1962
2042
|
Currently, it's always "5.6".
|
|
2043
|
+
|
|
2044
|
+
:stability: deprecated
|
|
1963
2045
|
'''
|
|
1964
2046
|
return typing.cast(builtins.str, jsii.get(self, "auroraMajorVersion"))
|
|
1965
2047
|
|
|
@@ -19806,9 +19888,13 @@ class DatabaseClusterEngine(
|
|
|
19806
19888
|
@jsii.member(jsii_name="aurora")
|
|
19807
19889
|
@builtins.classmethod
|
|
19808
19890
|
def aurora(cls, *, version: AuroraEngineVersion) -> "IClusterEngine":
|
|
19809
|
-
'''Creates a new plain Aurora database cluster engine.
|
|
19891
|
+
'''(deprecated) Creates a new plain Aurora database cluster engine.
|
|
19892
|
+
|
|
19893
|
+
:param version: (deprecated) The version of the Aurora cluster engine.
|
|
19810
19894
|
|
|
19811
|
-
:
|
|
19895
|
+
:deprecated: use ``auroraMysql()`` instead
|
|
19896
|
+
|
|
19897
|
+
:stability: deprecated
|
|
19812
19898
|
'''
|
|
19813
19899
|
props = AuroraClusterEngineProps(version=version)
|
|
19814
19900
|
|
|
@@ -19843,11 +19929,15 @@ class DatabaseClusterEngine(
|
|
|
19843
19929
|
@jsii.python.classproperty
|
|
19844
19930
|
@jsii.member(jsii_name="AURORA")
|
|
19845
19931
|
def AURORA(cls) -> "IClusterEngine":
|
|
19846
|
-
'''The unversioned 'aurora' cluster engine.
|
|
19932
|
+
'''(deprecated) The unversioned 'aurora' cluster engine.
|
|
19847
19933
|
|
|
19848
19934
|
**Note**: we do not recommend using unversioned engines for non-serverless Clusters,
|
|
19849
19935
|
as that can pose an availability risk.
|
|
19850
19936
|
We recommend using versioned engines created using the ``aurora()`` method
|
|
19937
|
+
|
|
19938
|
+
:deprecated: use ``AURORA_MYSQL`` instead
|
|
19939
|
+
|
|
19940
|
+
:stability: deprecated
|
|
19851
19941
|
'''
|
|
19852
19942
|
return typing.cast("IClusterEngine", jsii.sget(cls, "AURORA"))
|
|
19853
19943
|
|
aws_cdk/aws_redshift/__init__.py
CHANGED
|
@@ -5118,7 +5118,7 @@ class CfnIntegration(
|
|
|
5118
5118
|
metaclass=jsii.JSIIMeta,
|
|
5119
5119
|
jsii_type="aws-cdk-lib.aws_redshift.CfnIntegration",
|
|
5120
5120
|
):
|
|
5121
|
-
'''
|
|
5121
|
+
'''Describes a zero-ETL integration.
|
|
5122
5122
|
|
|
5123
5123
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html
|
|
5124
5124
|
:cloudformationResource: AWS::Redshift::Integration
|
|
@@ -5162,12 +5162,12 @@ class CfnIntegration(
|
|
|
5162
5162
|
'''
|
|
5163
5163
|
:param scope: Scope in which this resource is defined.
|
|
5164
5164
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5165
|
-
:param source_arn: The Amazon Resource Name (ARN) of the database
|
|
5166
|
-
:param target_arn: The Amazon Resource Name (ARN) of the Redshift data warehouse to use as the target for replication
|
|
5167
|
-
:param additional_encryption_context:
|
|
5165
|
+
:param source_arn: The Amazon Resource Name (ARN) of the database used as the source for replication.
|
|
5166
|
+
:param target_arn: The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.
|
|
5167
|
+
:param additional_encryption_context: The encryption context for the integration. For more information, see `Encryption context <https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context>`_ in the *AWS Key Management Service Developer Guide* .
|
|
5168
5168
|
:param integration_name: The name of the integration.
|
|
5169
|
-
:param kms_key_id:
|
|
5170
|
-
:param tags:
|
|
5169
|
+
:param kms_key_id: The AWS Key Management Service ( AWS KMS ) key identifier for the key used to encrypt the integration.
|
|
5170
|
+
:param tags: The list of tags associated with the integration.
|
|
5171
5171
|
'''
|
|
5172
5172
|
if __debug__:
|
|
5173
5173
|
type_hints = typing.get_type_hints(_typecheckingstub__195f43b15319a462222fa2f5a73df1bdd50a48d85ec97165e527a5a9511ec709)
|
|
@@ -5246,7 +5246,7 @@ class CfnIntegration(
|
|
|
5246
5246
|
@builtins.property
|
|
5247
5247
|
@jsii.member(jsii_name="sourceArn")
|
|
5248
5248
|
def source_arn(self) -> builtins.str:
|
|
5249
|
-
'''The Amazon Resource Name (ARN) of the database
|
|
5249
|
+
'''The Amazon Resource Name (ARN) of the database used as the source for replication.'''
|
|
5250
5250
|
return typing.cast(builtins.str, jsii.get(self, "sourceArn"))
|
|
5251
5251
|
|
|
5252
5252
|
@source_arn.setter
|
|
@@ -5259,7 +5259,7 @@ class CfnIntegration(
|
|
|
5259
5259
|
@builtins.property
|
|
5260
5260
|
@jsii.member(jsii_name="targetArn")
|
|
5261
5261
|
def target_arn(self) -> builtins.str:
|
|
5262
|
-
'''The Amazon Resource Name (ARN) of the Redshift data warehouse to use as the target for replication
|
|
5262
|
+
'''The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.'''
|
|
5263
5263
|
return typing.cast(builtins.str, jsii.get(self, "targetArn"))
|
|
5264
5264
|
|
|
5265
5265
|
@target_arn.setter
|
|
@@ -5274,7 +5274,7 @@ class CfnIntegration(
|
|
|
5274
5274
|
def additional_encryption_context(
|
|
5275
5275
|
self,
|
|
5276
5276
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
|
|
5277
|
-
'''
|
|
5277
|
+
'''The encryption context for the integration.'''
|
|
5278
5278
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]], jsii.get(self, "additionalEncryptionContext"))
|
|
5279
5279
|
|
|
5280
5280
|
@additional_encryption_context.setter
|
|
@@ -5303,7 +5303,7 @@ class CfnIntegration(
|
|
|
5303
5303
|
@builtins.property
|
|
5304
5304
|
@jsii.member(jsii_name="kmsKeyId")
|
|
5305
5305
|
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
5306
|
-
'''
|
|
5306
|
+
'''The AWS Key Management Service ( AWS KMS ) key identifier for the key used to encrypt the integration.'''
|
|
5307
5307
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyId"))
|
|
5308
5308
|
|
|
5309
5309
|
@kms_key_id.setter
|
|
@@ -5316,7 +5316,7 @@ class CfnIntegration(
|
|
|
5316
5316
|
@builtins.property
|
|
5317
5317
|
@jsii.member(jsii_name="tags")
|
|
5318
5318
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
5319
|
-
'''
|
|
5319
|
+
'''The list of tags associated with the integration.'''
|
|
5320
5320
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
5321
5321
|
|
|
5322
5322
|
@tags.setter
|
|
@@ -5352,12 +5352,12 @@ class CfnIntegrationProps:
|
|
|
5352
5352
|
) -> None:
|
|
5353
5353
|
'''Properties for defining a ``CfnIntegration``.
|
|
5354
5354
|
|
|
5355
|
-
:param source_arn: The Amazon Resource Name (ARN) of the database
|
|
5356
|
-
:param target_arn: The Amazon Resource Name (ARN) of the Redshift data warehouse to use as the target for replication
|
|
5357
|
-
:param additional_encryption_context:
|
|
5355
|
+
:param source_arn: The Amazon Resource Name (ARN) of the database used as the source for replication.
|
|
5356
|
+
:param target_arn: The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.
|
|
5357
|
+
:param additional_encryption_context: The encryption context for the integration. For more information, see `Encryption context <https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context>`_ in the *AWS Key Management Service Developer Guide* .
|
|
5358
5358
|
:param integration_name: The name of the integration.
|
|
5359
|
-
:param kms_key_id:
|
|
5360
|
-
:param tags:
|
|
5359
|
+
:param kms_key_id: The AWS Key Management Service ( AWS KMS ) key identifier for the key used to encrypt the integration.
|
|
5360
|
+
:param tags: The list of tags associated with the integration.
|
|
5361
5361
|
|
|
5362
5362
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html
|
|
5363
5363
|
:exampleMetadata: fixture=_generated
|
|
@@ -5407,7 +5407,7 @@ class CfnIntegrationProps:
|
|
|
5407
5407
|
|
|
5408
5408
|
@builtins.property
|
|
5409
5409
|
def source_arn(self) -> builtins.str:
|
|
5410
|
-
'''The Amazon Resource Name (ARN) of the database
|
|
5410
|
+
'''The Amazon Resource Name (ARN) of the database used as the source for replication.
|
|
5411
5411
|
|
|
5412
5412
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-sourcearn
|
|
5413
5413
|
'''
|
|
@@ -5417,7 +5417,7 @@ class CfnIntegrationProps:
|
|
|
5417
5417
|
|
|
5418
5418
|
@builtins.property
|
|
5419
5419
|
def target_arn(self) -> builtins.str:
|
|
5420
|
-
'''The Amazon Resource Name (ARN) of the Redshift data warehouse to use as the target for replication
|
|
5420
|
+
'''The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.
|
|
5421
5421
|
|
|
5422
5422
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-targetarn
|
|
5423
5423
|
'''
|
|
@@ -5429,7 +5429,9 @@ class CfnIntegrationProps:
|
|
|
5429
5429
|
def additional_encryption_context(
|
|
5430
5430
|
self,
|
|
5431
5431
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
|
|
5432
|
-
'''
|
|
5432
|
+
'''The encryption context for the integration.
|
|
5433
|
+
|
|
5434
|
+
For more information, see `Encryption context <https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context>`_ in the *AWS Key Management Service Developer Guide* .
|
|
5433
5435
|
|
|
5434
5436
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-additionalencryptioncontext
|
|
5435
5437
|
'''
|
|
@@ -5447,9 +5449,7 @@ class CfnIntegrationProps:
|
|
|
5447
5449
|
|
|
5448
5450
|
@builtins.property
|
|
5449
5451
|
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
5450
|
-
'''
|
|
5451
|
-
|
|
5452
|
-
If you don't specify an encryption key, the default AWS owned KMS key is used.
|
|
5452
|
+
'''The AWS Key Management Service ( AWS KMS ) key identifier for the key used to encrypt the integration.
|
|
5453
5453
|
|
|
5454
5454
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-kmskeyid
|
|
5455
5455
|
'''
|
|
@@ -5458,7 +5458,7 @@ class CfnIntegrationProps:
|
|
|
5458
5458
|
|
|
5459
5459
|
@builtins.property
|
|
5460
5460
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
5461
|
-
'''
|
|
5461
|
+
'''The list of tags associated with the integration.
|
|
5462
5462
|
|
|
5463
5463
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-tags
|
|
5464
5464
|
'''
|