aws-cdk-lib 2.133.0__py3-none-any.whl → 2.134.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 +9 -1
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.133.0.jsii.tgz → aws-cdk-lib@2.134.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +105 -3
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +155 -3
- aws_cdk/aws_appconfig/__init__.py +186 -8
- aws_cdk/aws_appintegrations/__init__.py +551 -0
- aws_cdk/aws_appsync/__init__.py +71 -0
- aws_cdk/aws_autoscaling/__init__.py +6 -4
- aws_cdk/aws_backup/__init__.py +23 -12
- aws_cdk/aws_batch/__init__.py +423 -73
- aws_cdk/aws_bedrock/__init__.py +197 -2
- aws_cdk/aws_cloudformation/__init__.py +1 -1
- aws_cdk/aws_cloudfront/__init__.py +2 -2
- aws_cdk/aws_cloudtrail/__init__.py +44 -14
- aws_cdk/aws_cloudwatch/__init__.py +18 -0
- aws_cdk/aws_codeartifact/__init__.py +812 -2
- aws_cdk/aws_codebuild/__init__.py +21 -5
- aws_cdk/aws_codepipeline/__init__.py +24 -8
- aws_cdk/aws_cognito/__init__.py +41 -40
- aws_cdk/aws_connect/__init__.py +256 -0
- aws_cdk/aws_datasync/__init__.py +393 -13
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_docdbelastic/__init__.py +117 -0
- aws_cdk/aws_dynamodb/__init__.py +416 -5
- aws_cdk/aws_ec2/__init__.py +493 -93
- aws_cdk/aws_ecs/__init__.py +6 -4
- aws_cdk/aws_eks/__init__.py +27 -25
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +359 -60
- aws_cdk/aws_entityresolution/__init__.py +91 -64
- aws_cdk/aws_glue/__init__.py +137 -3
- aws_cdk/aws_iam/__init__.py +9 -10
- aws_cdk/aws_internetmonitor/__init__.py +85 -0
- aws_cdk/aws_iotsitewise/__init__.py +110 -50
- aws_cdk/aws_kafkaconnect/__init__.py +1237 -162
- aws_cdk/aws_kendra/__init__.py +34 -24
- aws_cdk/aws_kinesisanalytics/__init__.py +37 -37
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +37 -37
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -2
- aws_cdk/aws_msk/__init__.py +88 -0
- aws_cdk/aws_opensearchservice/__init__.py +19 -17
- aws_cdk/aws_pinpoint/__init__.py +42 -0
- aws_cdk/aws_rds/__init__.py +48 -14
- aws_cdk/aws_sagemaker/__init__.py +2 -2
- aws_cdk/aws_ssm/__init__.py +3 -3
- aws_cdk/aws_stepfunctions_tasks/__init__.py +23 -0
- aws_cdk/aws_synthetics/__init__.py +74 -14
- aws_cdk/aws_transfer/__init__.py +4 -3
- aws_cdk/aws_wafv2/__init__.py +96 -46
- aws_cdk/cx_api/__init__.py +17 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/RECORD +56 -56
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.133.0.dist-info → aws_cdk_lib-2.134.0.dist-info}/top_level.txt +0 -0
|
@@ -574,7 +574,7 @@ class CfnApplication(
|
|
|
574
574
|
:param application_snapshot_configuration: Describes whether snapshots are enabled for a Managed Service for Apache Flink application.
|
|
575
575
|
:param environment_properties: Describes execution properties for a Managed Service for Apache Flink application.
|
|
576
576
|
:param flink_application_configuration: The creation and update parameters for a Managed Service for Apache Flink application.
|
|
577
|
-
:param sql_application_configuration: The creation and update parameters for a SQL-based
|
|
577
|
+
:param sql_application_configuration: The creation and update parameters for a SQL-based Kinesis Data Analytics application.
|
|
578
578
|
:param vpc_configurations: The array of descriptions of VPC configurations available to the application.
|
|
579
579
|
:param zeppelin_application_configuration: The configuration parameters for a Kinesis Data Analytics Studio notebook.
|
|
580
580
|
|
|
@@ -799,7 +799,7 @@ class CfnApplication(
|
|
|
799
799
|
def sql_application_configuration(
|
|
800
800
|
self,
|
|
801
801
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplication.SqlApplicationConfigurationProperty"]]:
|
|
802
|
-
'''The creation and update parameters for a SQL-based
|
|
802
|
+
'''The creation and update parameters for a SQL-based Kinesis Data Analytics application.
|
|
803
803
|
|
|
804
804
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationconfiguration.html#cfn-kinesisanalyticsv2-application-applicationconfiguration-sqlapplicationconfiguration
|
|
805
805
|
'''
|
|
@@ -1048,7 +1048,7 @@ class CfnApplication(
|
|
|
1048
1048
|
record_column_delimiter: builtins.str,
|
|
1049
1049
|
record_row_delimiter: builtins.str,
|
|
1050
1050
|
) -> None:
|
|
1051
|
-
'''For a SQL-based
|
|
1051
|
+
'''For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV.
|
|
1052
1052
|
|
|
1053
1053
|
For example, the following sample records use CSV format, where the records use the *'\\n'* as the row delimiter and a comma (",") as the column delimiter:
|
|
1054
1054
|
|
|
@@ -1887,7 +1887,7 @@ class CfnApplication(
|
|
|
1887
1887
|
)
|
|
1888
1888
|
class InputLambdaProcessorProperty:
|
|
1889
1889
|
def __init__(self, *, resource_arn: builtins.str) -> None:
|
|
1890
|
-
'''An object that contains the Amazon Resource Name (ARN) of the Amazon Lambda function that is used to preprocess records in the stream in a SQL-based
|
|
1890
|
+
'''An object that contains the Amazon Resource Name (ARN) of the Amazon Lambda function that is used to preprocess records in the stream in a SQL-based Kinesis Data Analytics application.
|
|
1891
1891
|
|
|
1892
1892
|
:param resource_arn: The ARN of the Amazon Lambda function that operates on records in the stream. .. epigraph:: To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see `Example ARNs: Amazon Lambda <https://docs.aws.amazon.com//general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda>`_
|
|
1893
1893
|
|
|
@@ -1943,7 +1943,7 @@ class CfnApplication(
|
|
|
1943
1943
|
)
|
|
1944
1944
|
class InputParallelismProperty:
|
|
1945
1945
|
def __init__(self, *, count: typing.Optional[jsii.Number] = None) -> None:
|
|
1946
|
-
'''For a SQL-based
|
|
1946
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the number of in-application streams to create for a given streaming source.
|
|
1947
1947
|
|
|
1948
1948
|
:param count: The number of in-application streams to create.
|
|
1949
1949
|
|
|
@@ -2071,10 +2071,10 @@ class CfnApplication(
|
|
|
2071
2071
|
kinesis_firehose_input: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.KinesisFirehoseInputProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2072
2072
|
kinesis_streams_input: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.KinesisStreamsInputProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2073
2073
|
) -> None:
|
|
2074
|
-
'''When you configure the application input for a SQL-based
|
|
2074
|
+
'''When you configure the application input for a SQL-based Kinesis Data Analytics application, you specify the streaming source, the in-application stream name that is created, and the mapping between the two.
|
|
2075
2075
|
|
|
2076
2076
|
:param input_schema: Describes the format of the data in the streaming source, and how each data element maps to corresponding columns in the in-application stream that is being created. Also used to describe the format of the reference data source.
|
|
2077
|
-
:param name_prefix: The name prefix to use when creating an in-application stream. Suppose that you specify a prefix " ``MyInApplicationStream`` ."
|
|
2077
|
+
:param name_prefix: The name prefix to use when creating an in-application stream. Suppose that you specify a prefix " ``MyInApplicationStream`` ." Kinesis Data Analytics then creates one or more (as per the ``InputParallelism`` count you specified) in-application streams with the names " ``MyInApplicationStream_001`` ," " ``MyInApplicationStream_002`` ," and so on.
|
|
2078
2078
|
:param input_parallelism: Describes the number of in-application streams to create.
|
|
2079
2079
|
:param input_processing_configuration: The `InputProcessingConfiguration <https://docs.aws.amazon.com/managed-flink/latest/apiv2/API_InputProcessingConfiguration.html>`_ for the input. An input processor transforms records as they are received from the stream, before the application's SQL code executes. Currently, the only input processing configuration available is `InputLambdaProcessor <https://docs.aws.amazon.com/managed-flink/latest/apiv2/API_InputLambdaProcessor.html>`_ .
|
|
2080
2080
|
:param kinesis_firehose_input: If the streaming source is an Amazon Kinesis Data Firehose delivery stream, identifies the delivery stream's ARN.
|
|
@@ -2174,7 +2174,7 @@ class CfnApplication(
|
|
|
2174
2174
|
def name_prefix(self) -> builtins.str:
|
|
2175
2175
|
'''The name prefix to use when creating an in-application stream.
|
|
2176
2176
|
|
|
2177
|
-
Suppose that you specify a prefix " ``MyInApplicationStream`` ."
|
|
2177
|
+
Suppose that you specify a prefix " ``MyInApplicationStream`` ." Kinesis Data Analytics then creates one or more (as per the ``InputParallelism`` count you specified) in-application streams with the names " ``MyInApplicationStream_001`` ," " ``MyInApplicationStream_002`` ," and so on.
|
|
2178
2178
|
|
|
2179
2179
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-input.html#cfn-kinesisanalyticsv2-application-input-nameprefix
|
|
2180
2180
|
'''
|
|
@@ -2254,7 +2254,7 @@ class CfnApplication(
|
|
|
2254
2254
|
record_format: typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.RecordFormatProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
2255
2255
|
record_encoding: typing.Optional[builtins.str] = None,
|
|
2256
2256
|
) -> None:
|
|
2257
|
-
'''For a SQL-based
|
|
2257
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.
|
|
2258
2258
|
|
|
2259
2259
|
:param record_columns: A list of ``RecordColumn`` objects.
|
|
2260
2260
|
:param record_format: Specifies the format of the records on the streaming source.
|
|
@@ -2361,7 +2361,7 @@ class CfnApplication(
|
|
|
2361
2361
|
)
|
|
2362
2362
|
class JSONMappingParametersProperty:
|
|
2363
2363
|
def __init__(self, *, record_row_path: builtins.str) -> None:
|
|
2364
|
-
'''For a SQL-based
|
|
2364
|
+
'''For a SQL-based Kinesis Data Analytics application, provides additional mapping information when JSON is the record format on the streaming source.
|
|
2365
2365
|
|
|
2366
2366
|
:param record_row_path: The path to the top-level parent that contains the records.
|
|
2367
2367
|
|
|
@@ -2413,7 +2413,7 @@ class CfnApplication(
|
|
|
2413
2413
|
)
|
|
2414
2414
|
class KinesisFirehoseInputProperty:
|
|
2415
2415
|
def __init__(self, *, resource_arn: builtins.str) -> None:
|
|
2416
|
-
'''For a SQL-based
|
|
2416
|
+
'''For a SQL-based Kinesis Data Analytics application, identifies a Kinesis Data Firehose delivery stream as the streaming source.
|
|
2417
2417
|
|
|
2418
2418
|
You provide the delivery stream's Amazon Resource Name (ARN).
|
|
2419
2419
|
|
|
@@ -2529,7 +2529,7 @@ class CfnApplication(
|
|
|
2529
2529
|
csv_mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.CSVMappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2530
2530
|
json_mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.JSONMappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2531
2531
|
) -> None:
|
|
2532
|
-
'''When you configure a SQL-based
|
|
2532
|
+
'''When you configure a SQL-based Kinesis Data Analytics application's input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.
|
|
2533
2533
|
|
|
2534
2534
|
:param csv_mapping_parameters: Provides additional mapping information when the record format uses delimiters (for example, CSV).
|
|
2535
2535
|
:param json_mapping_parameters: Provides additional mapping information when JSON is the record format on the streaming source.
|
|
@@ -2994,7 +2994,7 @@ class CfnApplication(
|
|
|
2994
2994
|
sql_type: builtins.str,
|
|
2995
2995
|
mapping: typing.Optional[builtins.str] = None,
|
|
2996
2996
|
) -> None:
|
|
2997
|
-
'''For a SQL-based
|
|
2997
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.
|
|
2998
2998
|
|
|
2999
2999
|
Also used to describe the format of the reference data source.
|
|
3000
3000
|
|
|
@@ -3086,7 +3086,7 @@ class CfnApplication(
|
|
|
3086
3086
|
record_format_type: builtins.str,
|
|
3087
3087
|
mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.MappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3088
3088
|
) -> None:
|
|
3089
|
-
'''For a SQL-based
|
|
3089
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the record format and relevant mapping information that should be applied to schematize the records on the stream.
|
|
3090
3090
|
|
|
3091
3091
|
:param record_format_type: The type of record format.
|
|
3092
3092
|
:param mapping_parameters: When you configure application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.
|
|
@@ -3417,7 +3417,7 @@ class CfnApplication(
|
|
|
3417
3417
|
*,
|
|
3418
3418
|
inputs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplication.InputProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3419
3419
|
) -> None:
|
|
3420
|
-
'''Describes the inputs, outputs, and reference data sources for a SQL-based
|
|
3420
|
+
'''Describes the inputs, outputs, and reference data sources for a SQL-based Kinesis Data Analytics application.
|
|
3421
3421
|
|
|
3422
3422
|
:param inputs: The array of `Input <https://docs.aws.amazon.com/managed-flink/latest/apiv2/API_Input.html>`_ objects describing the input streams used by the application.
|
|
3423
3423
|
|
|
@@ -4101,7 +4101,7 @@ class CfnApplicationOutput(
|
|
|
4101
4101
|
:param scope: Scope in which this resource is defined.
|
|
4102
4102
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4103
4103
|
:param application_name: The name of the application.
|
|
4104
|
-
:param output: Describes a SQL-based
|
|
4104
|
+
:param output: Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written. The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
|
|
4105
4105
|
'''
|
|
4106
4106
|
if __debug__:
|
|
4107
4107
|
type_hints = typing.get_type_hints(_typecheckingstub__5b6c4651a68664e2470a6cb86b70db02370f72a5c551bf6751038d448e8995c3)
|
|
@@ -4174,7 +4174,7 @@ class CfnApplicationOutput(
|
|
|
4174
4174
|
def output(
|
|
4175
4175
|
self,
|
|
4176
4176
|
) -> typing.Union[_IResolvable_da3f097b, "CfnApplicationOutput.OutputProperty"]:
|
|
4177
|
-
'''Describes a SQL-based
|
|
4177
|
+
'''Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written.'''
|
|
4178
4178
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnApplicationOutput.OutputProperty"], jsii.get(self, "output"))
|
|
4179
4179
|
|
|
4180
4180
|
@output.setter
|
|
@@ -4198,7 +4198,7 @@ class CfnApplicationOutput(
|
|
|
4198
4198
|
*,
|
|
4199
4199
|
record_format_type: typing.Optional[builtins.str] = None,
|
|
4200
4200
|
) -> None:
|
|
4201
|
-
'''Describes the data format when records are written to the destination in a SQL-based
|
|
4201
|
+
'''Describes the data format when records are written to the destination in a SQL-based Kinesis Data Analytics application.
|
|
4202
4202
|
|
|
4203
4203
|
:param record_format_type: Specifies the format of the records on the output stream.
|
|
4204
4204
|
|
|
@@ -4249,7 +4249,7 @@ class CfnApplicationOutput(
|
|
|
4249
4249
|
)
|
|
4250
4250
|
class KinesisFirehoseOutputProperty:
|
|
4251
4251
|
def __init__(self, *, resource_arn: builtins.str) -> None:
|
|
4252
|
-
'''For a SQL-based
|
|
4252
|
+
'''For a SQL-based Kinesis Data Analytics application, when configuring application output, identifies a Kinesis Data Firehose delivery stream as the destination.
|
|
4253
4253
|
|
|
4254
4254
|
You provide the stream Amazon Resource Name (ARN) of the delivery stream.
|
|
4255
4255
|
|
|
@@ -4303,7 +4303,7 @@ class CfnApplicationOutput(
|
|
|
4303
4303
|
)
|
|
4304
4304
|
class KinesisStreamsOutputProperty:
|
|
4305
4305
|
def __init__(self, *, resource_arn: builtins.str) -> None:
|
|
4306
|
-
'''When you configure a SQL-based
|
|
4306
|
+
'''When you configure a SQL-based Kinesis Data Analytics application's output, identifies a Kinesis data stream as the destination.
|
|
4307
4307
|
|
|
4308
4308
|
You provide the stream Amazon Resource Name (ARN).
|
|
4309
4309
|
|
|
@@ -4357,7 +4357,7 @@ class CfnApplicationOutput(
|
|
|
4357
4357
|
)
|
|
4358
4358
|
class LambdaOutputProperty:
|
|
4359
4359
|
def __init__(self, *, resource_arn: builtins.str) -> None:
|
|
4360
|
-
'''When you configure a SQL-based
|
|
4360
|
+
'''When you configure a SQL-based Kinesis Data Analytics application's output, identifies an Amazon Lambda function as the destination.
|
|
4361
4361
|
|
|
4362
4362
|
You provide the function Amazon Resource Name (ARN) of the Lambda function.
|
|
4363
4363
|
|
|
@@ -4429,7 +4429,7 @@ class CfnApplicationOutput(
|
|
|
4429
4429
|
lambda_output: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationOutput.LambdaOutputProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4430
4430
|
name: typing.Optional[builtins.str] = None,
|
|
4431
4431
|
) -> None:
|
|
4432
|
-
'''Describes a SQL-based
|
|
4432
|
+
'''Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written.
|
|
4433
4433
|
|
|
4434
4434
|
The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
|
|
4435
4435
|
|
|
@@ -4566,7 +4566,7 @@ class CfnApplicationOutputProps:
|
|
|
4566
4566
|
'''Properties for defining a ``CfnApplicationOutput``.
|
|
4567
4567
|
|
|
4568
4568
|
:param application_name: The name of the application.
|
|
4569
|
-
:param output: Describes a SQL-based
|
|
4569
|
+
:param output: Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written. The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
|
|
4570
4570
|
|
|
4571
4571
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html
|
|
4572
4572
|
:exampleMetadata: fixture=_generated
|
|
@@ -4621,7 +4621,7 @@ class CfnApplicationOutputProps:
|
|
|
4621
4621
|
def output(
|
|
4622
4622
|
self,
|
|
4623
4623
|
) -> typing.Union[_IResolvable_da3f097b, CfnApplicationOutput.OutputProperty]:
|
|
4624
|
-
'''Describes a SQL-based
|
|
4624
|
+
'''Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written.
|
|
4625
4625
|
|
|
4626
4626
|
The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
|
|
4627
4627
|
|
|
@@ -5002,9 +5002,9 @@ class CfnApplicationReferenceDataSource(
|
|
|
5002
5002
|
metaclass=jsii.JSIIMeta,
|
|
5003
5003
|
jsii_type="aws-cdk-lib.aws_kinesisanalyticsv2.CfnApplicationReferenceDataSource",
|
|
5004
5004
|
):
|
|
5005
|
-
'''Adds a reference data source to an existing SQL-based
|
|
5005
|
+
'''Adds a reference data source to an existing SQL-based Kinesis Data Analytics application.
|
|
5006
5006
|
|
|
5007
|
-
|
|
5007
|
+
Kinesis Data Analytics reads reference data (that is, an Amazon S3 object) and creates an in-application table within your application. In the request, you provide the source (S3 bucket name and object key name), name of the in-application table to create, and the necessary mapping information that describes how data in an Amazon S3 object maps to columns in the resulting in-application table.
|
|
5008
5008
|
|
|
5009
5009
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html
|
|
5010
5010
|
:cloudformationResource: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource
|
|
@@ -5068,7 +5068,7 @@ class CfnApplicationReferenceDataSource(
|
|
|
5068
5068
|
:param scope: Scope in which this resource is defined.
|
|
5069
5069
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5070
5070
|
:param application_name: The name of the application.
|
|
5071
|
-
:param reference_data_source: For a SQL-based
|
|
5071
|
+
:param reference_data_source: For a SQL-based Kinesis Data Analytics application, describes the reference data source by providing the source information (Amazon S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.
|
|
5072
5072
|
'''
|
|
5073
5073
|
if __debug__:
|
|
5074
5074
|
type_hints = typing.get_type_hints(_typecheckingstub__0135dc8e1b370a7451f4be786334b437787e811ef0545c454dc50a42dca5b3fe)
|
|
@@ -5142,7 +5142,7 @@ class CfnApplicationReferenceDataSource(
|
|
|
5142
5142
|
def reference_data_source(
|
|
5143
5143
|
self,
|
|
5144
5144
|
) -> typing.Union[_IResolvable_da3f097b, "CfnApplicationReferenceDataSource.ReferenceDataSourceProperty"]:
|
|
5145
|
-
'''For a SQL-based
|
|
5145
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the reference data source by providing the source information (Amazon S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.'''
|
|
5146
5146
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnApplicationReferenceDataSource.ReferenceDataSourceProperty"], jsii.get(self, "referenceDataSource"))
|
|
5147
5147
|
|
|
5148
5148
|
@reference_data_source.setter
|
|
@@ -5170,7 +5170,7 @@ class CfnApplicationReferenceDataSource(
|
|
|
5170
5170
|
record_column_delimiter: builtins.str,
|
|
5171
5171
|
record_row_delimiter: builtins.str,
|
|
5172
5172
|
) -> None:
|
|
5173
|
-
'''For a SQL-based
|
|
5173
|
+
'''For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV.
|
|
5174
5174
|
|
|
5175
5175
|
For example, the following sample records use CSV format, where the records use the *'\\n'* as the row delimiter and a comma (",") as the column delimiter:
|
|
5176
5176
|
|
|
@@ -5246,7 +5246,7 @@ class CfnApplicationReferenceDataSource(
|
|
|
5246
5246
|
)
|
|
5247
5247
|
class JSONMappingParametersProperty:
|
|
5248
5248
|
def __init__(self, *, record_row_path: builtins.str) -> None:
|
|
5249
|
-
'''For a SQL-based
|
|
5249
|
+
'''For a SQL-based Kinesis Data Analytics application, provides additional mapping information when JSON is the record format on the streaming source.
|
|
5250
5250
|
|
|
5251
5251
|
:param record_row_path: The path to the top-level parent that contains the records.
|
|
5252
5252
|
|
|
@@ -5306,7 +5306,7 @@ class CfnApplicationReferenceDataSource(
|
|
|
5306
5306
|
csv_mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSource.CSVMappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5307
5307
|
json_mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSource.JSONMappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5308
5308
|
) -> None:
|
|
5309
|
-
'''When you configure a SQL-based
|
|
5309
|
+
'''When you configure a SQL-based Kinesis Data Analytics application's input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.
|
|
5310
5310
|
|
|
5311
5311
|
:param csv_mapping_parameters: Provides additional mapping information when the record format uses delimiters (for example, CSV).
|
|
5312
5312
|
:param json_mapping_parameters: Provides additional mapping information when JSON is the record format on the streaming source.
|
|
@@ -5386,7 +5386,7 @@ class CfnApplicationReferenceDataSource(
|
|
|
5386
5386
|
sql_type: builtins.str,
|
|
5387
5387
|
mapping: typing.Optional[builtins.str] = None,
|
|
5388
5388
|
) -> None:
|
|
5389
|
-
'''For a SQL-based
|
|
5389
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the mapping of each data element in the streaming source to the corresponding column in the in-application stream.
|
|
5390
5390
|
|
|
5391
5391
|
Also used to describe the format of the reference data source.
|
|
5392
5392
|
|
|
@@ -5478,7 +5478,7 @@ class CfnApplicationReferenceDataSource(
|
|
|
5478
5478
|
record_format_type: builtins.str,
|
|
5479
5479
|
mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSource.MappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5480
5480
|
) -> None:
|
|
5481
|
-
'''For a SQL-based
|
|
5481
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the record format and relevant mapping information that should be applied to schematize the records on the stream.
|
|
5482
5482
|
|
|
5483
5483
|
:param record_format_type: The type of record format.
|
|
5484
5484
|
:param mapping_parameters: When you configure application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.
|
|
@@ -5566,7 +5566,7 @@ class CfnApplicationReferenceDataSource(
|
|
|
5566
5566
|
s3_reference_data_source: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSource.S3ReferenceDataSourceProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5567
5567
|
table_name: typing.Optional[builtins.str] = None,
|
|
5568
5568
|
) -> None:
|
|
5569
|
-
'''For a SQL-based
|
|
5569
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the reference data source by providing the source information (Amazon S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.
|
|
5570
5570
|
|
|
5571
5571
|
:param reference_schema: Describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.
|
|
5572
5572
|
:param s3_reference_data_source: Identifies the S3 bucket and object that contains the reference data. A Kinesis Data Analytics application loads reference data only once. If the data changes, you call the `UpdateApplication <https://docs.aws.amazon.com/managed-flink/latest/apiv2/API_UpdateApplication.html>`_ operation to trigger reloading of data into your application.
|
|
@@ -5692,7 +5692,7 @@ class CfnApplicationReferenceDataSource(
|
|
|
5692
5692
|
record_format: typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSource.RecordFormatProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
5693
5693
|
record_encoding: typing.Optional[builtins.str] = None,
|
|
5694
5694
|
) -> None:
|
|
5695
|
-
'''For a SQL-based
|
|
5695
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.
|
|
5696
5696
|
|
|
5697
5697
|
:param record_columns: A list of ``RecordColumn`` objects.
|
|
5698
5698
|
:param record_format: Specifies the format of the records on the streaming source.
|
|
@@ -5879,7 +5879,7 @@ class CfnApplicationReferenceDataSourceProps:
|
|
|
5879
5879
|
'''Properties for defining a ``CfnApplicationReferenceDataSource``.
|
|
5880
5880
|
|
|
5881
5881
|
:param application_name: The name of the application.
|
|
5882
|
-
:param reference_data_source: For a SQL-based
|
|
5882
|
+
:param reference_data_source: For a SQL-based Kinesis Data Analytics application, describes the reference data source by providing the source information (Amazon S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.
|
|
5883
5883
|
|
|
5884
5884
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html
|
|
5885
5885
|
:exampleMetadata: fixture=_generated
|
|
@@ -5952,7 +5952,7 @@ class CfnApplicationReferenceDataSourceProps:
|
|
|
5952
5952
|
def reference_data_source(
|
|
5953
5953
|
self,
|
|
5954
5954
|
) -> typing.Union[_IResolvable_da3f097b, CfnApplicationReferenceDataSource.ReferenceDataSourceProperty]:
|
|
5955
|
-
'''For a SQL-based
|
|
5955
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the reference data source by providing the source information (Amazon S3 bucket name and object key name), the resulting in-application table name that is created, and the necessary schema to map the data elements in the Amazon S3 object to the in-application table.
|
|
5956
5956
|
|
|
5957
5957
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource
|
|
5958
5958
|
'''
|
|
@@ -131,7 +131,7 @@ class CfnDeliveryStream(
|
|
|
131
131
|
:param s3_destination_configuration: The ``S3DestinationConfiguration`` property type specifies an Amazon Simple Storage Service (Amazon S3) destination to which Amazon Kinesis Data Firehose (Kinesis Data Firehose) delivers data. Conditional. You must specify only one destination configuration. If you change the delivery stream destination from an Amazon S3 destination to an Amazon ES destination, update requires `some interruptions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt>`_ .
|
|
132
132
|
:param snowflake_destination_configuration: Configure Snowflake destination.
|
|
133
133
|
:param splunk_destination_configuration: The configuration of a destination in Splunk for the delivery stream.
|
|
134
|
-
:param tags: A set of tags to assign to the delivery stream. A tag is a key-value pair that you can define and assign to AWS resources. Tags are metadata. For example, you can add friendly names and descriptions or other types of information that can help you distinguish the delivery stream. For more information about tags, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`_ in the AWS Billing and Cost Management User Guide. You can specify up to 50 tags when creating a delivery stream.
|
|
134
|
+
:param tags: A set of tags to assign to the delivery stream. A tag is a key-value pair that you can define and assign to AWS resources. Tags are metadata. For example, you can add friendly names and descriptions or other types of information that can help you distinguish the delivery stream. For more information about tags, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`_ in the AWS Billing and Cost Management User Guide. You can specify up to 50 tags when creating a delivery stream. If you specify tags, Amazon Data Firehose performs an additional authorization on the ``firehose:TagDeliveryStream`` action to verify if users have permissions to create tags. For an example IAM policy, see `Tag example. <https://docs.aws.amazon.com/firehose/latest/APIReference/API_CreateDeliveryStream.html#API_CreateDeliveryStream_Examples>`_
|
|
135
135
|
'''
|
|
136
136
|
if __debug__:
|
|
137
137
|
type_hints = typing.get_type_hints(_typecheckingstub__b3cd824a2680c7d043cac684bd1be9ca77e94201f1ba00785d60a50ff43c2288)
|
|
@@ -6831,7 +6831,7 @@ class CfnDeliveryStreamProps:
|
|
|
6831
6831
|
:param s3_destination_configuration: The ``S3DestinationConfiguration`` property type specifies an Amazon Simple Storage Service (Amazon S3) destination to which Amazon Kinesis Data Firehose (Kinesis Data Firehose) delivers data. Conditional. You must specify only one destination configuration. If you change the delivery stream destination from an Amazon S3 destination to an Amazon ES destination, update requires `some interruptions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt>`_ .
|
|
6832
6832
|
:param snowflake_destination_configuration: Configure Snowflake destination.
|
|
6833
6833
|
:param splunk_destination_configuration: The configuration of a destination in Splunk for the delivery stream.
|
|
6834
|
-
:param tags: A set of tags to assign to the delivery stream. A tag is a key-value pair that you can define and assign to AWS resources. Tags are metadata. For example, you can add friendly names and descriptions or other types of information that can help you distinguish the delivery stream. For more information about tags, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`_ in the AWS Billing and Cost Management User Guide. You can specify up to 50 tags when creating a delivery stream.
|
|
6834
|
+
:param tags: A set of tags to assign to the delivery stream. A tag is a key-value pair that you can define and assign to AWS resources. Tags are metadata. For example, you can add friendly names and descriptions or other types of information that can help you distinguish the delivery stream. For more information about tags, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`_ in the AWS Billing and Cost Management User Guide. You can specify up to 50 tags when creating a delivery stream. If you specify tags, Amazon Data Firehose performs an additional authorization on the ``firehose:TagDeliveryStream`` action to verify if users have permissions to create tags. For an example IAM policy, see `Tag example. <https://docs.aws.amazon.com/firehose/latest/APIReference/API_CreateDeliveryStream.html#API_CreateDeliveryStream_Examples>`_
|
|
6835
6835
|
|
|
6836
6836
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html
|
|
6837
6837
|
:exampleMetadata: infused
|
|
@@ -7088,6 +7088,10 @@ class CfnDeliveryStreamProps:
|
|
|
7088
7088
|
|
|
7089
7089
|
You can specify up to 50 tags when creating a delivery stream.
|
|
7090
7090
|
|
|
7091
|
+
If you specify tags, Amazon Data Firehose performs an additional authorization on the ``firehose:TagDeliveryStream`` action to verify if users have permissions to create tags.
|
|
7092
|
+
|
|
7093
|
+
For an example IAM policy, see `Tag example. <https://docs.aws.amazon.com/firehose/latest/APIReference/API_CreateDeliveryStream.html#API_CreateDeliveryStream_Examples>`_
|
|
7094
|
+
|
|
7091
7095
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-tags
|
|
7092
7096
|
'''
|
|
7093
7097
|
result = self._values.get("tags")
|
aws_cdk/aws_msk/__init__.py
CHANGED
|
@@ -4078,6 +4078,9 @@ class CfnReplicator(
|
|
|
4078
4078
|
copy_access_control_lists_for_topics=False,
|
|
4079
4079
|
copy_topic_configurations=False,
|
|
4080
4080
|
detect_and_copy_new_topics=False,
|
|
4081
|
+
starting_position=msk.CfnReplicator.ReplicationStartingPositionProperty(
|
|
4082
|
+
type="type"
|
|
4083
|
+
),
|
|
4081
4084
|
topics_to_exclude=["topicsToExclude"]
|
|
4082
4085
|
)
|
|
4083
4086
|
)],
|
|
@@ -4673,6 +4676,9 @@ class CfnReplicator(
|
|
|
4673
4676
|
copy_access_control_lists_for_topics=False,
|
|
4674
4677
|
copy_topic_configurations=False,
|
|
4675
4678
|
detect_and_copy_new_topics=False,
|
|
4679
|
+
starting_position=msk.CfnReplicator.ReplicationStartingPositionProperty(
|
|
4680
|
+
type="type"
|
|
4681
|
+
),
|
|
4676
4682
|
topics_to_exclude=["topicsToExclude"]
|
|
4677
4683
|
)
|
|
4678
4684
|
)
|
|
@@ -4756,6 +4762,57 @@ class CfnReplicator(
|
|
|
4756
4762
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4757
4763
|
)
|
|
4758
4764
|
|
|
4765
|
+
@jsii.data_type(
|
|
4766
|
+
jsii_type="aws-cdk-lib.aws_msk.CfnReplicator.ReplicationStartingPositionProperty",
|
|
4767
|
+
jsii_struct_bases=[],
|
|
4768
|
+
name_mapping={"type": "type"},
|
|
4769
|
+
)
|
|
4770
|
+
class ReplicationStartingPositionProperty:
|
|
4771
|
+
def __init__(self, *, type: typing.Optional[builtins.str] = None) -> None:
|
|
4772
|
+
'''Configuration for specifying the position in the topics to start replicating from.
|
|
4773
|
+
|
|
4774
|
+
:param type: The type of replication starting position.
|
|
4775
|
+
|
|
4776
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-replicationstartingposition.html
|
|
4777
|
+
:exampleMetadata: fixture=_generated
|
|
4778
|
+
|
|
4779
|
+
Example::
|
|
4780
|
+
|
|
4781
|
+
# The code below shows an example of how to instantiate this type.
|
|
4782
|
+
# The values are placeholders you should change.
|
|
4783
|
+
from aws_cdk import aws_msk as msk
|
|
4784
|
+
|
|
4785
|
+
replication_starting_position_property = msk.CfnReplicator.ReplicationStartingPositionProperty(
|
|
4786
|
+
type="type"
|
|
4787
|
+
)
|
|
4788
|
+
'''
|
|
4789
|
+
if __debug__:
|
|
4790
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5867862d62f899b15989ba1bdfade827bc8239f7341776ead0babb821c344db7)
|
|
4791
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
4792
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4793
|
+
if type is not None:
|
|
4794
|
+
self._values["type"] = type
|
|
4795
|
+
|
|
4796
|
+
@builtins.property
|
|
4797
|
+
def type(self) -> typing.Optional[builtins.str]:
|
|
4798
|
+
'''The type of replication starting position.
|
|
4799
|
+
|
|
4800
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-replicationstartingposition.html#cfn-msk-replicator-replicationstartingposition-type
|
|
4801
|
+
'''
|
|
4802
|
+
result = self._values.get("type")
|
|
4803
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4804
|
+
|
|
4805
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4806
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4807
|
+
|
|
4808
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4809
|
+
return not (rhs == self)
|
|
4810
|
+
|
|
4811
|
+
def __repr__(self) -> str:
|
|
4812
|
+
return "ReplicationStartingPositionProperty(%s)" % ", ".join(
|
|
4813
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4814
|
+
)
|
|
4815
|
+
|
|
4759
4816
|
@jsii.data_type(
|
|
4760
4817
|
jsii_type="aws-cdk-lib.aws_msk.CfnReplicator.TopicReplicationProperty",
|
|
4761
4818
|
jsii_struct_bases=[],
|
|
@@ -4764,6 +4821,7 @@ class CfnReplicator(
|
|
|
4764
4821
|
"copy_access_control_lists_for_topics": "copyAccessControlListsForTopics",
|
|
4765
4822
|
"copy_topic_configurations": "copyTopicConfigurations",
|
|
4766
4823
|
"detect_and_copy_new_topics": "detectAndCopyNewTopics",
|
|
4824
|
+
"starting_position": "startingPosition",
|
|
4767
4825
|
"topics_to_exclude": "topicsToExclude",
|
|
4768
4826
|
},
|
|
4769
4827
|
)
|
|
@@ -4775,6 +4833,7 @@ class CfnReplicator(
|
|
|
4775
4833
|
copy_access_control_lists_for_topics: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4776
4834
|
copy_topic_configurations: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4777
4835
|
detect_and_copy_new_topics: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4836
|
+
starting_position: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnReplicator.ReplicationStartingPositionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4778
4837
|
topics_to_exclude: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4779
4838
|
) -> None:
|
|
4780
4839
|
'''
|
|
@@ -4782,6 +4841,7 @@ class CfnReplicator(
|
|
|
4782
4841
|
:param copy_access_control_lists_for_topics: Whether to periodically configure remote topic ACLs to match their corresponding upstream topics.
|
|
4783
4842
|
:param copy_topic_configurations: Whether to periodically configure remote topics to match their corresponding upstream topics.
|
|
4784
4843
|
:param detect_and_copy_new_topics: Whether to periodically check for new topics and partitions.
|
|
4844
|
+
:param starting_position: Configuration for specifying the position in the topics to start replicating from.
|
|
4785
4845
|
:param topics_to_exclude: List of regular expression patterns indicating the topics that should not be replicated.
|
|
4786
4846
|
|
|
4787
4847
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-topicreplication.html
|
|
@@ -4800,6 +4860,9 @@ class CfnReplicator(
|
|
|
4800
4860
|
copy_access_control_lists_for_topics=False,
|
|
4801
4861
|
copy_topic_configurations=False,
|
|
4802
4862
|
detect_and_copy_new_topics=False,
|
|
4863
|
+
starting_position=msk.CfnReplicator.ReplicationStartingPositionProperty(
|
|
4864
|
+
type="type"
|
|
4865
|
+
),
|
|
4803
4866
|
topics_to_exclude=["topicsToExclude"]
|
|
4804
4867
|
)
|
|
4805
4868
|
'''
|
|
@@ -4809,6 +4872,7 @@ class CfnReplicator(
|
|
|
4809
4872
|
check_type(argname="argument copy_access_control_lists_for_topics", value=copy_access_control_lists_for_topics, expected_type=type_hints["copy_access_control_lists_for_topics"])
|
|
4810
4873
|
check_type(argname="argument copy_topic_configurations", value=copy_topic_configurations, expected_type=type_hints["copy_topic_configurations"])
|
|
4811
4874
|
check_type(argname="argument detect_and_copy_new_topics", value=detect_and_copy_new_topics, expected_type=type_hints["detect_and_copy_new_topics"])
|
|
4875
|
+
check_type(argname="argument starting_position", value=starting_position, expected_type=type_hints["starting_position"])
|
|
4812
4876
|
check_type(argname="argument topics_to_exclude", value=topics_to_exclude, expected_type=type_hints["topics_to_exclude"])
|
|
4813
4877
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4814
4878
|
"topics_to_replicate": topics_to_replicate,
|
|
@@ -4819,6 +4883,8 @@ class CfnReplicator(
|
|
|
4819
4883
|
self._values["copy_topic_configurations"] = copy_topic_configurations
|
|
4820
4884
|
if detect_and_copy_new_topics is not None:
|
|
4821
4885
|
self._values["detect_and_copy_new_topics"] = detect_and_copy_new_topics
|
|
4886
|
+
if starting_position is not None:
|
|
4887
|
+
self._values["starting_position"] = starting_position
|
|
4822
4888
|
if topics_to_exclude is not None:
|
|
4823
4889
|
self._values["topics_to_exclude"] = topics_to_exclude
|
|
4824
4890
|
|
|
@@ -4865,6 +4931,17 @@ class CfnReplicator(
|
|
|
4865
4931
|
result = self._values.get("detect_and_copy_new_topics")
|
|
4866
4932
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
4867
4933
|
|
|
4934
|
+
@builtins.property
|
|
4935
|
+
def starting_position(
|
|
4936
|
+
self,
|
|
4937
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnReplicator.ReplicationStartingPositionProperty"]]:
|
|
4938
|
+
'''Configuration for specifying the position in the topics to start replicating from.
|
|
4939
|
+
|
|
4940
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-topicreplication.html#cfn-msk-replicator-topicreplication-startingposition
|
|
4941
|
+
'''
|
|
4942
|
+
result = self._values.get("starting_position")
|
|
4943
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnReplicator.ReplicationStartingPositionProperty"]], result)
|
|
4944
|
+
|
|
4868
4945
|
@builtins.property
|
|
4869
4946
|
def topics_to_exclude(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
4870
4947
|
'''List of regular expression patterns indicating the topics that should not be replicated.
|
|
@@ -4961,6 +5038,9 @@ class CfnReplicatorProps:
|
|
|
4961
5038
|
copy_access_control_lists_for_topics=False,
|
|
4962
5039
|
copy_topic_configurations=False,
|
|
4963
5040
|
detect_and_copy_new_topics=False,
|
|
5041
|
+
starting_position=msk.CfnReplicator.ReplicationStartingPositionProperty(
|
|
5042
|
+
type="type"
|
|
5043
|
+
),
|
|
4964
5044
|
topics_to_exclude=["topicsToExclude"]
|
|
4965
5045
|
)
|
|
4966
5046
|
)],
|
|
@@ -6648,12 +6728,20 @@ def _typecheckingstub__1dda95e7e04f4c21eabf1745c35859aeb7d3710c716f2649a23a1bda9
|
|
|
6648
6728
|
"""Type checking stubs"""
|
|
6649
6729
|
pass
|
|
6650
6730
|
|
|
6731
|
+
def _typecheckingstub__5867862d62f899b15989ba1bdfade827bc8239f7341776ead0babb821c344db7(
|
|
6732
|
+
*,
|
|
6733
|
+
type: typing.Optional[builtins.str] = None,
|
|
6734
|
+
) -> None:
|
|
6735
|
+
"""Type checking stubs"""
|
|
6736
|
+
pass
|
|
6737
|
+
|
|
6651
6738
|
def _typecheckingstub__0c30cafe96a0d51060e8bc61471dbbee1baf46133c8ecfbc997c5305121f3d6d(
|
|
6652
6739
|
*,
|
|
6653
6740
|
topics_to_replicate: typing.Sequence[builtins.str],
|
|
6654
6741
|
copy_access_control_lists_for_topics: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6655
6742
|
copy_topic_configurations: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6656
6743
|
detect_and_copy_new_topics: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6744
|
+
starting_position: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnReplicator.ReplicationStartingPositionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6657
6745
|
topics_to_exclude: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6658
6746
|
) -> None:
|
|
6659
6747
|
"""Type checking stubs"""
|