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
aws_cdk/aws_kendra/__init__.py
CHANGED
|
@@ -4475,8 +4475,8 @@ class CfnDataSource(
|
|
|
4475
4475
|
:param bucket_name: The name of the bucket that contains the documents.
|
|
4476
4476
|
:param access_control_list_configuration: Provides the path to the S3 bucket that contains the user context filtering files for the data source. For the format of the file, see `Access control for S3 data sources <https://docs.aws.amazon.com/kendra/latest/dg/s3-acl.html>`_ .
|
|
4477
4477
|
:param documents_metadata_configuration: Specifies document metadata files that contain information such as the document access control information, source URI, document author, and custom attributes. Each metadata file contains metadata about a single document.
|
|
4478
|
-
:param exclusion_patterns: A list of glob patterns (patterns that can expand a wildcard pattern into a list of path names that match the given pattern) for certain file names and file types to exclude from your index. If a document matches both an inclusion and exclusion prefix or pattern, the exclusion prefix takes precendence and the document is not indexed. Examples of glob patterns include: -
|
|
4479
|
-
:param inclusion_patterns: A list of glob patterns (patterns that can expand a wildcard pattern into a list of path names that match the given pattern) for certain file names and file types to include in your index. If a document matches both an inclusion and exclusion prefix or pattern, the exclusion prefix takes precendence and the document is not indexed. Examples of glob patterns include: -
|
|
4478
|
+
:param exclusion_patterns: A list of glob patterns (patterns that can expand a wildcard pattern into a list of path names that match the given pattern) for certain file names and file types to exclude from your index. If a document matches both an inclusion and exclusion prefix or pattern, the exclusion prefix takes precendence and the document is not indexed. Examples of glob patterns include: - - /myapp/config/** —All files inside config directory. - *** /*.png* —All .png files in all directories. - *** /*.{png, ico, md}* —All .png, .ico or .md files in all directories. - - /myapp/src/** /*.ts* —All .ts files inside src directory (and all its subdirectories). - *** /!(*.module).ts* —All .ts files but not .module.ts - **.png , *.jpg* —All PNG and JPEG image files in a directory (files with the extensions .png and .jpg). - **internal** —All files in a directory that contain 'internal' in the file name, such as 'internal', 'internal_only', 'company_internal'. - *** /*internal** —All internal-related files in a directory and its subdirectories. For more examples, see `Use of Exclude and Include Filters <https://docs.aws.amazon.com/cli/latest/reference/s3/#use-of-exclude-and-include-filters>`_ in the AWS CLI Command Reference.
|
|
4479
|
+
:param inclusion_patterns: A list of glob patterns (patterns that can expand a wildcard pattern into a list of path names that match the given pattern) for certain file names and file types to include in your index. If a document matches both an inclusion and exclusion prefix or pattern, the exclusion prefix takes precendence and the document is not indexed. Examples of glob patterns include: - - /myapp/config/** —All files inside config directory. - *** /*.png* —All .png files in all directories. - *** /*.{png, ico, md}* —All .png, .ico or .md files in all directories. - - /myapp/src/** /*.ts* —All .ts files inside src directory (and all its subdirectories). - *** /!(*.module).ts* —All .ts files but not .module.ts - **.png , *.jpg* —All PNG and JPEG image files in a directory (files with the extensions .png and .jpg). - **internal** —All files in a directory that contain 'internal' in the file name, such as 'internal', 'internal_only', 'company_internal'. - *** /*internal** —All internal-related files in a directory and its subdirectories. For more examples, see `Use of Exclude and Include Filters <https://docs.aws.amazon.com/cli/latest/reference/s3/#use-of-exclude-and-include-filters>`_ in the AWS CLI Command Reference.
|
|
4480
4480
|
:param inclusion_prefixes: A list of S3 prefixes for the documents that should be included in the index.
|
|
4481
4481
|
|
|
4482
4482
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3datasourceconfiguration.html
|
|
@@ -4567,14 +4567,18 @@ class CfnDataSource(
|
|
|
4567
4567
|
|
|
4568
4568
|
If a document matches both an inclusion and exclusion prefix or pattern, the exclusion prefix takes precendence and the document is not indexed. Examples of glob patterns include:
|
|
4569
4569
|
|
|
4570
|
-
-
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
-
|
|
4574
|
-
-
|
|
4575
|
-
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4570
|
+
-
|
|
4571
|
+
- /myapp/config/** —All files inside config directory.
|
|
4572
|
+
|
|
4573
|
+
- *** /*.png* —All .png files in all directories.
|
|
4574
|
+
- *** /*.{png, ico, md}* —All .png, .ico or .md files in all directories.
|
|
4575
|
+
-
|
|
4576
|
+
- /myapp/src/** /*.ts* —All .ts files inside src directory (and all its subdirectories).
|
|
4577
|
+
|
|
4578
|
+
- *** /!(*.module).ts* —All .ts files but not .module.ts
|
|
4579
|
+
- **.png , *.jpg* —All PNG and JPEG image files in a directory (files with the extensions .png and .jpg).
|
|
4580
|
+
- **internal** —All files in a directory that contain 'internal' in the file name, such as 'internal', 'internal_only', 'company_internal'.
|
|
4581
|
+
- *** /*internal** —All internal-related files in a directory and its subdirectories.
|
|
4578
4582
|
|
|
4579
4583
|
For more examples, see `Use of Exclude and Include Filters <https://docs.aws.amazon.com/cli/latest/reference/s3/#use-of-exclude-and-include-filters>`_ in the AWS CLI Command Reference.
|
|
4580
4584
|
|
|
@@ -4589,14 +4593,18 @@ class CfnDataSource(
|
|
|
4589
4593
|
|
|
4590
4594
|
If a document matches both an inclusion and exclusion prefix or pattern, the exclusion prefix takes precendence and the document is not indexed. Examples of glob patterns include:
|
|
4591
4595
|
|
|
4592
|
-
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
-
|
|
4596
|
-
-
|
|
4597
|
-
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4596
|
+
-
|
|
4597
|
+
- /myapp/config/** —All files inside config directory.
|
|
4598
|
+
|
|
4599
|
+
- *** /*.png* —All .png files in all directories.
|
|
4600
|
+
- *** /*.{png, ico, md}* —All .png, .ico or .md files in all directories.
|
|
4601
|
+
-
|
|
4602
|
+
- /myapp/src/** /*.ts* —All .ts files inside src directory (and all its subdirectories).
|
|
4603
|
+
|
|
4604
|
+
- *** /!(*.module).ts* —All .ts files but not .module.ts
|
|
4605
|
+
- **.png , *.jpg* —All PNG and JPEG image files in a directory (files with the extensions .png and .jpg).
|
|
4606
|
+
- **internal** —All files in a directory that contain 'internal' in the file name, such as 'internal', 'internal_only', 'company_internal'.
|
|
4607
|
+
- *** /*internal** —All internal-related files in a directory and its subdirectories.
|
|
4600
4608
|
|
|
4601
4609
|
For more examples, see `Use of Exclude and Include Filters <https://docs.aws.amazon.com/cli/latest/reference/s3/#use-of-exclude-and-include-filters>`_ in the AWS CLI Command Reference.
|
|
4602
4610
|
|
|
@@ -8077,7 +8085,7 @@ class CfnFaq(
|
|
|
8077
8085
|
:param s3_path: The Amazon Simple Storage Service (Amazon S3) location of the FAQ input data.
|
|
8078
8086
|
:param description: A description for the FAQ.
|
|
8079
8087
|
:param file_format: The format of the input file. You can choose between a basic CSV format, a CSV format that includes customs attributes in a header, and a JSON format that includes custom attributes. The format must match the format of the file stored in the S3 bucket identified in the S3Path parameter. Valid values are: - ``CSV`` - ``CSV_WITH_HEADER`` - ``JSON``
|
|
8080
|
-
:param language_code: The code for a language.
|
|
8088
|
+
:param language_code: The code for a language. This shows a supported language for the FAQ document as part of the summary information for FAQs. English is supported by default. For more information on supported languages, including their codes, see `Adding documents in languages other than English <https://docs.aws.amazon.com/kendra/latest/dg/in-adding-languages.html>`_ .
|
|
8081
8089
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
8082
8090
|
'''
|
|
8083
8091
|
if __debug__:
|
|
@@ -8367,7 +8375,7 @@ class CfnFaqProps:
|
|
|
8367
8375
|
:param s3_path: The Amazon Simple Storage Service (Amazon S3) location of the FAQ input data.
|
|
8368
8376
|
:param description: A description for the FAQ.
|
|
8369
8377
|
:param file_format: The format of the input file. You can choose between a basic CSV format, a CSV format that includes customs attributes in a header, and a JSON format that includes custom attributes. The format must match the format of the file stored in the S3 bucket identified in the S3Path parameter. Valid values are: - ``CSV`` - ``CSV_WITH_HEADER`` - ``JSON``
|
|
8370
|
-
:param language_code: The code for a language.
|
|
8378
|
+
:param language_code: The code for a language. This shows a supported language for the FAQ document as part of the summary information for FAQs. English is supported by default. For more information on supported languages, including their codes, see `Adding documents in languages other than English <https://docs.aws.amazon.com/kendra/latest/dg/in-adding-languages.html>`_ .
|
|
8371
8379
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
|
|
8372
8380
|
|
|
8373
8381
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-faq.html
|
|
@@ -8495,6 +8503,8 @@ class CfnFaqProps:
|
|
|
8495
8503
|
def language_code(self) -> typing.Optional[builtins.str]:
|
|
8496
8504
|
'''The code for a language.
|
|
8497
8505
|
|
|
8506
|
+
This shows a supported language for the FAQ document as part of the summary information for FAQs. English is supported by default. For more information on supported languages, including their codes, see `Adding documents in languages other than English <https://docs.aws.amazon.com/kendra/latest/dg/in-adding-languages.html>`_ .
|
|
8507
|
+
|
|
8498
8508
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-faq.html#cfn-kendra-faq-languagecode
|
|
8499
8509
|
'''
|
|
8500
8510
|
result = self._values.get("language_code")
|
|
@@ -9330,9 +9340,9 @@ class CfnIndex(
|
|
|
9330
9340
|
When a query includes terms that match the field, the results are given a boost in the response based on these tuning parameters.
|
|
9331
9341
|
|
|
9332
9342
|
:param duration: Specifies the time period that the boost applies to. For example, to make the boost apply to documents with the field value within the last month, you would use "2628000s". Once the field value is beyond the specified range, the effect of the boost drops off. The higher the importance, the faster the effect drops off. If you don't specify a value, the default is 3 months. The value of the field is a numeric string followed by the character "s", for example "86400s" for one day, or "604800s" for one week. Only applies to ``DATE`` fields.
|
|
9333
|
-
:param freshness: Indicates that this field determines how "fresh" a document is. For example, if document 1 was created on November 5, and document 2 was created on October 31, document 1 is "fresher" than document 2.
|
|
9343
|
+
:param freshness: Indicates that this field determines how "fresh" a document is. For example, if document 1 was created on November 5, and document 2 was created on October 31, document 1 is "fresher" than document 2. Only applies to ``DATE`` fields.
|
|
9334
9344
|
:param importance: The relative importance of the field in the search. Larger numbers provide more of a boost than smaller numbers.
|
|
9335
|
-
:param rank_order: Determines how values should be interpreted. When the ``RankOrder`` field is ``ASCENDING`` , higher numbers are better. For example, a document with a rating score of 10 is higher ranking than a document with a rating score of 1. When the ``RankOrder`` field is ``DESCENDING`` , lower numbers are better. For example, in a task tracking application, a priority 1 task is more important than a priority 5 task. Only applies to ``LONG``
|
|
9345
|
+
:param rank_order: Determines how values should be interpreted. When the ``RankOrder`` field is ``ASCENDING`` , higher numbers are better. For example, a document with a rating score of 10 is higher ranking than a document with a rating score of 1. When the ``RankOrder`` field is ``DESCENDING`` , lower numbers are better. For example, in a task tracking application, a priority 1 task is more important than a priority 5 task. Only applies to ``LONG`` fields.
|
|
9336
9346
|
:param value_importance_items: An array of key-value pairs for different boosts when they appear in the search result list. For example, if you want to boost query terms that match the "department" field in the result, query terms that match this field are boosted in the result. You can add entries from the department field to boost documents with those values higher. For example, you can add entries to the map with names of departments. If you add "HR", 5 and "Legal",3 those departments are given special attention when they appear in the metadata of a document.
|
|
9337
9347
|
|
|
9338
9348
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-relevance.html
|
|
@@ -9393,7 +9403,7 @@ class CfnIndex(
|
|
|
9393
9403
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
9394
9404
|
'''Indicates that this field determines how "fresh" a document is.
|
|
9395
9405
|
|
|
9396
|
-
For example, if document 1 was created on November 5, and document 2 was created on October 31, document 1 is "fresher" than document 2.
|
|
9406
|
+
For example, if document 1 was created on November 5, and document 2 was created on October 31, document 1 is "fresher" than document 2. Only applies to ``DATE`` fields.
|
|
9397
9407
|
|
|
9398
9408
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-relevance.html#cfn-kendra-index-relevance-freshness
|
|
9399
9409
|
'''
|
|
@@ -9419,7 +9429,7 @@ class CfnIndex(
|
|
|
9419
9429
|
|
|
9420
9430
|
When the ``RankOrder`` field is ``DESCENDING`` , lower numbers are better. For example, in a task tracking application, a priority 1 task is more important than a priority 5 task.
|
|
9421
9431
|
|
|
9422
|
-
Only applies to ``LONG``
|
|
9432
|
+
Only applies to ``LONG`` fields.
|
|
9423
9433
|
|
|
9424
9434
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-relevance.html#cfn-kendra-index-relevance-rankorder
|
|
9425
9435
|
'''
|
|
@@ -2323,7 +2323,7 @@ class CfnApplicationOutputV2(
|
|
|
2323
2323
|
:param scope: Scope in which this resource is defined.
|
|
2324
2324
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2325
2325
|
:param application_name: The name of the application.
|
|
2326
|
-
:param output: Describes a SQL-based
|
|
2326
|
+
: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.
|
|
2327
2327
|
'''
|
|
2328
2328
|
if __debug__:
|
|
2329
2329
|
type_hints = typing.get_type_hints(_typecheckingstub__271bacb10dd6a875577035705b436387f7a448fbf7028ee2ca502030ea3c17e2)
|
|
@@ -2396,7 +2396,7 @@ class CfnApplicationOutputV2(
|
|
|
2396
2396
|
def output(
|
|
2397
2397
|
self,
|
|
2398
2398
|
) -> typing.Union[_IResolvable_da3f097b, "CfnApplicationOutputV2.OutputProperty"]:
|
|
2399
|
-
'''Describes a SQL-based
|
|
2399
|
+
'''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.'''
|
|
2400
2400
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnApplicationOutputV2.OutputProperty"], jsii.get(self, "output"))
|
|
2401
2401
|
|
|
2402
2402
|
@output.setter
|
|
@@ -2420,7 +2420,7 @@ class CfnApplicationOutputV2(
|
|
|
2420
2420
|
*,
|
|
2421
2421
|
record_format_type: typing.Optional[builtins.str] = None,
|
|
2422
2422
|
) -> None:
|
|
2423
|
-
'''Describes the data format when records are written to the destination in a SQL-based
|
|
2423
|
+
'''Describes the data format when records are written to the destination in a SQL-based Kinesis Data Analytics application.
|
|
2424
2424
|
|
|
2425
2425
|
:param record_format_type: Specifies the format of the records on the output stream.
|
|
2426
2426
|
|
|
@@ -2471,7 +2471,7 @@ class CfnApplicationOutputV2(
|
|
|
2471
2471
|
)
|
|
2472
2472
|
class KinesisFirehoseOutputProperty:
|
|
2473
2473
|
def __init__(self, *, resource_arn: builtins.str) -> None:
|
|
2474
|
-
'''For a SQL-based
|
|
2474
|
+
'''For a SQL-based Kinesis Data Analytics application, when configuring application output, identifies a Kinesis Data Firehose delivery stream as the destination.
|
|
2475
2475
|
|
|
2476
2476
|
You provide the stream Amazon Resource Name (ARN) of the delivery stream.
|
|
2477
2477
|
|
|
@@ -2525,7 +2525,7 @@ class CfnApplicationOutputV2(
|
|
|
2525
2525
|
)
|
|
2526
2526
|
class KinesisStreamsOutputProperty:
|
|
2527
2527
|
def __init__(self, *, resource_arn: builtins.str) -> None:
|
|
2528
|
-
'''When you configure a SQL-based
|
|
2528
|
+
'''When you configure a SQL-based Kinesis Data Analytics application's output, identifies a Kinesis data stream as the destination.
|
|
2529
2529
|
|
|
2530
2530
|
You provide the stream Amazon Resource Name (ARN).
|
|
2531
2531
|
|
|
@@ -2579,7 +2579,7 @@ class CfnApplicationOutputV2(
|
|
|
2579
2579
|
)
|
|
2580
2580
|
class LambdaOutputProperty:
|
|
2581
2581
|
def __init__(self, *, resource_arn: builtins.str) -> None:
|
|
2582
|
-
'''When you configure a SQL-based
|
|
2582
|
+
'''When you configure a SQL-based Kinesis Data Analytics application's output, identifies an Amazon Lambda function as the destination.
|
|
2583
2583
|
|
|
2584
2584
|
You provide the function Amazon Resource Name (ARN) of the Lambda function.
|
|
2585
2585
|
|
|
@@ -2651,7 +2651,7 @@ class CfnApplicationOutputV2(
|
|
|
2651
2651
|
lambda_output: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationOutputV2.LambdaOutputProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2652
2652
|
name: typing.Optional[builtins.str] = None,
|
|
2653
2653
|
) -> None:
|
|
2654
|
-
'''Describes a SQL-based
|
|
2654
|
+
'''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.
|
|
2655
2655
|
|
|
2656
2656
|
The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
|
|
2657
2657
|
|
|
@@ -2788,7 +2788,7 @@ class CfnApplicationOutputV2Props:
|
|
|
2788
2788
|
'''Properties for defining a ``CfnApplicationOutput``.
|
|
2789
2789
|
|
|
2790
2790
|
:param application_name: The name of the application.
|
|
2791
|
-
:param output: Describes a SQL-based
|
|
2791
|
+
: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.
|
|
2792
2792
|
|
|
2793
2793
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html
|
|
2794
2794
|
:exampleMetadata: fixture=_generated
|
|
@@ -2843,7 +2843,7 @@ class CfnApplicationOutputV2Props:
|
|
|
2843
2843
|
def output(
|
|
2844
2844
|
self,
|
|
2845
2845
|
) -> typing.Union[_IResolvable_da3f097b, CfnApplicationOutputV2.OutputProperty]:
|
|
2846
|
-
'''Describes a SQL-based
|
|
2846
|
+
'''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.
|
|
2847
2847
|
|
|
2848
2848
|
The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
|
|
2849
2849
|
|
|
@@ -4056,9 +4056,9 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
4056
4056
|
metaclass=jsii.JSIIMeta,
|
|
4057
4057
|
jsii_type="aws-cdk-lib.aws_kinesisanalytics.CfnApplicationReferenceDataSourceV2",
|
|
4058
4058
|
):
|
|
4059
|
-
'''Adds a reference data source to an existing SQL-based
|
|
4059
|
+
'''Adds a reference data source to an existing SQL-based Kinesis Data Analytics application.
|
|
4060
4060
|
|
|
4061
|
-
|
|
4061
|
+
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.
|
|
4062
4062
|
|
|
4063
4063
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html
|
|
4064
4064
|
:cloudformationResource: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource
|
|
@@ -4122,7 +4122,7 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
4122
4122
|
:param scope: Scope in which this resource is defined.
|
|
4123
4123
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4124
4124
|
:param application_name: The name of the application.
|
|
4125
|
-
:param reference_data_source: For a SQL-based
|
|
4125
|
+
: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.
|
|
4126
4126
|
'''
|
|
4127
4127
|
if __debug__:
|
|
4128
4128
|
type_hints = typing.get_type_hints(_typecheckingstub__f2c21e9367b4b82b411ec28921ad848b6f7487f126cfc392bff2c5844b5fd4bb)
|
|
@@ -4196,7 +4196,7 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
4196
4196
|
def reference_data_source(
|
|
4197
4197
|
self,
|
|
4198
4198
|
) -> typing.Union[_IResolvable_da3f097b, "CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty"]:
|
|
4199
|
-
'''For a SQL-based
|
|
4199
|
+
'''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.'''
|
|
4200
4200
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty"], jsii.get(self, "referenceDataSource"))
|
|
4201
4201
|
|
|
4202
4202
|
@reference_data_source.setter
|
|
@@ -4224,7 +4224,7 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
4224
4224
|
record_column_delimiter: builtins.str,
|
|
4225
4225
|
record_row_delimiter: builtins.str,
|
|
4226
4226
|
) -> None:
|
|
4227
|
-
'''For a SQL-based
|
|
4227
|
+
'''For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV.
|
|
4228
4228
|
|
|
4229
4229
|
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:
|
|
4230
4230
|
|
|
@@ -4300,7 +4300,7 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
4300
4300
|
)
|
|
4301
4301
|
class JSONMappingParametersProperty:
|
|
4302
4302
|
def __init__(self, *, record_row_path: builtins.str) -> None:
|
|
4303
|
-
'''For a SQL-based
|
|
4303
|
+
'''For a SQL-based Kinesis Data Analytics application, provides additional mapping information when JSON is the record format on the streaming source.
|
|
4304
4304
|
|
|
4305
4305
|
:param record_row_path: The path to the top-level parent that contains the records.
|
|
4306
4306
|
|
|
@@ -4360,7 +4360,7 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
4360
4360
|
csv_mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSourceV2.CSVMappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4361
4361
|
json_mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSourceV2.JSONMappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4362
4362
|
) -> None:
|
|
4363
|
-
'''When you configure a SQL-based
|
|
4363
|
+
'''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.
|
|
4364
4364
|
|
|
4365
4365
|
:param csv_mapping_parameters: Provides additional mapping information when the record format uses delimiters (for example, CSV).
|
|
4366
4366
|
:param json_mapping_parameters: Provides additional mapping information when JSON is the record format on the streaming source.
|
|
@@ -4440,7 +4440,7 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
4440
4440
|
sql_type: builtins.str,
|
|
4441
4441
|
mapping: typing.Optional[builtins.str] = None,
|
|
4442
4442
|
) -> None:
|
|
4443
|
-
'''For a SQL-based
|
|
4443
|
+
'''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.
|
|
4444
4444
|
|
|
4445
4445
|
Also used to describe the format of the reference data source.
|
|
4446
4446
|
|
|
@@ -4532,7 +4532,7 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
4532
4532
|
record_format_type: builtins.str,
|
|
4533
4533
|
mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSourceV2.MappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4534
4534
|
) -> None:
|
|
4535
|
-
'''For a SQL-based
|
|
4535
|
+
'''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.
|
|
4536
4536
|
|
|
4537
4537
|
:param record_format_type: The type of record format.
|
|
4538
4538
|
: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.
|
|
@@ -4620,7 +4620,7 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
4620
4620
|
s3_reference_data_source: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSourceV2.S3ReferenceDataSourceProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4621
4621
|
table_name: typing.Optional[builtins.str] = None,
|
|
4622
4622
|
) -> None:
|
|
4623
|
-
'''For a SQL-based
|
|
4623
|
+
'''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.
|
|
4624
4624
|
|
|
4625
4625
|
: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.
|
|
4626
4626
|
: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.
|
|
@@ -4746,7 +4746,7 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
4746
4746
|
record_format: typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSourceV2.RecordFormatProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
4747
4747
|
record_encoding: typing.Optional[builtins.str] = None,
|
|
4748
4748
|
) -> None:
|
|
4749
|
-
'''For a SQL-based
|
|
4749
|
+
'''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.
|
|
4750
4750
|
|
|
4751
4751
|
:param record_columns: A list of ``RecordColumn`` objects.
|
|
4752
4752
|
:param record_format: Specifies the format of the records on the streaming source.
|
|
@@ -4933,7 +4933,7 @@ class CfnApplicationReferenceDataSourceV2Props:
|
|
|
4933
4933
|
'''Properties for defining a ``CfnApplicationReferenceDataSource``.
|
|
4934
4934
|
|
|
4935
4935
|
:param application_name: The name of the application.
|
|
4936
|
-
:param reference_data_source: For a SQL-based
|
|
4936
|
+
: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.
|
|
4937
4937
|
|
|
4938
4938
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html
|
|
4939
4939
|
:exampleMetadata: fixture=_generated
|
|
@@ -5006,7 +5006,7 @@ class CfnApplicationReferenceDataSourceV2Props:
|
|
|
5006
5006
|
def reference_data_source(
|
|
5007
5007
|
self,
|
|
5008
5008
|
) -> typing.Union[_IResolvable_da3f097b, CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty]:
|
|
5009
|
-
'''For a SQL-based
|
|
5009
|
+
'''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.
|
|
5010
5010
|
|
|
5011
5011
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource
|
|
5012
5012
|
'''
|
|
@@ -5549,7 +5549,7 @@ class CfnApplicationV2(
|
|
|
5549
5549
|
:param application_snapshot_configuration: Describes whether snapshots are enabled for a Managed Service for Apache Flink application.
|
|
5550
5550
|
:param environment_properties: Describes execution properties for a Managed Service for Apache Flink application.
|
|
5551
5551
|
:param flink_application_configuration: The creation and update parameters for a Managed Service for Apache Flink application.
|
|
5552
|
-
:param sql_application_configuration: The creation and update parameters for a SQL-based
|
|
5552
|
+
:param sql_application_configuration: The creation and update parameters for a SQL-based Kinesis Data Analytics application.
|
|
5553
5553
|
:param vpc_configurations: The array of descriptions of VPC configurations available to the application.
|
|
5554
5554
|
:param zeppelin_application_configuration: The configuration parameters for a Kinesis Data Analytics Studio notebook.
|
|
5555
5555
|
|
|
@@ -5774,7 +5774,7 @@ class CfnApplicationV2(
|
|
|
5774
5774
|
def sql_application_configuration(
|
|
5775
5775
|
self,
|
|
5776
5776
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.SqlApplicationConfigurationProperty"]]:
|
|
5777
|
-
'''The creation and update parameters for a SQL-based
|
|
5777
|
+
'''The creation and update parameters for a SQL-based Kinesis Data Analytics application.
|
|
5778
5778
|
|
|
5779
5779
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationconfiguration.html#cfn-kinesisanalyticsv2-application-applicationconfiguration-sqlapplicationconfiguration
|
|
5780
5780
|
'''
|
|
@@ -6023,7 +6023,7 @@ class CfnApplicationV2(
|
|
|
6023
6023
|
record_column_delimiter: builtins.str,
|
|
6024
6024
|
record_row_delimiter: builtins.str,
|
|
6025
6025
|
) -> None:
|
|
6026
|
-
'''For a SQL-based
|
|
6026
|
+
'''For a SQL-based Kinesis Data Analytics application, provides additional mapping information when the record format uses delimiters, such as CSV.
|
|
6027
6027
|
|
|
6028
6028
|
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:
|
|
6029
6029
|
|
|
@@ -6862,7 +6862,7 @@ class CfnApplicationV2(
|
|
|
6862
6862
|
)
|
|
6863
6863
|
class InputLambdaProcessorProperty:
|
|
6864
6864
|
def __init__(self, *, resource_arn: builtins.str) -> None:
|
|
6865
|
-
'''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
|
|
6865
|
+
'''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.
|
|
6866
6866
|
|
|
6867
6867
|
: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>`_
|
|
6868
6868
|
|
|
@@ -6918,7 +6918,7 @@ class CfnApplicationV2(
|
|
|
6918
6918
|
)
|
|
6919
6919
|
class InputParallelismProperty:
|
|
6920
6920
|
def __init__(self, *, count: typing.Optional[jsii.Number] = None) -> None:
|
|
6921
|
-
'''For a SQL-based
|
|
6921
|
+
'''For a SQL-based Kinesis Data Analytics application, describes the number of in-application streams to create for a given streaming source.
|
|
6922
6922
|
|
|
6923
6923
|
:param count: The number of in-application streams to create.
|
|
6924
6924
|
|
|
@@ -7046,10 +7046,10 @@ class CfnApplicationV2(
|
|
|
7046
7046
|
kinesis_firehose_input: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationV2.KinesisFirehoseInputProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7047
7047
|
kinesis_streams_input: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationV2.KinesisStreamsInputProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7048
7048
|
) -> None:
|
|
7049
|
-
'''When you configure the application input for a SQL-based
|
|
7049
|
+
'''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.
|
|
7050
7050
|
|
|
7051
7051
|
: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.
|
|
7052
|
-
:param name_prefix: The name prefix to use when creating an in-application stream. Suppose that you specify a prefix " ``MyInApplicationStream`` ."
|
|
7052
|
+
: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.
|
|
7053
7053
|
:param input_parallelism: Describes the number of in-application streams to create.
|
|
7054
7054
|
: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>`_ .
|
|
7055
7055
|
:param kinesis_firehose_input: If the streaming source is an Amazon Kinesis Data Firehose delivery stream, identifies the delivery stream's ARN.
|
|
@@ -7149,7 +7149,7 @@ class CfnApplicationV2(
|
|
|
7149
7149
|
def name_prefix(self) -> builtins.str:
|
|
7150
7150
|
'''The name prefix to use when creating an in-application stream.
|
|
7151
7151
|
|
|
7152
|
-
Suppose that you specify a prefix " ``MyInApplicationStream`` ."
|
|
7152
|
+
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.
|
|
7153
7153
|
|
|
7154
7154
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-input.html#cfn-kinesisanalyticsv2-application-input-nameprefix
|
|
7155
7155
|
'''
|
|
@@ -7229,7 +7229,7 @@ class CfnApplicationV2(
|
|
|
7229
7229
|
record_format: typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationV2.RecordFormatProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
7230
7230
|
record_encoding: typing.Optional[builtins.str] = None,
|
|
7231
7231
|
) -> None:
|
|
7232
|
-
'''For a SQL-based
|
|
7232
|
+
'''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.
|
|
7233
7233
|
|
|
7234
7234
|
:param record_columns: A list of ``RecordColumn`` objects.
|
|
7235
7235
|
:param record_format: Specifies the format of the records on the streaming source.
|
|
@@ -7336,7 +7336,7 @@ class CfnApplicationV2(
|
|
|
7336
7336
|
)
|
|
7337
7337
|
class JSONMappingParametersProperty:
|
|
7338
7338
|
def __init__(self, *, record_row_path: builtins.str) -> None:
|
|
7339
|
-
'''For a SQL-based
|
|
7339
|
+
'''For a SQL-based Kinesis Data Analytics application, provides additional mapping information when JSON is the record format on the streaming source.
|
|
7340
7340
|
|
|
7341
7341
|
:param record_row_path: The path to the top-level parent that contains the records.
|
|
7342
7342
|
|
|
@@ -7388,7 +7388,7 @@ class CfnApplicationV2(
|
|
|
7388
7388
|
)
|
|
7389
7389
|
class KinesisFirehoseInputProperty:
|
|
7390
7390
|
def __init__(self, *, resource_arn: builtins.str) -> None:
|
|
7391
|
-
'''For a SQL-based
|
|
7391
|
+
'''For a SQL-based Kinesis Data Analytics application, identifies a Kinesis Data Firehose delivery stream as the streaming source.
|
|
7392
7392
|
|
|
7393
7393
|
You provide the delivery stream's Amazon Resource Name (ARN).
|
|
7394
7394
|
|
|
@@ -7504,7 +7504,7 @@ class CfnApplicationV2(
|
|
|
7504
7504
|
csv_mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationV2.CSVMappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7505
7505
|
json_mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationV2.JSONMappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7506
7506
|
) -> None:
|
|
7507
|
-
'''When you configure a SQL-based
|
|
7507
|
+
'''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.
|
|
7508
7508
|
|
|
7509
7509
|
:param csv_mapping_parameters: Provides additional mapping information when the record format uses delimiters (for example, CSV).
|
|
7510
7510
|
:param json_mapping_parameters: Provides additional mapping information when JSON is the record format on the streaming source.
|
|
@@ -7969,7 +7969,7 @@ class CfnApplicationV2(
|
|
|
7969
7969
|
sql_type: builtins.str,
|
|
7970
7970
|
mapping: typing.Optional[builtins.str] = None,
|
|
7971
7971
|
) -> None:
|
|
7972
|
-
'''For a SQL-based
|
|
7972
|
+
'''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.
|
|
7973
7973
|
|
|
7974
7974
|
Also used to describe the format of the reference data source.
|
|
7975
7975
|
|
|
@@ -8061,7 +8061,7 @@ class CfnApplicationV2(
|
|
|
8061
8061
|
record_format_type: builtins.str,
|
|
8062
8062
|
mapping_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationV2.MappingParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8063
8063
|
) -> None:
|
|
8064
|
-
'''For a SQL-based
|
|
8064
|
+
'''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.
|
|
8065
8065
|
|
|
8066
8066
|
:param record_format_type: The type of record format.
|
|
8067
8067
|
: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.
|
|
@@ -8392,7 +8392,7 @@ class CfnApplicationV2(
|
|
|
8392
8392
|
*,
|
|
8393
8393
|
inputs: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationV2.InputProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
8394
8394
|
) -> None:
|
|
8395
|
-
'''Describes the inputs, outputs, and reference data sources for a SQL-based
|
|
8395
|
+
'''Describes the inputs, outputs, and reference data sources for a SQL-based Kinesis Data Analytics application.
|
|
8396
8396
|
|
|
8397
8397
|
: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.
|
|
8398
8398
|
|