aws-cdk-lib 2.167.1__py3-none-any.whl → 2.168.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.

Files changed (45) hide show
  1. aws_cdk/__init__.py +2081 -0
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.167.1.jsii.tgz → aws-cdk-lib@2.168.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_applicationautoscaling/__init__.py +1691 -95
  5. aws_cdk/aws_applicationinsights/__init__.py +41 -0
  6. aws_cdk/aws_applicationsignals/__init__.py +117 -0
  7. aws_cdk/aws_autoscaling/__init__.py +441 -6
  8. aws_cdk/aws_batch/__init__.py +202 -5
  9. aws_cdk/aws_bedrock/__init__.py +12 -12
  10. aws_cdk/aws_cleanrooms/__init__.py +17 -8
  11. aws_cdk/aws_cloudformation/__init__.py +2571 -492
  12. aws_cdk/aws_cloudfront/__init__.py +231 -0
  13. aws_cdk/aws_cloudfront/experimental/__init__.py +5 -0
  14. aws_cdk/aws_cloudfront_origins/__init__.py +714 -132
  15. aws_cdk/aws_cloudtrail/__init__.py +52 -14
  16. aws_cdk/aws_codebuild/__init__.py +668 -2
  17. aws_cdk/aws_connectcampaignsv2/__init__.py +3376 -0
  18. aws_cdk/aws_dynamodb/__init__.py +332 -11
  19. aws_cdk/aws_ec2/__init__.py +13 -4
  20. aws_cdk/aws_ecs/__init__.py +213 -0
  21. aws_cdk/aws_elasticloadbalancingv2/__init__.py +160 -11
  22. aws_cdk/aws_fis/__init__.py +495 -0
  23. aws_cdk/aws_gamelift/__init__.py +3101 -1135
  24. aws_cdk/aws_kinesisfirehose/__init__.py +696 -5
  25. aws_cdk/aws_lambda/__init__.py +634 -259
  26. aws_cdk/aws_lambda_destinations/__init__.py +73 -0
  27. aws_cdk/aws_lambda_event_sources/__init__.py +102 -2
  28. aws_cdk/aws_location/__init__.py +18 -18
  29. aws_cdk/aws_mediastore/__init__.py +22 -10
  30. aws_cdk/aws_opensearchservice/__init__.py +6 -0
  31. aws_cdk/aws_quicksight/__init__.py +35 -19
  32. aws_cdk/aws_rds/__init__.py +51 -3
  33. aws_cdk/aws_securityhub/__init__.py +11 -14
  34. aws_cdk/aws_ses/__init__.py +58 -5
  35. aws_cdk/aws_stepfunctions_tasks/__init__.py +1601 -8
  36. aws_cdk/aws_transfer/__init__.py +0 -8
  37. aws_cdk/aws_vpclattice/__init__.py +39 -0
  38. aws_cdk/aws_wisdom/__init__.py +134 -85
  39. aws_cdk/cx_api/__init__.py +6 -6
  40. {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/METADATA +1 -1
  41. {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/RECORD +45 -44
  42. {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/LICENSE +0 -0
  43. {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/NOTICE +0 -0
  44. {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/WHEEL +0 -0
  45. {aws_cdk_lib-2.167.1.dist-info → aws_cdk_lib-2.168.0.dist-info}/top_level.txt +0 -0
@@ -118,6 +118,7 @@ class CfnDeliveryStream(
118
118
  *,
119
119
  amazon_open_search_serverless_destination_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeliveryStream.AmazonOpenSearchServerlessDestinationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
120
120
  amazonopensearchservice_destination_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeliveryStream.AmazonopensearchserviceDestinationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
121
+ database_source_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeliveryStream.DatabaseSourceConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
121
122
  delivery_stream_encryption_configuration_input: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
122
123
  delivery_stream_name: typing.Optional[builtins.str] = None,
123
124
  delivery_stream_type: typing.Optional[builtins.str] = None,
@@ -138,6 +139,7 @@ class CfnDeliveryStream(
138
139
  :param id: Construct identifier for this resource (unique in its scope).
139
140
  :param amazon_open_search_serverless_destination_configuration: Describes the configuration of a destination in the Serverless offering for Amazon OpenSearch Service.
140
141
  :param amazonopensearchservice_destination_configuration: The destination in Amazon OpenSearch Service. You can specify only one destination.
142
+ :param database_source_configuration:
141
143
  :param delivery_stream_encryption_configuration_input: Specifies the type and Amazon Resource Name (ARN) of the CMK to use for Server-Side Encryption (SSE).
142
144
  :param delivery_stream_name: The name of the Firehose stream.
143
145
  :param delivery_stream_type: The Firehose stream type. This can be one of the following values:. - ``DirectPut`` : Provider applications access the Firehose stream directly. - ``KinesisStreamAsSource`` : The Firehose stream uses a Kinesis data stream as a source.
@@ -160,6 +162,7 @@ class CfnDeliveryStream(
160
162
  props = CfnDeliveryStreamProps(
161
163
  amazon_open_search_serverless_destination_configuration=amazon_open_search_serverless_destination_configuration,
162
164
  amazonopensearchservice_destination_configuration=amazonopensearchservice_destination_configuration,
165
+ database_source_configuration=database_source_configuration,
163
166
  delivery_stream_encryption_configuration_input=delivery_stream_encryption_configuration_input,
164
167
  delivery_stream_name=delivery_stream_name,
165
168
  delivery_stream_type=delivery_stream_type,
@@ -264,6 +267,23 @@ class CfnDeliveryStream(
264
267
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
265
268
  jsii.set(self, "amazonopensearchserviceDestinationConfiguration", value) # pyright: ignore[reportArgumentType]
266
269
 
270
+ @builtins.property
271
+ @jsii.member(jsii_name="databaseSourceConfiguration")
272
+ def database_source_configuration(
273
+ self,
274
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseSourceConfigurationProperty"]]:
275
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseSourceConfigurationProperty"]], jsii.get(self, "databaseSourceConfiguration"))
276
+
277
+ @database_source_configuration.setter
278
+ def database_source_configuration(
279
+ self,
280
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseSourceConfigurationProperty"]],
281
+ ) -> None:
282
+ if __debug__:
283
+ type_hints = typing.get_type_hints(_typecheckingstub__671f3a3eb25ab7249d3b64fb9d1c6865a8a68b8a7b92841ab6890851853da1f5)
284
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
285
+ jsii.set(self, "databaseSourceConfiguration", value) # pyright: ignore[reportArgumentType]
286
+
267
287
  @builtins.property
268
288
  @jsii.member(jsii_name="deliveryStreamEncryptionConfigurationInput")
269
289
  def delivery_stream_encryption_configuration_input(
@@ -1944,6 +1964,586 @@ class CfnDeliveryStream(
1944
1964
  k + "=" + repr(v) for k, v in self._values.items()
1945
1965
  )
1946
1966
 
1967
+ @jsii.data_type(
1968
+ jsii_type="aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.DatabaseColumnsProperty",
1969
+ jsii_struct_bases=[],
1970
+ name_mapping={"exclude": "exclude", "include": "include"},
1971
+ )
1972
+ class DatabaseColumnsProperty:
1973
+ def __init__(
1974
+ self,
1975
+ *,
1976
+ exclude: typing.Optional[typing.Sequence[builtins.str]] = None,
1977
+ include: typing.Optional[typing.Sequence[builtins.str]] = None,
1978
+ ) -> None:
1979
+ '''
1980
+ :param exclude:
1981
+ :param include:
1982
+
1983
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasecolumns.html
1984
+ :exampleMetadata: fixture=_generated
1985
+
1986
+ Example::
1987
+
1988
+ # The code below shows an example of how to instantiate this type.
1989
+ # The values are placeholders you should change.
1990
+ from aws_cdk import aws_kinesisfirehose as kinesisfirehose
1991
+
1992
+ database_columns_property = kinesisfirehose.CfnDeliveryStream.DatabaseColumnsProperty(
1993
+ exclude=["exclude"],
1994
+ include=["include"]
1995
+ )
1996
+ '''
1997
+ if __debug__:
1998
+ type_hints = typing.get_type_hints(_typecheckingstub__111648b092f5dd75408d33db5fb1adea30dc7a8b58549cef95459f9224ccb26a)
1999
+ check_type(argname="argument exclude", value=exclude, expected_type=type_hints["exclude"])
2000
+ check_type(argname="argument include", value=include, expected_type=type_hints["include"])
2001
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
2002
+ if exclude is not None:
2003
+ self._values["exclude"] = exclude
2004
+ if include is not None:
2005
+ self._values["include"] = include
2006
+
2007
+ @builtins.property
2008
+ def exclude(self) -> typing.Optional[typing.List[builtins.str]]:
2009
+ '''
2010
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasecolumns.html#cfn-kinesisfirehose-deliverystream-databasecolumns-exclude
2011
+ '''
2012
+ result = self._values.get("exclude")
2013
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
2014
+
2015
+ @builtins.property
2016
+ def include(self) -> typing.Optional[typing.List[builtins.str]]:
2017
+ '''
2018
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasecolumns.html#cfn-kinesisfirehose-deliverystream-databasecolumns-include
2019
+ '''
2020
+ result = self._values.get("include")
2021
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
2022
+
2023
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2024
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2025
+
2026
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2027
+ return not (rhs == self)
2028
+
2029
+ def __repr__(self) -> str:
2030
+ return "DatabaseColumnsProperty(%s)" % ", ".join(
2031
+ k + "=" + repr(v) for k, v in self._values.items()
2032
+ )
2033
+
2034
+ @jsii.data_type(
2035
+ jsii_type="aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.DatabaseSourceAuthenticationConfigurationProperty",
2036
+ jsii_struct_bases=[],
2037
+ name_mapping={"secrets_manager_configuration": "secretsManagerConfiguration"},
2038
+ )
2039
+ class DatabaseSourceAuthenticationConfigurationProperty:
2040
+ def __init__(
2041
+ self,
2042
+ *,
2043
+ secrets_manager_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeliveryStream.SecretsManagerConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
2044
+ ) -> None:
2045
+ '''
2046
+ :param secrets_manager_configuration:
2047
+
2048
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceauthenticationconfiguration.html
2049
+ :exampleMetadata: fixture=_generated
2050
+
2051
+ Example::
2052
+
2053
+ # The code below shows an example of how to instantiate this type.
2054
+ # The values are placeholders you should change.
2055
+ from aws_cdk import aws_kinesisfirehose as kinesisfirehose
2056
+
2057
+ database_source_authentication_configuration_property = kinesisfirehose.CfnDeliveryStream.DatabaseSourceAuthenticationConfigurationProperty(
2058
+ secrets_manager_configuration=kinesisfirehose.CfnDeliveryStream.SecretsManagerConfigurationProperty(
2059
+ enabled=False,
2060
+
2061
+ # the properties below are optional
2062
+ role_arn="roleArn",
2063
+ secret_arn="secretArn"
2064
+ )
2065
+ )
2066
+ '''
2067
+ if __debug__:
2068
+ type_hints = typing.get_type_hints(_typecheckingstub__cecf7807b45586be03c0bc76f8fcdf6ad93c6bd34a795d26aeaf365dd3d297c4)
2069
+ check_type(argname="argument secrets_manager_configuration", value=secrets_manager_configuration, expected_type=type_hints["secrets_manager_configuration"])
2070
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2071
+ "secrets_manager_configuration": secrets_manager_configuration,
2072
+ }
2073
+
2074
+ @builtins.property
2075
+ def secrets_manager_configuration(
2076
+ self,
2077
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.SecretsManagerConfigurationProperty"]:
2078
+ '''
2079
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceauthenticationconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceauthenticationconfiguration-secretsmanagerconfiguration
2080
+ '''
2081
+ result = self._values.get("secrets_manager_configuration")
2082
+ assert result is not None, "Required property 'secrets_manager_configuration' is missing"
2083
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.SecretsManagerConfigurationProperty"], result)
2084
+
2085
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2086
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2087
+
2088
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2089
+ return not (rhs == self)
2090
+
2091
+ def __repr__(self) -> str:
2092
+ return "DatabaseSourceAuthenticationConfigurationProperty(%s)" % ", ".join(
2093
+ k + "=" + repr(v) for k, v in self._values.items()
2094
+ )
2095
+
2096
+ @jsii.data_type(
2097
+ jsii_type="aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.DatabaseSourceConfigurationProperty",
2098
+ jsii_struct_bases=[],
2099
+ name_mapping={
2100
+ "databases": "databases",
2101
+ "database_source_authentication_configuration": "databaseSourceAuthenticationConfiguration",
2102
+ "database_source_vpc_configuration": "databaseSourceVpcConfiguration",
2103
+ "endpoint": "endpoint",
2104
+ "port": "port",
2105
+ "snapshot_watermark_table": "snapshotWatermarkTable",
2106
+ "tables": "tables",
2107
+ "type": "type",
2108
+ "columns": "columns",
2109
+ "digest": "digest",
2110
+ "public_certificate": "publicCertificate",
2111
+ "ssl_mode": "sslMode",
2112
+ "surrogate_keys": "surrogateKeys",
2113
+ },
2114
+ )
2115
+ class DatabaseSourceConfigurationProperty:
2116
+ def __init__(
2117
+ self,
2118
+ *,
2119
+ databases: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeliveryStream.DatabasesProperty", typing.Dict[builtins.str, typing.Any]]],
2120
+ database_source_authentication_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeliveryStream.DatabaseSourceAuthenticationConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
2121
+ database_source_vpc_configuration: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
2122
+ endpoint: builtins.str,
2123
+ port: jsii.Number,
2124
+ snapshot_watermark_table: builtins.str,
2125
+ tables: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeliveryStream.DatabaseTablesProperty", typing.Dict[builtins.str, typing.Any]]],
2126
+ type: builtins.str,
2127
+ columns: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDeliveryStream.DatabaseColumnsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2128
+ digest: typing.Optional[builtins.str] = None,
2129
+ public_certificate: typing.Optional[builtins.str] = None,
2130
+ ssl_mode: typing.Optional[builtins.str] = None,
2131
+ surrogate_keys: typing.Optional[typing.Sequence[builtins.str]] = None,
2132
+ ) -> None:
2133
+ '''
2134
+ :param databases:
2135
+ :param database_source_authentication_configuration:
2136
+ :param database_source_vpc_configuration:
2137
+ :param endpoint:
2138
+ :param port:
2139
+ :param snapshot_watermark_table:
2140
+ :param tables:
2141
+ :param type:
2142
+ :param columns:
2143
+ :param digest:
2144
+ :param public_certificate:
2145
+ :param ssl_mode:
2146
+ :param surrogate_keys:
2147
+
2148
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html
2149
+ :exampleMetadata: fixture=_generated
2150
+
2151
+ Example::
2152
+
2153
+ # The code below shows an example of how to instantiate this type.
2154
+ # The values are placeholders you should change.
2155
+ from aws_cdk import aws_kinesisfirehose as kinesisfirehose
2156
+
2157
+ database_source_configuration_property = kinesisfirehose.CfnDeliveryStream.DatabaseSourceConfigurationProperty(
2158
+ databases=kinesisfirehose.CfnDeliveryStream.DatabasesProperty(
2159
+ exclude=["exclude"],
2160
+ include=["include"]
2161
+ ),
2162
+ database_source_authentication_configuration=kinesisfirehose.CfnDeliveryStream.DatabaseSourceAuthenticationConfigurationProperty(
2163
+ secrets_manager_configuration=kinesisfirehose.CfnDeliveryStream.SecretsManagerConfigurationProperty(
2164
+ enabled=False,
2165
+
2166
+ # the properties below are optional
2167
+ role_arn="roleArn",
2168
+ secret_arn="secretArn"
2169
+ )
2170
+ ),
2171
+ database_source_vpc_configuration=kinesisfirehose.CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty(
2172
+ vpc_endpoint_service_name="vpcEndpointServiceName"
2173
+ ),
2174
+ endpoint="endpoint",
2175
+ port=123,
2176
+ snapshot_watermark_table="snapshotWatermarkTable",
2177
+ tables=kinesisfirehose.CfnDeliveryStream.DatabaseTablesProperty(
2178
+ exclude=["exclude"],
2179
+ include=["include"]
2180
+ ),
2181
+ type="type",
2182
+
2183
+ # the properties below are optional
2184
+ columns=kinesisfirehose.CfnDeliveryStream.DatabaseColumnsProperty(
2185
+ exclude=["exclude"],
2186
+ include=["include"]
2187
+ ),
2188
+ digest="digest",
2189
+ public_certificate="publicCertificate",
2190
+ ssl_mode="sslMode",
2191
+ surrogate_keys=["surrogateKeys"]
2192
+ )
2193
+ '''
2194
+ if __debug__:
2195
+ type_hints = typing.get_type_hints(_typecheckingstub__dfa32769046e99e73e35a8b5e878b72f25abcaa661bf955ff25e794601e2126d)
2196
+ check_type(argname="argument databases", value=databases, expected_type=type_hints["databases"])
2197
+ check_type(argname="argument database_source_authentication_configuration", value=database_source_authentication_configuration, expected_type=type_hints["database_source_authentication_configuration"])
2198
+ check_type(argname="argument database_source_vpc_configuration", value=database_source_vpc_configuration, expected_type=type_hints["database_source_vpc_configuration"])
2199
+ check_type(argname="argument endpoint", value=endpoint, expected_type=type_hints["endpoint"])
2200
+ check_type(argname="argument port", value=port, expected_type=type_hints["port"])
2201
+ check_type(argname="argument snapshot_watermark_table", value=snapshot_watermark_table, expected_type=type_hints["snapshot_watermark_table"])
2202
+ check_type(argname="argument tables", value=tables, expected_type=type_hints["tables"])
2203
+ check_type(argname="argument type", value=type, expected_type=type_hints["type"])
2204
+ check_type(argname="argument columns", value=columns, expected_type=type_hints["columns"])
2205
+ check_type(argname="argument digest", value=digest, expected_type=type_hints["digest"])
2206
+ check_type(argname="argument public_certificate", value=public_certificate, expected_type=type_hints["public_certificate"])
2207
+ check_type(argname="argument ssl_mode", value=ssl_mode, expected_type=type_hints["ssl_mode"])
2208
+ check_type(argname="argument surrogate_keys", value=surrogate_keys, expected_type=type_hints["surrogate_keys"])
2209
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2210
+ "databases": databases,
2211
+ "database_source_authentication_configuration": database_source_authentication_configuration,
2212
+ "database_source_vpc_configuration": database_source_vpc_configuration,
2213
+ "endpoint": endpoint,
2214
+ "port": port,
2215
+ "snapshot_watermark_table": snapshot_watermark_table,
2216
+ "tables": tables,
2217
+ "type": type,
2218
+ }
2219
+ if columns is not None:
2220
+ self._values["columns"] = columns
2221
+ if digest is not None:
2222
+ self._values["digest"] = digest
2223
+ if public_certificate is not None:
2224
+ self._values["public_certificate"] = public_certificate
2225
+ if ssl_mode is not None:
2226
+ self._values["ssl_mode"] = ssl_mode
2227
+ if surrogate_keys is not None:
2228
+ self._values["surrogate_keys"] = surrogate_keys
2229
+
2230
+ @builtins.property
2231
+ def databases(
2232
+ self,
2233
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabasesProperty"]:
2234
+ '''
2235
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-databases
2236
+ '''
2237
+ result = self._values.get("databases")
2238
+ assert result is not None, "Required property 'databases' is missing"
2239
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabasesProperty"], result)
2240
+
2241
+ @builtins.property
2242
+ def database_source_authentication_configuration(
2243
+ self,
2244
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseSourceAuthenticationConfigurationProperty"]:
2245
+ '''
2246
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-databasesourceauthenticationconfiguration
2247
+ '''
2248
+ result = self._values.get("database_source_authentication_configuration")
2249
+ assert result is not None, "Required property 'database_source_authentication_configuration' is missing"
2250
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseSourceAuthenticationConfigurationProperty"], result)
2251
+
2252
+ @builtins.property
2253
+ def database_source_vpc_configuration(
2254
+ self,
2255
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty"]:
2256
+ '''
2257
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-databasesourcevpcconfiguration
2258
+ '''
2259
+ result = self._values.get("database_source_vpc_configuration")
2260
+ assert result is not None, "Required property 'database_source_vpc_configuration' is missing"
2261
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty"], result)
2262
+
2263
+ @builtins.property
2264
+ def endpoint(self) -> builtins.str:
2265
+ '''
2266
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-endpoint
2267
+ '''
2268
+ result = self._values.get("endpoint")
2269
+ assert result is not None, "Required property 'endpoint' is missing"
2270
+ return typing.cast(builtins.str, result)
2271
+
2272
+ @builtins.property
2273
+ def port(self) -> jsii.Number:
2274
+ '''
2275
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-port
2276
+ '''
2277
+ result = self._values.get("port")
2278
+ assert result is not None, "Required property 'port' is missing"
2279
+ return typing.cast(jsii.Number, result)
2280
+
2281
+ @builtins.property
2282
+ def snapshot_watermark_table(self) -> builtins.str:
2283
+ '''
2284
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-snapshotwatermarktable
2285
+ '''
2286
+ result = self._values.get("snapshot_watermark_table")
2287
+ assert result is not None, "Required property 'snapshot_watermark_table' is missing"
2288
+ return typing.cast(builtins.str, result)
2289
+
2290
+ @builtins.property
2291
+ def tables(
2292
+ self,
2293
+ ) -> typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseTablesProperty"]:
2294
+ '''
2295
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-tables
2296
+ '''
2297
+ result = self._values.get("tables")
2298
+ assert result is not None, "Required property 'tables' is missing"
2299
+ return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseTablesProperty"], result)
2300
+
2301
+ @builtins.property
2302
+ def type(self) -> builtins.str:
2303
+ '''
2304
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-type
2305
+ '''
2306
+ result = self._values.get("type")
2307
+ assert result is not None, "Required property 'type' is missing"
2308
+ return typing.cast(builtins.str, result)
2309
+
2310
+ @builtins.property
2311
+ def columns(
2312
+ self,
2313
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseColumnsProperty"]]:
2314
+ '''
2315
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-columns
2316
+ '''
2317
+ result = self._values.get("columns")
2318
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.DatabaseColumnsProperty"]], result)
2319
+
2320
+ @builtins.property
2321
+ def digest(self) -> typing.Optional[builtins.str]:
2322
+ '''
2323
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-digest
2324
+ '''
2325
+ result = self._values.get("digest")
2326
+ return typing.cast(typing.Optional[builtins.str], result)
2327
+
2328
+ @builtins.property
2329
+ def public_certificate(self) -> typing.Optional[builtins.str]:
2330
+ '''
2331
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-publiccertificate
2332
+ '''
2333
+ result = self._values.get("public_certificate")
2334
+ return typing.cast(typing.Optional[builtins.str], result)
2335
+
2336
+ @builtins.property
2337
+ def ssl_mode(self) -> typing.Optional[builtins.str]:
2338
+ '''
2339
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-sslmode
2340
+ '''
2341
+ result = self._values.get("ssl_mode")
2342
+ return typing.cast(typing.Optional[builtins.str], result)
2343
+
2344
+ @builtins.property
2345
+ def surrogate_keys(self) -> typing.Optional[typing.List[builtins.str]]:
2346
+ '''
2347
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration-surrogatekeys
2348
+ '''
2349
+ result = self._values.get("surrogate_keys")
2350
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
2351
+
2352
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2353
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2354
+
2355
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2356
+ return not (rhs == self)
2357
+
2358
+ def __repr__(self) -> str:
2359
+ return "DatabaseSourceConfigurationProperty(%s)" % ", ".join(
2360
+ k + "=" + repr(v) for k, v in self._values.items()
2361
+ )
2362
+
2363
+ @jsii.data_type(
2364
+ jsii_type="aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty",
2365
+ jsii_struct_bases=[],
2366
+ name_mapping={"vpc_endpoint_service_name": "vpcEndpointServiceName"},
2367
+ )
2368
+ class DatabaseSourceVPCConfigurationProperty:
2369
+ def __init__(self, *, vpc_endpoint_service_name: builtins.str) -> None:
2370
+ '''
2371
+ :param vpc_endpoint_service_name:
2372
+
2373
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourcevpcconfiguration.html
2374
+ :exampleMetadata: fixture=_generated
2375
+
2376
+ Example::
2377
+
2378
+ # The code below shows an example of how to instantiate this type.
2379
+ # The values are placeholders you should change.
2380
+ from aws_cdk import aws_kinesisfirehose as kinesisfirehose
2381
+
2382
+ database_source_vPCConfiguration_property = kinesisfirehose.CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty(
2383
+ vpc_endpoint_service_name="vpcEndpointServiceName"
2384
+ )
2385
+ '''
2386
+ if __debug__:
2387
+ type_hints = typing.get_type_hints(_typecheckingstub__4616b4a1f40a4e175751eda3777e82055e2397fd9dad0a6cd009c18c89e97cd3)
2388
+ check_type(argname="argument vpc_endpoint_service_name", value=vpc_endpoint_service_name, expected_type=type_hints["vpc_endpoint_service_name"])
2389
+ self._values: typing.Dict[builtins.str, typing.Any] = {
2390
+ "vpc_endpoint_service_name": vpc_endpoint_service_name,
2391
+ }
2392
+
2393
+ @builtins.property
2394
+ def vpc_endpoint_service_name(self) -> builtins.str:
2395
+ '''
2396
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourcevpcconfiguration.html#cfn-kinesisfirehose-deliverystream-databasesourcevpcconfiguration-vpcendpointservicename
2397
+ '''
2398
+ result = self._values.get("vpc_endpoint_service_name")
2399
+ assert result is not None, "Required property 'vpc_endpoint_service_name' is missing"
2400
+ return typing.cast(builtins.str, result)
2401
+
2402
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2403
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2404
+
2405
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2406
+ return not (rhs == self)
2407
+
2408
+ def __repr__(self) -> str:
2409
+ return "DatabaseSourceVPCConfigurationProperty(%s)" % ", ".join(
2410
+ k + "=" + repr(v) for k, v in self._values.items()
2411
+ )
2412
+
2413
+ @jsii.data_type(
2414
+ jsii_type="aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.DatabaseTablesProperty",
2415
+ jsii_struct_bases=[],
2416
+ name_mapping={"exclude": "exclude", "include": "include"},
2417
+ )
2418
+ class DatabaseTablesProperty:
2419
+ def __init__(
2420
+ self,
2421
+ *,
2422
+ exclude: typing.Optional[typing.Sequence[builtins.str]] = None,
2423
+ include: typing.Optional[typing.Sequence[builtins.str]] = None,
2424
+ ) -> None:
2425
+ '''
2426
+ :param exclude:
2427
+ :param include:
2428
+
2429
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasetables.html
2430
+ :exampleMetadata: fixture=_generated
2431
+
2432
+ Example::
2433
+
2434
+ # The code below shows an example of how to instantiate this type.
2435
+ # The values are placeholders you should change.
2436
+ from aws_cdk import aws_kinesisfirehose as kinesisfirehose
2437
+
2438
+ database_tables_property = kinesisfirehose.CfnDeliveryStream.DatabaseTablesProperty(
2439
+ exclude=["exclude"],
2440
+ include=["include"]
2441
+ )
2442
+ '''
2443
+ if __debug__:
2444
+ type_hints = typing.get_type_hints(_typecheckingstub__b669ca3e532e36dd3f6bf714eda78c90c8c90c4c1bc6dbebfab5c56e74950ddb)
2445
+ check_type(argname="argument exclude", value=exclude, expected_type=type_hints["exclude"])
2446
+ check_type(argname="argument include", value=include, expected_type=type_hints["include"])
2447
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
2448
+ if exclude is not None:
2449
+ self._values["exclude"] = exclude
2450
+ if include is not None:
2451
+ self._values["include"] = include
2452
+
2453
+ @builtins.property
2454
+ def exclude(self) -> typing.Optional[typing.List[builtins.str]]:
2455
+ '''
2456
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasetables.html#cfn-kinesisfirehose-deliverystream-databasetables-exclude
2457
+ '''
2458
+ result = self._values.get("exclude")
2459
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
2460
+
2461
+ @builtins.property
2462
+ def include(self) -> typing.Optional[typing.List[builtins.str]]:
2463
+ '''
2464
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasetables.html#cfn-kinesisfirehose-deliverystream-databasetables-include
2465
+ '''
2466
+ result = self._values.get("include")
2467
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
2468
+
2469
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2470
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2471
+
2472
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2473
+ return not (rhs == self)
2474
+
2475
+ def __repr__(self) -> str:
2476
+ return "DatabaseTablesProperty(%s)" % ", ".join(
2477
+ k + "=" + repr(v) for k, v in self._values.items()
2478
+ )
2479
+
2480
+ @jsii.data_type(
2481
+ jsii_type="aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.DatabasesProperty",
2482
+ jsii_struct_bases=[],
2483
+ name_mapping={"exclude": "exclude", "include": "include"},
2484
+ )
2485
+ class DatabasesProperty:
2486
+ def __init__(
2487
+ self,
2488
+ *,
2489
+ exclude: typing.Optional[typing.Sequence[builtins.str]] = None,
2490
+ include: typing.Optional[typing.Sequence[builtins.str]] = None,
2491
+ ) -> None:
2492
+ '''
2493
+ :param exclude:
2494
+ :param include:
2495
+
2496
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databases.html
2497
+ :exampleMetadata: fixture=_generated
2498
+
2499
+ Example::
2500
+
2501
+ # The code below shows an example of how to instantiate this type.
2502
+ # The values are placeholders you should change.
2503
+ from aws_cdk import aws_kinesisfirehose as kinesisfirehose
2504
+
2505
+ databases_property = kinesisfirehose.CfnDeliveryStream.DatabasesProperty(
2506
+ exclude=["exclude"],
2507
+ include=["include"]
2508
+ )
2509
+ '''
2510
+ if __debug__:
2511
+ type_hints = typing.get_type_hints(_typecheckingstub__b6aa9553c52b253113ab9a3fd740ae3235a38fc2d9a582fa85db01832e154931)
2512
+ check_type(argname="argument exclude", value=exclude, expected_type=type_hints["exclude"])
2513
+ check_type(argname="argument include", value=include, expected_type=type_hints["include"])
2514
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
2515
+ if exclude is not None:
2516
+ self._values["exclude"] = exclude
2517
+ if include is not None:
2518
+ self._values["include"] = include
2519
+
2520
+ @builtins.property
2521
+ def exclude(self) -> typing.Optional[typing.List[builtins.str]]:
2522
+ '''
2523
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databases.html#cfn-kinesisfirehose-deliverystream-databases-exclude
2524
+ '''
2525
+ result = self._values.get("exclude")
2526
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
2527
+
2528
+ @builtins.property
2529
+ def include(self) -> typing.Optional[typing.List[builtins.str]]:
2530
+ '''
2531
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databases.html#cfn-kinesisfirehose-deliverystream-databases-include
2532
+ '''
2533
+ result = self._values.get("include")
2534
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
2535
+
2536
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
2537
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
2538
+
2539
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
2540
+ return not (rhs == self)
2541
+
2542
+ def __repr__(self) -> str:
2543
+ return "DatabasesProperty(%s)" % ", ".join(
2544
+ k + "=" + repr(v) for k, v in self._values.items()
2545
+ )
2546
+
1947
2547
  @jsii.data_type(
1948
2548
  jsii_type="aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty",
1949
2549
  jsii_struct_bases=[],
@@ -6227,10 +6827,10 @@ class CfnDeliveryStream(
6227
6827
  ) -> None:
6228
6828
  '''The serializer that you want Firehose to use to convert data to the target format before writing it to Amazon S3.
6229
6829
 
6230
- Firehose supports two types of serializers: the `ORC SerDe <https://docs.aws.amazon.com/https://hive.apache.org/javadocs/r1.2.2/api/org/apache/hadoop/hive/ql/io/orc/OrcSerde.html>`_ and the `Parquet SerDe <https://docs.aws.amazon.com/https://hive.apache.org/javadocs/r1.2.2/api/org/apache/hadoop/hive/ql/io/parquet/serde/ParquetHiveSerDe.html>`_ .
6830
+ Firehose supports two types of serializers: the ORC SerDe and the Parquet SerDe.
6231
6831
 
6232
6832
  :param orc_ser_de: A serializer to use for converting data to the ORC format before storing it in Amazon S3. For more information, see `Apache ORC <https://docs.aws.amazon.com/https://orc.apache.org/docs/>`_ .
6233
- :param parquet_ser_de: A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see `Apache Parquet <https://docs.aws.amazon.com/https://parquet.apache.org/documentation/latest/>`_ .
6833
+ :param parquet_ser_de: A serializer to use for converting data to the Parquet format before storing it in Amazon S3. For more information, see `Apache Parquet <https://docs.aws.amazon.com/https://parquet.apache.org/docs/contribution-guidelines/>`_ .
6234
6834
 
6235
6835
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-serializer.html
6236
6836
  :exampleMetadata: fixture=_generated
@@ -6293,7 +6893,7 @@ class CfnDeliveryStream(
6293
6893
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDeliveryStream.ParquetSerDeProperty"]]:
6294
6894
  '''A serializer to use for converting data to the Parquet format before storing it in Amazon S3.
6295
6895
 
6296
- For more information, see `Apache Parquet <https://docs.aws.amazon.com/https://parquet.apache.org/documentation/latest/>`_ .
6896
+ For more information, see `Apache Parquet <https://docs.aws.amazon.com/https://parquet.apache.org/docs/contribution-guidelines/>`_ .
6297
6897
 
6298
6898
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-serializer.html#cfn-kinesisfirehose-deliverystream-serializer-parquetserde
6299
6899
  '''
@@ -6454,7 +7054,7 @@ class CfnDeliveryStream(
6454
7054
  :param content_column_name: The name of the record content column.
6455
7055
  :param data_loading_option: Choose to load JSON keys mapped to table column names or choose to split the JSON payload where content is mapped to a record content column and source metadata is mapped to a record metadata column.
6456
7056
  :param key_passphrase: Passphrase to decrypt the private key when the key is encrypted. For information, see `Using Key Pair Authentication & Key Rotation <https://docs.aws.amazon.com/https://docs.snowflake.com/en/user-guide/data-load-snowpipe-streaming-configuration#using-key-pair-authentication-key-rotation>`_ .
6457
- :param meta_data_column_name: The name of the record metadata column.
7057
+ :param meta_data_column_name: Specify a column name in the table, where the metadata information has to be loaded. When you enable this field, you will see the following column in the snowflake table, which differs based on the source type. For Direct PUT as source ``{ "firehoseDeliveryStreamName" : "streamname", "IngestionTime" : "timestamp" }`` For Kinesis Data Stream as source ``"kinesisStreamName" : "streamname", "kinesisShardId" : "Id", "kinesisPartitionKey" : "key", "kinesisSequenceNumber" : "1234", "subsequenceNumber" : "2334", "IngestionTime" : "timestamp" }``
6458
7058
  :param private_key: The private key used to encrypt your Snowflake client. For information, see `Using Key Pair Authentication & Key Rotation <https://docs.aws.amazon.com/https://docs.snowflake.com/en/user-guide/data-load-snowpipe-streaming-configuration#using-key-pair-authentication-key-rotation>`_ .
6459
7059
  :param processing_configuration: Specifies configuration for Snowflake.
6460
7060
  :param retry_options: The time period where Firehose will retry sending data to the chosen HTTP endpoint.
@@ -6728,7 +7328,17 @@ class CfnDeliveryStream(
6728
7328
 
6729
7329
  @builtins.property
6730
7330
  def meta_data_column_name(self) -> typing.Optional[builtins.str]:
6731
- '''The name of the record metadata column.
7331
+ '''Specify a column name in the table, where the metadata information has to be loaded.
7332
+
7333
+ When you enable this field, you will see the following column in the snowflake table, which differs based on the source type.
7334
+
7335
+ For Direct PUT as source
7336
+
7337
+ ``{ "firehoseDeliveryStreamName" : "streamname", "IngestionTime" : "timestamp" }``
7338
+
7339
+ For Kinesis Data Stream as source
7340
+
7341
+ ``"kinesisStreamName" : "streamname", "kinesisShardId" : "Id", "kinesisPartitionKey" : "key", "kinesisSequenceNumber" : "1234", "subsequenceNumber" : "2334", "IngestionTime" : "timestamp" }``
6732
7342
 
6733
7343
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-snowflakedestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-snowflakedestinationconfiguration-metadatacolumnname
6734
7344
  '''
@@ -7560,6 +8170,7 @@ class CfnDeliveryStream(
7560
8170
  name_mapping={
7561
8171
  "amazon_open_search_serverless_destination_configuration": "amazonOpenSearchServerlessDestinationConfiguration",
7562
8172
  "amazonopensearchservice_destination_configuration": "amazonopensearchserviceDestinationConfiguration",
8173
+ "database_source_configuration": "databaseSourceConfiguration",
7563
8174
  "delivery_stream_encryption_configuration_input": "deliveryStreamEncryptionConfigurationInput",
7564
8175
  "delivery_stream_name": "deliveryStreamName",
7565
8176
  "delivery_stream_type": "deliveryStreamType",
@@ -7582,6 +8193,7 @@ class CfnDeliveryStreamProps:
7582
8193
  *,
7583
8194
  amazon_open_search_serverless_destination_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.AmazonOpenSearchServerlessDestinationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7584
8195
  amazonopensearchservice_destination_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.AmazonopensearchserviceDestinationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8196
+ database_source_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DatabaseSourceConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7585
8197
  delivery_stream_encryption_configuration_input: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7586
8198
  delivery_stream_name: typing.Optional[builtins.str] = None,
7587
8199
  delivery_stream_type: typing.Optional[builtins.str] = None,
@@ -7601,6 +8213,7 @@ class CfnDeliveryStreamProps:
7601
8213
 
7602
8214
  :param amazon_open_search_serverless_destination_configuration: Describes the configuration of a destination in the Serverless offering for Amazon OpenSearch Service.
7603
8215
  :param amazonopensearchservice_destination_configuration: The destination in Amazon OpenSearch Service. You can specify only one destination.
8216
+ :param database_source_configuration:
7604
8217
  :param delivery_stream_encryption_configuration_input: Specifies the type and Amazon Resource Name (ARN) of the CMK to use for Server-Side Encryption (SSE).
7605
8218
  :param delivery_stream_name: The name of the Firehose stream.
7606
8219
  :param delivery_stream_type: The Firehose stream type. This can be one of the following values:. - ``DirectPut`` : Provider applications access the Firehose stream directly. - ``KinesisStreamAsSource`` : The Firehose stream uses a Kinesis data stream as a source.
@@ -7645,6 +8258,7 @@ class CfnDeliveryStreamProps:
7645
8258
  type_hints = typing.get_type_hints(_typecheckingstub__4f4e310bf0ff2c76f9c126ea4431fb25b9b53c8ba7e0c0eacc1c934debd05a95)
7646
8259
  check_type(argname="argument amazon_open_search_serverless_destination_configuration", value=amazon_open_search_serverless_destination_configuration, expected_type=type_hints["amazon_open_search_serverless_destination_configuration"])
7647
8260
  check_type(argname="argument amazonopensearchservice_destination_configuration", value=amazonopensearchservice_destination_configuration, expected_type=type_hints["amazonopensearchservice_destination_configuration"])
8261
+ check_type(argname="argument database_source_configuration", value=database_source_configuration, expected_type=type_hints["database_source_configuration"])
7648
8262
  check_type(argname="argument delivery_stream_encryption_configuration_input", value=delivery_stream_encryption_configuration_input, expected_type=type_hints["delivery_stream_encryption_configuration_input"])
7649
8263
  check_type(argname="argument delivery_stream_name", value=delivery_stream_name, expected_type=type_hints["delivery_stream_name"])
7650
8264
  check_type(argname="argument delivery_stream_type", value=delivery_stream_type, expected_type=type_hints["delivery_stream_type"])
@@ -7664,6 +8278,8 @@ class CfnDeliveryStreamProps:
7664
8278
  self._values["amazon_open_search_serverless_destination_configuration"] = amazon_open_search_serverless_destination_configuration
7665
8279
  if amazonopensearchservice_destination_configuration is not None:
7666
8280
  self._values["amazonopensearchservice_destination_configuration"] = amazonopensearchservice_destination_configuration
8281
+ if database_source_configuration is not None:
8282
+ self._values["database_source_configuration"] = database_source_configuration
7667
8283
  if delivery_stream_encryption_configuration_input is not None:
7668
8284
  self._values["delivery_stream_encryption_configuration_input"] = delivery_stream_encryption_configuration_input
7669
8285
  if delivery_stream_name is not None:
@@ -7717,6 +8333,16 @@ class CfnDeliveryStreamProps:
7717
8333
  result = self._values.get("amazonopensearchservice_destination_configuration")
7718
8334
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDeliveryStream.AmazonopensearchserviceDestinationConfigurationProperty]], result)
7719
8335
 
8336
+ @builtins.property
8337
+ def database_source_configuration(
8338
+ self,
8339
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDeliveryStream.DatabaseSourceConfigurationProperty]]:
8340
+ '''
8341
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-databasesourceconfiguration
8342
+ '''
8343
+ result = self._values.get("database_source_configuration")
8344
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDeliveryStream.DatabaseSourceConfigurationProperty]], result)
8345
+
7720
8346
  @builtins.property
7721
8347
  def delivery_stream_encryption_configuration_input(
7722
8348
  self,
@@ -7923,6 +8549,7 @@ def _typecheckingstub__b3cd824a2680c7d043cac684bd1be9ca77e94201f1ba00785d60a50ff
7923
8549
  *,
7924
8550
  amazon_open_search_serverless_destination_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.AmazonOpenSearchServerlessDestinationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7925
8551
  amazonopensearchservice_destination_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.AmazonopensearchserviceDestinationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8552
+ database_source_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DatabaseSourceConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7926
8553
  delivery_stream_encryption_configuration_input: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7927
8554
  delivery_stream_name: typing.Optional[builtins.str] = None,
7928
8555
  delivery_stream_type: typing.Optional[builtins.str] = None,
@@ -7965,6 +8592,12 @@ def _typecheckingstub__58964b8831d37cbba22a48328508a0d1fc866bb6da992a0c3f544fc66
7965
8592
  """Type checking stubs"""
7966
8593
  pass
7967
8594
 
8595
+ def _typecheckingstub__671f3a3eb25ab7249d3b64fb9d1c6865a8a68b8a7b92841ab6890851853da1f5(
8596
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDeliveryStream.DatabaseSourceConfigurationProperty]],
8597
+ ) -> None:
8598
+ """Type checking stubs"""
8599
+ pass
8600
+
7968
8601
  def _typecheckingstub__3b541613844a306d329ee6aaf12a513672a01cea651f015810fd2ab896394415(
7969
8602
  value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty]],
7970
8603
  ) -> None:
@@ -8166,6 +8799,63 @@ def _typecheckingstub__d2fd0a4fb437e036bd2436bcfd397fa35f08aba48c5a25c4aac36dedb
8166
8799
  """Type checking stubs"""
8167
8800
  pass
8168
8801
 
8802
+ def _typecheckingstub__111648b092f5dd75408d33db5fb1adea30dc7a8b58549cef95459f9224ccb26a(
8803
+ *,
8804
+ exclude: typing.Optional[typing.Sequence[builtins.str]] = None,
8805
+ include: typing.Optional[typing.Sequence[builtins.str]] = None,
8806
+ ) -> None:
8807
+ """Type checking stubs"""
8808
+ pass
8809
+
8810
+ def _typecheckingstub__cecf7807b45586be03c0bc76f8fcdf6ad93c6bd34a795d26aeaf365dd3d297c4(
8811
+ *,
8812
+ secrets_manager_configuration: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.SecretsManagerConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
8813
+ ) -> None:
8814
+ """Type checking stubs"""
8815
+ pass
8816
+
8817
+ def _typecheckingstub__dfa32769046e99e73e35a8b5e878b72f25abcaa661bf955ff25e794601e2126d(
8818
+ *,
8819
+ databases: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DatabasesProperty, typing.Dict[builtins.str, typing.Any]]],
8820
+ database_source_authentication_configuration: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DatabaseSourceAuthenticationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
8821
+ database_source_vpc_configuration: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DatabaseSourceVPCConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
8822
+ endpoint: builtins.str,
8823
+ port: jsii.Number,
8824
+ snapshot_watermark_table: builtins.str,
8825
+ tables: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DatabaseTablesProperty, typing.Dict[builtins.str, typing.Any]]],
8826
+ type: builtins.str,
8827
+ columns: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DatabaseColumnsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8828
+ digest: typing.Optional[builtins.str] = None,
8829
+ public_certificate: typing.Optional[builtins.str] = None,
8830
+ ssl_mode: typing.Optional[builtins.str] = None,
8831
+ surrogate_keys: typing.Optional[typing.Sequence[builtins.str]] = None,
8832
+ ) -> None:
8833
+ """Type checking stubs"""
8834
+ pass
8835
+
8836
+ def _typecheckingstub__4616b4a1f40a4e175751eda3777e82055e2397fd9dad0a6cd009c18c89e97cd3(
8837
+ *,
8838
+ vpc_endpoint_service_name: builtins.str,
8839
+ ) -> None:
8840
+ """Type checking stubs"""
8841
+ pass
8842
+
8843
+ def _typecheckingstub__b669ca3e532e36dd3f6bf714eda78c90c8c90c4c1bc6dbebfab5c56e74950ddb(
8844
+ *,
8845
+ exclude: typing.Optional[typing.Sequence[builtins.str]] = None,
8846
+ include: typing.Optional[typing.Sequence[builtins.str]] = None,
8847
+ ) -> None:
8848
+ """Type checking stubs"""
8849
+ pass
8850
+
8851
+ def _typecheckingstub__b6aa9553c52b253113ab9a3fd740ae3235a38fc2d9a582fa85db01832e154931(
8852
+ *,
8853
+ exclude: typing.Optional[typing.Sequence[builtins.str]] = None,
8854
+ include: typing.Optional[typing.Sequence[builtins.str]] = None,
8855
+ ) -> None:
8856
+ """Type checking stubs"""
8857
+ pass
8858
+
8169
8859
  def _typecheckingstub__a51e3602fa39b19119cb43ff1945ccb136f7909bb7d76a42abc9195cb0d725a3(
8170
8860
  *,
8171
8861
  key_type: builtins.str,
@@ -8610,6 +9300,7 @@ def _typecheckingstub__4f4e310bf0ff2c76f9c126ea4431fb25b9b53c8ba7e0c0eacc1c934de
8610
9300
  *,
8611
9301
  amazon_open_search_serverless_destination_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.AmazonOpenSearchServerlessDestinationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8612
9302
  amazonopensearchservice_destination_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.AmazonopensearchserviceDestinationConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
9303
+ database_source_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DatabaseSourceConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8613
9304
  delivery_stream_encryption_configuration_input: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDeliveryStream.DeliveryStreamEncryptionConfigurationInputProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
8614
9305
  delivery_stream_name: typing.Optional[builtins.str] = None,
8615
9306
  delivery_stream_type: typing.Optional[builtins.str] = None,