aws-cdk-lib 2.215.0__py3-none-any.whl → 2.217.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 +90 -58
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.215.0.jsii.tgz → aws-cdk-lib@2.217.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amplify/__init__.py +8 -8
- aws_cdk/aws_apigateway/__init__.py +26 -6
- aws_cdk/aws_apigatewayv2/__init__.py +32 -21
- aws_cdk/aws_appmesh/__init__.py +12 -12
- aws_cdk/aws_appstream/__init__.py +14 -4
- aws_cdk/aws_appsync/__init__.py +3 -3
- aws_cdk/aws_aps/__init__.py +459 -0
- aws_cdk/aws_batch/__init__.py +6 -2
- aws_cdk/aws_bedrock/__init__.py +162 -0
- aws_cdk/aws_bedrockagentcore/__init__.py +3178 -0
- aws_cdk/aws_certificatemanager/__init__.py +9 -10
- aws_cdk/aws_cleanrooms/__init__.py +163 -0
- aws_cdk/aws_cloudformation/__init__.py +14 -14
- aws_cdk/aws_cloudfront/__init__.py +91 -10
- aws_cdk/aws_cloudfront_origins/__init__.py +422 -47
- aws_cdk/aws_cognito/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +138 -10
- aws_cdk/aws_cur/__init__.py +57 -3
- aws_cdk/aws_datasync/__init__.py +351 -0
- aws_cdk/aws_datazone/__init__.py +675 -2
- aws_cdk/aws_dynamodb/__init__.py +123 -0
- aws_cdk/aws_ec2/__init__.py +55 -10
- aws_cdk/aws_ecr/__init__.py +4 -0
- aws_cdk/aws_ecs/__init__.py +55 -12
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +275 -0
- aws_cdk/aws_elasticsearch/__init__.py +2 -2
- aws_cdk/aws_events/__init__.py +187 -0
- aws_cdk/aws_evs/__init__.py +58 -4
- aws_cdk/aws_gamelift/__init__.py +72 -56
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iotcoredeviceadvisor/__init__.py +35 -38
- aws_cdk/aws_iotsitewise/__init__.py +75 -111
- aws_cdk/aws_kinesisanalytics/__init__.py +315 -125
- aws_cdk/aws_kms/__init__.py +10 -2
- aws_cdk/aws_lambda/__init__.py +62 -8
- aws_cdk/aws_medialive/__init__.py +127 -0
- aws_cdk/aws_mediapackage/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +10 -10
- aws_cdk/aws_networkmanager/__init__.py +63 -0
- aws_cdk/aws_odb/__init__.py +2082 -195
- aws_cdk/aws_omics/__init__.py +1414 -171
- aws_cdk/aws_opensearchserverless/__init__.py +164 -21
- aws_cdk/aws_opensearchservice/__init__.py +5 -4
- aws_cdk/aws_pcs/__init__.py +9 -9
- aws_cdk/aws_quicksight/__init__.py +295 -3
- aws_cdk/aws_rds/__init__.py +338 -58
- aws_cdk/aws_route53/__init__.py +5926 -4376
- aws_cdk/aws_sagemaker/__init__.py +251 -1
- aws_cdk/aws_servicecatalog/__init__.py +162 -154
- aws_cdk/aws_smsvoice/__init__.py +5218 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +669 -81
- aws_cdk/aws_transfer/__init__.py +13 -12
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -1
- aws_cdk/aws_workspacesinstances/__init__.py +641 -2
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/RECORD +64 -62
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/top_level.txt +0 -0
|
@@ -82,10 +82,13 @@ class ApplicationCloudWatchLoggingOptionV2Reference:
|
|
|
82
82
|
*,
|
|
83
83
|
application_cloud_watch_logging_option_id: builtins.str,
|
|
84
84
|
) -> None:
|
|
85
|
-
'''A reference to a ApplicationCloudWatchLoggingOption resource.
|
|
85
|
+
'''(deprecated) A reference to a ApplicationCloudWatchLoggingOption resource.
|
|
86
86
|
|
|
87
|
-
:param application_cloud_watch_logging_option_id: The Id of the ApplicationCloudWatchLoggingOption resource.
|
|
87
|
+
:param application_cloud_watch_logging_option_id: (deprecated) The Id of the ApplicationCloudWatchLoggingOption resource.
|
|
88
88
|
|
|
89
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
90
|
+
|
|
91
|
+
:stability: deprecated
|
|
89
92
|
:exampleMetadata: fixture=_generated
|
|
90
93
|
|
|
91
94
|
Example::
|
|
@@ -107,7 +110,10 @@ class ApplicationCloudWatchLoggingOptionV2Reference:
|
|
|
107
110
|
|
|
108
111
|
@builtins.property
|
|
109
112
|
def application_cloud_watch_logging_option_id(self) -> builtins.str:
|
|
110
|
-
'''The Id of the ApplicationCloudWatchLoggingOption resource.
|
|
113
|
+
'''(deprecated) The Id of the ApplicationCloudWatchLoggingOption resource.
|
|
114
|
+
|
|
115
|
+
:stability: deprecated
|
|
116
|
+
'''
|
|
111
117
|
result = self._values.get("application_cloud_watch_logging_option_id")
|
|
112
118
|
assert result is not None, "Required property 'application_cloud_watch_logging_option_id' is missing"
|
|
113
119
|
return typing.cast(builtins.str, result)
|
|
@@ -180,10 +186,13 @@ class ApplicationOutputReference:
|
|
|
180
186
|
)
|
|
181
187
|
class ApplicationOutputV2Reference:
|
|
182
188
|
def __init__(self, *, application_output_id: builtins.str) -> None:
|
|
183
|
-
'''A reference to a ApplicationOutput resource.
|
|
189
|
+
'''(deprecated) A reference to a ApplicationOutput resource.
|
|
184
190
|
|
|
185
|
-
:param application_output_id: The Id of the ApplicationOutput resource.
|
|
191
|
+
:param application_output_id: (deprecated) The Id of the ApplicationOutput resource.
|
|
186
192
|
|
|
193
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
194
|
+
|
|
195
|
+
:stability: deprecated
|
|
187
196
|
:exampleMetadata: fixture=_generated
|
|
188
197
|
|
|
189
198
|
Example::
|
|
@@ -205,7 +214,10 @@ class ApplicationOutputV2Reference:
|
|
|
205
214
|
|
|
206
215
|
@builtins.property
|
|
207
216
|
def application_output_id(self) -> builtins.str:
|
|
208
|
-
'''The Id of the ApplicationOutput resource.
|
|
217
|
+
'''(deprecated) The Id of the ApplicationOutput resource.
|
|
218
|
+
|
|
219
|
+
:stability: deprecated
|
|
220
|
+
'''
|
|
209
221
|
result = self._values.get("application_output_id")
|
|
210
222
|
assert result is not None, "Required property 'application_output_id' is missing"
|
|
211
223
|
return typing.cast(builtins.str, result)
|
|
@@ -331,10 +343,13 @@ class ApplicationReferenceDataSourceReference:
|
|
|
331
343
|
)
|
|
332
344
|
class ApplicationReferenceDataSourceV2Reference:
|
|
333
345
|
def __init__(self, *, application_reference_data_source_id: builtins.str) -> None:
|
|
334
|
-
'''A reference to a ApplicationReferenceDataSource resource.
|
|
346
|
+
'''(deprecated) A reference to a ApplicationReferenceDataSource resource.
|
|
335
347
|
|
|
336
|
-
:param application_reference_data_source_id: The Id of the ApplicationReferenceDataSource resource.
|
|
348
|
+
:param application_reference_data_source_id: (deprecated) The Id of the ApplicationReferenceDataSource resource.
|
|
349
|
+
|
|
350
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
337
351
|
|
|
352
|
+
:stability: deprecated
|
|
338
353
|
:exampleMetadata: fixture=_generated
|
|
339
354
|
|
|
340
355
|
Example::
|
|
@@ -356,7 +371,10 @@ class ApplicationReferenceDataSourceV2Reference:
|
|
|
356
371
|
|
|
357
372
|
@builtins.property
|
|
358
373
|
def application_reference_data_source_id(self) -> builtins.str:
|
|
359
|
-
'''The Id of the ApplicationReferenceDataSource resource.
|
|
374
|
+
'''(deprecated) The Id of the ApplicationReferenceDataSource resource.
|
|
375
|
+
|
|
376
|
+
:stability: deprecated
|
|
377
|
+
'''
|
|
360
378
|
result = self._values.get("application_reference_data_source_id")
|
|
361
379
|
assert result is not None, "Required property 'application_reference_data_source_id' is missing"
|
|
362
380
|
return typing.cast(builtins.str, result)
|
|
@@ -380,10 +398,13 @@ class ApplicationReferenceDataSourceV2Reference:
|
|
|
380
398
|
)
|
|
381
399
|
class ApplicationV2Reference:
|
|
382
400
|
def __init__(self, *, application_name: builtins.str) -> None:
|
|
383
|
-
'''A reference to a Application resource.
|
|
401
|
+
'''(deprecated) A reference to a Application resource.
|
|
384
402
|
|
|
385
|
-
:param application_name: The ApplicationName of the Application resource.
|
|
403
|
+
:param application_name: (deprecated) The ApplicationName of the Application resource.
|
|
386
404
|
|
|
405
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
406
|
+
|
|
407
|
+
:stability: deprecated
|
|
387
408
|
:exampleMetadata: fixture=_generated
|
|
388
409
|
|
|
389
410
|
Example::
|
|
@@ -405,7 +426,10 @@ class ApplicationV2Reference:
|
|
|
405
426
|
|
|
406
427
|
@builtins.property
|
|
407
428
|
def application_name(self) -> builtins.str:
|
|
408
|
-
'''The ApplicationName of the Application resource.
|
|
429
|
+
'''(deprecated) The ApplicationName of the Application resource.
|
|
430
|
+
|
|
431
|
+
:stability: deprecated
|
|
432
|
+
'''
|
|
409
433
|
result = self._values.get("application_name")
|
|
410
434
|
assert result is not None, "Required property 'application_name' is missing"
|
|
411
435
|
return typing.cast(builtins.str, result)
|
|
@@ -437,12 +461,15 @@ class CfnApplicationCloudWatchLoggingOptionV2Props:
|
|
|
437
461
|
application_name: builtins.str,
|
|
438
462
|
cloud_watch_logging_option: typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationCloudWatchLoggingOptionV2.CloudWatchLoggingOptionProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
439
463
|
) -> None:
|
|
440
|
-
'''Properties for defining a ``CfnApplicationCloudWatchLoggingOption``.
|
|
464
|
+
'''(deprecated) Properties for defining a ``CfnApplicationCloudWatchLoggingOption``.
|
|
465
|
+
|
|
466
|
+
:param application_name: (deprecated) The name of the application.
|
|
467
|
+
:param cloud_watch_logging_option: (deprecated) Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).
|
|
441
468
|
|
|
442
|
-
:
|
|
443
|
-
:param cloud_watch_logging_option: Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).
|
|
469
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
444
470
|
|
|
445
471
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html
|
|
472
|
+
:stability: deprecated
|
|
446
473
|
:exampleMetadata: fixture=_generated
|
|
447
474
|
|
|
448
475
|
Example::
|
|
@@ -469,9 +496,10 @@ class CfnApplicationCloudWatchLoggingOptionV2Props:
|
|
|
469
496
|
|
|
470
497
|
@builtins.property
|
|
471
498
|
def application_name(self) -> builtins.str:
|
|
472
|
-
'''The name of the application.
|
|
499
|
+
'''(deprecated) The name of the application.
|
|
473
500
|
|
|
474
501
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-applicationname
|
|
502
|
+
:stability: deprecated
|
|
475
503
|
'''
|
|
476
504
|
result = self._values.get("application_name")
|
|
477
505
|
assert result is not None, "Required property 'application_name' is missing"
|
|
@@ -481,9 +509,10 @@ class CfnApplicationCloudWatchLoggingOptionV2Props:
|
|
|
481
509
|
def cloud_watch_logging_option(
|
|
482
510
|
self,
|
|
483
511
|
) -> typing.Union[_IResolvable_da3f097b, "CfnApplicationCloudWatchLoggingOptionV2.CloudWatchLoggingOptionProperty"]:
|
|
484
|
-
'''Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).
|
|
512
|
+
'''(deprecated) Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).
|
|
485
513
|
|
|
486
514
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html#cfn-kinesisanalyticsv2-applicationcloudwatchloggingoption-cloudwatchloggingoption
|
|
515
|
+
:stability: deprecated
|
|
487
516
|
'''
|
|
488
517
|
result = self._values.get("cloud_watch_logging_option")
|
|
489
518
|
assert result is not None, "Required property 'cloud_watch_logging_option' is missing"
|
|
@@ -608,12 +637,15 @@ class CfnApplicationOutputV2Props:
|
|
|
608
637
|
application_name: builtins.str,
|
|
609
638
|
output: typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationOutputV2.OutputProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
610
639
|
) -> None:
|
|
611
|
-
'''Properties for defining a ``CfnApplicationOutput``.
|
|
640
|
+
'''(deprecated) Properties for defining a ``CfnApplicationOutput``.
|
|
612
641
|
|
|
613
|
-
:param application_name: The name of the application.
|
|
614
|
-
: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.
|
|
642
|
+
:param application_name: (deprecated) The name of the application.
|
|
643
|
+
:param output: (deprecated) 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.
|
|
644
|
+
|
|
645
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
615
646
|
|
|
616
647
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html
|
|
648
|
+
:stability: deprecated
|
|
617
649
|
:exampleMetadata: fixture=_generated
|
|
618
650
|
|
|
619
651
|
Example::
|
|
@@ -654,9 +686,10 @@ class CfnApplicationOutputV2Props:
|
|
|
654
686
|
|
|
655
687
|
@builtins.property
|
|
656
688
|
def application_name(self) -> builtins.str:
|
|
657
|
-
'''The name of the application.
|
|
689
|
+
'''(deprecated) The name of the application.
|
|
658
690
|
|
|
659
691
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-applicationname
|
|
692
|
+
:stability: deprecated
|
|
660
693
|
'''
|
|
661
694
|
result = self._values.get("application_name")
|
|
662
695
|
assert result is not None, "Required property 'application_name' is missing"
|
|
@@ -666,11 +699,12 @@ class CfnApplicationOutputV2Props:
|
|
|
666
699
|
def output(
|
|
667
700
|
self,
|
|
668
701
|
) -> typing.Union[_IResolvable_da3f097b, "CfnApplicationOutputV2.OutputProperty"]:
|
|
669
|
-
'''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.
|
|
702
|
+
'''(deprecated) 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.
|
|
670
703
|
|
|
671
704
|
The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
|
|
672
705
|
|
|
673
706
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html#cfn-kinesisanalyticsv2-applicationoutput-output
|
|
707
|
+
:stability: deprecated
|
|
674
708
|
'''
|
|
675
709
|
result = self._values.get("output")
|
|
676
710
|
assert result is not None, "Required property 'output' is missing"
|
|
@@ -987,12 +1021,15 @@ class CfnApplicationReferenceDataSourceV2Props:
|
|
|
987
1021
|
application_name: builtins.str,
|
|
988
1022
|
reference_data_source: typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
989
1023
|
) -> None:
|
|
990
|
-
'''Properties for defining a ``CfnApplicationReferenceDataSource``.
|
|
1024
|
+
'''(deprecated) Properties for defining a ``CfnApplicationReferenceDataSource``.
|
|
991
1025
|
|
|
992
|
-
:param application_name: The name of the application.
|
|
993
|
-
: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.
|
|
1026
|
+
:param application_name: (deprecated) The name of the application.
|
|
1027
|
+
:param reference_data_source: (deprecated) 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.
|
|
1028
|
+
|
|
1029
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
994
1030
|
|
|
995
1031
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html
|
|
1032
|
+
:stability: deprecated
|
|
996
1033
|
:exampleMetadata: fixture=_generated
|
|
997
1034
|
|
|
998
1035
|
Example::
|
|
@@ -1051,9 +1088,10 @@ class CfnApplicationReferenceDataSourceV2Props:
|
|
|
1051
1088
|
|
|
1052
1089
|
@builtins.property
|
|
1053
1090
|
def application_name(self) -> builtins.str:
|
|
1054
|
-
'''The name of the application.
|
|
1091
|
+
'''(deprecated) The name of the application.
|
|
1055
1092
|
|
|
1056
1093
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-applicationname
|
|
1094
|
+
:stability: deprecated
|
|
1057
1095
|
'''
|
|
1058
1096
|
result = self._values.get("application_name")
|
|
1059
1097
|
assert result is not None, "Required property 'application_name' is missing"
|
|
@@ -1063,9 +1101,10 @@ class CfnApplicationReferenceDataSourceV2Props:
|
|
|
1063
1101
|
def reference_data_source(
|
|
1064
1102
|
self,
|
|
1065
1103
|
) -> typing.Union[_IResolvable_da3f097b, "CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty"]:
|
|
1066
|
-
'''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.
|
|
1104
|
+
'''(deprecated) 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.
|
|
1067
1105
|
|
|
1068
1106
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html#cfn-kinesisanalyticsv2-applicationreferencedatasource-referencedatasource
|
|
1107
|
+
:stability: deprecated
|
|
1069
1108
|
'''
|
|
1070
1109
|
result = self._values.get("reference_data_source")
|
|
1071
1110
|
assert result is not None, "Required property 'reference_data_source' is missing"
|
|
@@ -1112,19 +1151,22 @@ class CfnApplicationV2Props:
|
|
|
1112
1151
|
run_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnApplicationV2.RunConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1113
1152
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1114
1153
|
) -> None:
|
|
1115
|
-
'''Properties for defining a ``CfnApplication``.
|
|
1154
|
+
'''(deprecated) Properties for defining a ``CfnApplication``.
|
|
1116
1155
|
|
|
1117
|
-
:param runtime_environment: The runtime environment for the application.
|
|
1118
|
-
:param service_execution_role: Specifies the IAM role that the application uses to access external resources.
|
|
1119
|
-
:param application_configuration: Use this parameter to configure the application.
|
|
1120
|
-
:param application_description: The description of the application. Default: - ""
|
|
1121
|
-
:param application_maintenance_configuration: Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
1122
|
-
:param application_mode: To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
|
|
1123
|
-
:param application_name: The name of the application.
|
|
1124
|
-
:param run_configuration: Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
1125
|
-
:param tags: A list of one or more tags to assign to the application. A tag is a key-value pair that identifies an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.
|
|
1156
|
+
:param runtime_environment: (deprecated) The runtime environment for the application.
|
|
1157
|
+
:param service_execution_role: (deprecated) Specifies the IAM role that the application uses to access external resources.
|
|
1158
|
+
:param application_configuration: (deprecated) Use this parameter to configure the application.
|
|
1159
|
+
:param application_description: (deprecated) The description of the application. Default: - ""
|
|
1160
|
+
:param application_maintenance_configuration: (deprecated) Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
1161
|
+
:param application_mode: (deprecated) To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
|
|
1162
|
+
:param application_name: (deprecated) The name of the application.
|
|
1163
|
+
:param run_configuration: (deprecated) Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
1164
|
+
:param tags: (deprecated) A list of one or more tags to assign to the application. A tag is a key-value pair that identifies an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.
|
|
1165
|
+
|
|
1166
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
1126
1167
|
|
|
1127
1168
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html
|
|
1169
|
+
:stability: deprecated
|
|
1128
1170
|
:exampleMetadata: fixture=_generated
|
|
1129
1171
|
|
|
1130
1172
|
Example::
|
|
@@ -1340,9 +1382,10 @@ class CfnApplicationV2Props:
|
|
|
1340
1382
|
|
|
1341
1383
|
@builtins.property
|
|
1342
1384
|
def runtime_environment(self) -> builtins.str:
|
|
1343
|
-
'''The runtime environment for the application.
|
|
1385
|
+
'''(deprecated) The runtime environment for the application.
|
|
1344
1386
|
|
|
1345
1387
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runtimeenvironment
|
|
1388
|
+
:stability: deprecated
|
|
1346
1389
|
'''
|
|
1347
1390
|
result = self._values.get("runtime_environment")
|
|
1348
1391
|
assert result is not None, "Required property 'runtime_environment' is missing"
|
|
@@ -1350,9 +1393,10 @@ class CfnApplicationV2Props:
|
|
|
1350
1393
|
|
|
1351
1394
|
@builtins.property
|
|
1352
1395
|
def service_execution_role(self) -> builtins.str:
|
|
1353
|
-
'''Specifies the IAM role that the application uses to access external resources.
|
|
1396
|
+
'''(deprecated) Specifies the IAM role that the application uses to access external resources.
|
|
1354
1397
|
|
|
1355
1398
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-serviceexecutionrole
|
|
1399
|
+
:stability: deprecated
|
|
1356
1400
|
'''
|
|
1357
1401
|
result = self._values.get("service_execution_role")
|
|
1358
1402
|
assert result is not None, "Required property 'service_execution_role' is missing"
|
|
@@ -1362,20 +1406,22 @@ class CfnApplicationV2Props:
|
|
|
1362
1406
|
def application_configuration(
|
|
1363
1407
|
self,
|
|
1364
1408
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationConfigurationProperty"]]:
|
|
1365
|
-
'''Use this parameter to configure the application.
|
|
1409
|
+
'''(deprecated) Use this parameter to configure the application.
|
|
1366
1410
|
|
|
1367
1411
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationconfiguration
|
|
1412
|
+
:stability: deprecated
|
|
1368
1413
|
'''
|
|
1369
1414
|
result = self._values.get("application_configuration")
|
|
1370
1415
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationConfigurationProperty"]], result)
|
|
1371
1416
|
|
|
1372
1417
|
@builtins.property
|
|
1373
1418
|
def application_description(self) -> typing.Optional[builtins.str]:
|
|
1374
|
-
'''The description of the application.
|
|
1419
|
+
'''(deprecated) The description of the application.
|
|
1375
1420
|
|
|
1376
1421
|
:default: - ""
|
|
1377
1422
|
|
|
1378
1423
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationdescription
|
|
1424
|
+
:stability: deprecated
|
|
1379
1425
|
'''
|
|
1380
1426
|
result = self._values.get("application_description")
|
|
1381
1427
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
@@ -1384,29 +1430,32 @@ class CfnApplicationV2Props:
|
|
|
1384
1430
|
def application_maintenance_configuration(
|
|
1385
1431
|
self,
|
|
1386
1432
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationMaintenanceConfigurationProperty"]]:
|
|
1387
|
-
'''Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
1433
|
+
'''(deprecated) Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
1388
1434
|
|
|
1389
1435
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationmaintenanceconfiguration
|
|
1436
|
+
:stability: deprecated
|
|
1390
1437
|
'''
|
|
1391
1438
|
result = self._values.get("application_maintenance_configuration")
|
|
1392
1439
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationMaintenanceConfigurationProperty"]], result)
|
|
1393
1440
|
|
|
1394
1441
|
@builtins.property
|
|
1395
1442
|
def application_mode(self) -> typing.Optional[builtins.str]:
|
|
1396
|
-
'''To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` .
|
|
1443
|
+
'''(deprecated) To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` .
|
|
1397
1444
|
|
|
1398
1445
|
However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
|
|
1399
1446
|
|
|
1400
1447
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationmode
|
|
1448
|
+
:stability: deprecated
|
|
1401
1449
|
'''
|
|
1402
1450
|
result = self._values.get("application_mode")
|
|
1403
1451
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1404
1452
|
|
|
1405
1453
|
@builtins.property
|
|
1406
1454
|
def application_name(self) -> typing.Optional[builtins.str]:
|
|
1407
|
-
'''The name of the application.
|
|
1455
|
+
'''(deprecated) The name of the application.
|
|
1408
1456
|
|
|
1409
1457
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-applicationname
|
|
1458
|
+
:stability: deprecated
|
|
1410
1459
|
'''
|
|
1411
1460
|
result = self._values.get("application_name")
|
|
1412
1461
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
@@ -1415,20 +1464,22 @@ class CfnApplicationV2Props:
|
|
|
1415
1464
|
def run_configuration(
|
|
1416
1465
|
self,
|
|
1417
1466
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.RunConfigurationProperty"]]:
|
|
1418
|
-
'''Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
1467
|
+
'''(deprecated) Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
1419
1468
|
|
|
1420
1469
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-runconfiguration
|
|
1470
|
+
:stability: deprecated
|
|
1421
1471
|
'''
|
|
1422
1472
|
result = self._values.get("run_configuration")
|
|
1423
1473
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.RunConfigurationProperty"]], result)
|
|
1424
1474
|
|
|
1425
1475
|
@builtins.property
|
|
1426
1476
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1427
|
-
'''A list of one or more tags to assign to the application.
|
|
1477
|
+
'''(deprecated) A list of one or more tags to assign to the application.
|
|
1428
1478
|
|
|
1429
1479
|
A tag is a key-value pair that identifies an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.
|
|
1430
1480
|
|
|
1431
1481
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#cfn-kinesisanalyticsv2-application-tags
|
|
1482
|
+
:stability: deprecated
|
|
1432
1483
|
'''
|
|
1433
1484
|
result = self._values.get("tags")
|
|
1434
1485
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
@@ -1452,9 +1503,11 @@ class IApplicationCloudWatchLoggingOptionV2Ref(
|
|
|
1452
1503
|
_constructs_77d1e7e8.IConstruct,
|
|
1453
1504
|
typing_extensions.Protocol,
|
|
1454
1505
|
):
|
|
1455
|
-
'''(
|
|
1506
|
+
'''(deprecated) Indicates that this resource can be referenced as a ApplicationCloudWatchLoggingOption.
|
|
1456
1507
|
|
|
1457
|
-
:
|
|
1508
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
1509
|
+
|
|
1510
|
+
:stability: deprecated
|
|
1458
1511
|
'''
|
|
1459
1512
|
|
|
1460
1513
|
@builtins.property
|
|
@@ -1462,9 +1515,9 @@ class IApplicationCloudWatchLoggingOptionV2Ref(
|
|
|
1462
1515
|
def application_cloud_watch_logging_option_ref(
|
|
1463
1516
|
self,
|
|
1464
1517
|
) -> ApplicationCloudWatchLoggingOptionV2Reference:
|
|
1465
|
-
'''(
|
|
1518
|
+
'''(deprecated) A reference to a ApplicationCloudWatchLoggingOption resource.
|
|
1466
1519
|
|
|
1467
|
-
:stability:
|
|
1520
|
+
:stability: deprecated
|
|
1468
1521
|
'''
|
|
1469
1522
|
...
|
|
1470
1523
|
|
|
@@ -1472,9 +1525,11 @@ class IApplicationCloudWatchLoggingOptionV2Ref(
|
|
|
1472
1525
|
class _IApplicationCloudWatchLoggingOptionV2RefProxy(
|
|
1473
1526
|
jsii.proxy_for(_constructs_77d1e7e8.IConstruct), # type: ignore[misc]
|
|
1474
1527
|
):
|
|
1475
|
-
'''(
|
|
1528
|
+
'''(deprecated) Indicates that this resource can be referenced as a ApplicationCloudWatchLoggingOption.
|
|
1476
1529
|
|
|
1477
|
-
:
|
|
1530
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
1531
|
+
|
|
1532
|
+
:stability: deprecated
|
|
1478
1533
|
'''
|
|
1479
1534
|
|
|
1480
1535
|
__jsii_type__: typing.ClassVar[str] = "aws-cdk-lib.aws_kinesisanalytics.IApplicationCloudWatchLoggingOptionV2Ref"
|
|
@@ -1484,9 +1539,9 @@ class _IApplicationCloudWatchLoggingOptionV2RefProxy(
|
|
|
1484
1539
|
def application_cloud_watch_logging_option_ref(
|
|
1485
1540
|
self,
|
|
1486
1541
|
) -> ApplicationCloudWatchLoggingOptionV2Reference:
|
|
1487
|
-
'''(
|
|
1542
|
+
'''(deprecated) A reference to a ApplicationCloudWatchLoggingOption resource.
|
|
1488
1543
|
|
|
1489
|
-
:stability:
|
|
1544
|
+
:stability: deprecated
|
|
1490
1545
|
'''
|
|
1491
1546
|
return typing.cast(ApplicationCloudWatchLoggingOptionV2Reference, jsii.get(self, "applicationCloudWatchLoggingOptionRef"))
|
|
1492
1547
|
|
|
@@ -1542,17 +1597,19 @@ class IApplicationOutputV2Ref(
|
|
|
1542
1597
|
_constructs_77d1e7e8.IConstruct,
|
|
1543
1598
|
typing_extensions.Protocol,
|
|
1544
1599
|
):
|
|
1545
|
-
'''(
|
|
1600
|
+
'''(deprecated) Indicates that this resource can be referenced as a ApplicationOutput.
|
|
1546
1601
|
|
|
1547
|
-
:
|
|
1602
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
1603
|
+
|
|
1604
|
+
:stability: deprecated
|
|
1548
1605
|
'''
|
|
1549
1606
|
|
|
1550
1607
|
@builtins.property
|
|
1551
1608
|
@jsii.member(jsii_name="applicationOutputRef")
|
|
1552
1609
|
def application_output_ref(self) -> ApplicationOutputV2Reference:
|
|
1553
|
-
'''(
|
|
1610
|
+
'''(deprecated) A reference to a ApplicationOutput resource.
|
|
1554
1611
|
|
|
1555
|
-
:stability:
|
|
1612
|
+
:stability: deprecated
|
|
1556
1613
|
'''
|
|
1557
1614
|
...
|
|
1558
1615
|
|
|
@@ -1560,9 +1617,11 @@ class IApplicationOutputV2Ref(
|
|
|
1560
1617
|
class _IApplicationOutputV2RefProxy(
|
|
1561
1618
|
jsii.proxy_for(_constructs_77d1e7e8.IConstruct), # type: ignore[misc]
|
|
1562
1619
|
):
|
|
1563
|
-
'''(
|
|
1620
|
+
'''(deprecated) Indicates that this resource can be referenced as a ApplicationOutput.
|
|
1564
1621
|
|
|
1565
|
-
:
|
|
1622
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
1623
|
+
|
|
1624
|
+
:stability: deprecated
|
|
1566
1625
|
'''
|
|
1567
1626
|
|
|
1568
1627
|
__jsii_type__: typing.ClassVar[str] = "aws-cdk-lib.aws_kinesisanalytics.IApplicationOutputV2Ref"
|
|
@@ -1570,9 +1629,9 @@ class _IApplicationOutputV2RefProxy(
|
|
|
1570
1629
|
@builtins.property
|
|
1571
1630
|
@jsii.member(jsii_name="applicationOutputRef")
|
|
1572
1631
|
def application_output_ref(self) -> ApplicationOutputV2Reference:
|
|
1573
|
-
'''(
|
|
1632
|
+
'''(deprecated) A reference to a ApplicationOutput resource.
|
|
1574
1633
|
|
|
1575
|
-
:stability:
|
|
1634
|
+
:stability: deprecated
|
|
1576
1635
|
'''
|
|
1577
1636
|
return typing.cast(ApplicationOutputV2Reference, jsii.get(self, "applicationOutputRef"))
|
|
1578
1637
|
|
|
@@ -1676,9 +1735,11 @@ class IApplicationReferenceDataSourceV2Ref(
|
|
|
1676
1735
|
_constructs_77d1e7e8.IConstruct,
|
|
1677
1736
|
typing_extensions.Protocol,
|
|
1678
1737
|
):
|
|
1679
|
-
'''(
|
|
1738
|
+
'''(deprecated) Indicates that this resource can be referenced as a ApplicationReferenceDataSource.
|
|
1680
1739
|
|
|
1681
|
-
:
|
|
1740
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
1741
|
+
|
|
1742
|
+
:stability: deprecated
|
|
1682
1743
|
'''
|
|
1683
1744
|
|
|
1684
1745
|
@builtins.property
|
|
@@ -1686,9 +1747,9 @@ class IApplicationReferenceDataSourceV2Ref(
|
|
|
1686
1747
|
def application_reference_data_source_ref(
|
|
1687
1748
|
self,
|
|
1688
1749
|
) -> ApplicationReferenceDataSourceV2Reference:
|
|
1689
|
-
'''(
|
|
1750
|
+
'''(deprecated) A reference to a ApplicationReferenceDataSource resource.
|
|
1690
1751
|
|
|
1691
|
-
:stability:
|
|
1752
|
+
:stability: deprecated
|
|
1692
1753
|
'''
|
|
1693
1754
|
...
|
|
1694
1755
|
|
|
@@ -1696,9 +1757,11 @@ class IApplicationReferenceDataSourceV2Ref(
|
|
|
1696
1757
|
class _IApplicationReferenceDataSourceV2RefProxy(
|
|
1697
1758
|
jsii.proxy_for(_constructs_77d1e7e8.IConstruct), # type: ignore[misc]
|
|
1698
1759
|
):
|
|
1699
|
-
'''(
|
|
1760
|
+
'''(deprecated) Indicates that this resource can be referenced as a ApplicationReferenceDataSource.
|
|
1700
1761
|
|
|
1701
|
-
:
|
|
1762
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
1763
|
+
|
|
1764
|
+
:stability: deprecated
|
|
1702
1765
|
'''
|
|
1703
1766
|
|
|
1704
1767
|
__jsii_type__: typing.ClassVar[str] = "aws-cdk-lib.aws_kinesisanalytics.IApplicationReferenceDataSourceV2Ref"
|
|
@@ -1708,9 +1771,9 @@ class _IApplicationReferenceDataSourceV2RefProxy(
|
|
|
1708
1771
|
def application_reference_data_source_ref(
|
|
1709
1772
|
self,
|
|
1710
1773
|
) -> ApplicationReferenceDataSourceV2Reference:
|
|
1711
|
-
'''(
|
|
1774
|
+
'''(deprecated) A reference to a ApplicationReferenceDataSource resource.
|
|
1712
1775
|
|
|
1713
|
-
:stability:
|
|
1776
|
+
:stability: deprecated
|
|
1714
1777
|
'''
|
|
1715
1778
|
return typing.cast(ApplicationReferenceDataSourceV2Reference, jsii.get(self, "applicationReferenceDataSourceRef"))
|
|
1716
1779
|
|
|
@@ -1720,17 +1783,19 @@ typing.cast(typing.Any, IApplicationReferenceDataSourceV2Ref).__jsii_proxy_class
|
|
|
1720
1783
|
|
|
1721
1784
|
@jsii.interface(jsii_type="aws-cdk-lib.aws_kinesisanalytics.IApplicationV2Ref")
|
|
1722
1785
|
class IApplicationV2Ref(_constructs_77d1e7e8.IConstruct, typing_extensions.Protocol):
|
|
1723
|
-
'''(
|
|
1786
|
+
'''(deprecated) Indicates that this resource can be referenced as a Application.
|
|
1724
1787
|
|
|
1725
|
-
:
|
|
1788
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
1789
|
+
|
|
1790
|
+
:stability: deprecated
|
|
1726
1791
|
'''
|
|
1727
1792
|
|
|
1728
1793
|
@builtins.property
|
|
1729
1794
|
@jsii.member(jsii_name="applicationRef")
|
|
1730
1795
|
def application_ref(self) -> ApplicationV2Reference:
|
|
1731
|
-
'''(
|
|
1796
|
+
'''(deprecated) A reference to a Application resource.
|
|
1732
1797
|
|
|
1733
|
-
:stability:
|
|
1798
|
+
:stability: deprecated
|
|
1734
1799
|
'''
|
|
1735
1800
|
...
|
|
1736
1801
|
|
|
@@ -1738,9 +1803,11 @@ class IApplicationV2Ref(_constructs_77d1e7e8.IConstruct, typing_extensions.Proto
|
|
|
1738
1803
|
class _IApplicationV2RefProxy(
|
|
1739
1804
|
jsii.proxy_for(_constructs_77d1e7e8.IConstruct), # type: ignore[misc]
|
|
1740
1805
|
):
|
|
1741
|
-
'''(
|
|
1806
|
+
'''(deprecated) Indicates that this resource can be referenced as a Application.
|
|
1742
1807
|
|
|
1743
|
-
:
|
|
1808
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
1809
|
+
|
|
1810
|
+
:stability: deprecated
|
|
1744
1811
|
'''
|
|
1745
1812
|
|
|
1746
1813
|
__jsii_type__: typing.ClassVar[str] = "aws-cdk-lib.aws_kinesisanalytics.IApplicationV2Ref"
|
|
@@ -1748,9 +1815,9 @@ class _IApplicationV2RefProxy(
|
|
|
1748
1815
|
@builtins.property
|
|
1749
1816
|
@jsii.member(jsii_name="applicationRef")
|
|
1750
1817
|
def application_ref(self) -> ApplicationV2Reference:
|
|
1751
|
-
'''(
|
|
1818
|
+
'''(deprecated) A reference to a Application resource.
|
|
1752
1819
|
|
|
1753
|
-
:stability:
|
|
1820
|
+
:stability: deprecated
|
|
1754
1821
|
'''
|
|
1755
1822
|
return typing.cast(ApplicationV2Reference, jsii.get(self, "applicationRef"))
|
|
1756
1823
|
|
|
@@ -3038,13 +3105,16 @@ class CfnApplicationCloudWatchLoggingOptionV2(
|
|
|
3038
3105
|
metaclass=jsii.JSIIMeta,
|
|
3039
3106
|
jsii_type="aws-cdk-lib.aws_kinesisanalytics.CfnApplicationCloudWatchLoggingOptionV2",
|
|
3040
3107
|
):
|
|
3041
|
-
'''Adds an Amazon CloudWatch log stream to monitor application configuration errors.
|
|
3108
|
+
'''(deprecated) Adds an Amazon CloudWatch log stream to monitor application configuration errors.
|
|
3042
3109
|
|
|
3043
3110
|
.. epigraph::
|
|
3044
3111
|
|
|
3045
3112
|
Only one *ApplicationCloudWatchLoggingOption* resource can be attached per application.
|
|
3046
3113
|
|
|
3114
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
3115
|
+
|
|
3047
3116
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationcloudwatchloggingoption.html
|
|
3117
|
+
:stability: deprecated
|
|
3048
3118
|
:cloudformationResource: AWS::KinesisAnalyticsV2::ApplicationCloudWatchLoggingOption
|
|
3049
3119
|
:exampleMetadata: fixture=_generated
|
|
3050
3120
|
|
|
@@ -3073,8 +3143,10 @@ class CfnApplicationCloudWatchLoggingOptionV2(
|
|
|
3073
3143
|
'''
|
|
3074
3144
|
:param scope: Scope in which this resource is defined.
|
|
3075
3145
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3076
|
-
:param application_name: The name of the application.
|
|
3077
|
-
:param cloud_watch_logging_option: Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).
|
|
3146
|
+
:param application_name: (deprecated) The name of the application.
|
|
3147
|
+
:param cloud_watch_logging_option: (deprecated) Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).
|
|
3148
|
+
|
|
3149
|
+
:stability: deprecated
|
|
3078
3150
|
'''
|
|
3079
3151
|
if __debug__:
|
|
3080
3152
|
type_hints = typing.get_type_hints(_typecheckingstub__fdc9aaec6fa4f65f6738e4e1aaee7e90800e37a93c5aa29ea0f7f9fc3ea7a8dd)
|
|
@@ -3089,9 +3161,11 @@ class CfnApplicationCloudWatchLoggingOptionV2(
|
|
|
3089
3161
|
|
|
3090
3162
|
@jsii.member(jsii_name="inspect")
|
|
3091
3163
|
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
3092
|
-
'''Examines the CloudFormation resource and discloses attributes.
|
|
3164
|
+
'''(deprecated) Examines the CloudFormation resource and discloses attributes.
|
|
3093
3165
|
|
|
3094
3166
|
:param inspector: tree inspector to collect and process attributes.
|
|
3167
|
+
|
|
3168
|
+
:stability: deprecated
|
|
3095
3169
|
'''
|
|
3096
3170
|
if __debug__:
|
|
3097
3171
|
type_hints = typing.get_type_hints(_typecheckingstub__3e7c8138ea01464bfe8e4fe9a9650b90574f8bd326c71e4a45793852a9bc43e5)
|
|
@@ -3105,6 +3179,8 @@ class CfnApplicationCloudWatchLoggingOptionV2(
|
|
|
3105
3179
|
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
3106
3180
|
'''
|
|
3107
3181
|
:param props: -
|
|
3182
|
+
|
|
3183
|
+
:stability: deprecated
|
|
3108
3184
|
'''
|
|
3109
3185
|
if __debug__:
|
|
3110
3186
|
type_hints = typing.get_type_hints(_typecheckingstub__4823faff69b817870b7ae2c7d07bd53cbfb2468b591efb8c9e092264c1976ac3)
|
|
@@ -3114,7 +3190,10 @@ class CfnApplicationCloudWatchLoggingOptionV2(
|
|
|
3114
3190
|
@jsii.python.classproperty
|
|
3115
3191
|
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
3116
3192
|
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
3117
|
-
'''The CloudFormation resource type name for this resource class.
|
|
3193
|
+
'''(deprecated) The CloudFormation resource type name for this resource class.
|
|
3194
|
+
|
|
3195
|
+
:stability: deprecated
|
|
3196
|
+
'''
|
|
3118
3197
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
3119
3198
|
|
|
3120
3199
|
@builtins.property
|
|
@@ -3122,13 +3201,17 @@ class CfnApplicationCloudWatchLoggingOptionV2(
|
|
|
3122
3201
|
def application_cloud_watch_logging_option_ref(
|
|
3123
3202
|
self,
|
|
3124
3203
|
) -> ApplicationCloudWatchLoggingOptionV2Reference:
|
|
3125
|
-
'''A reference to a ApplicationCloudWatchLoggingOption resource.
|
|
3204
|
+
'''(deprecated) A reference to a ApplicationCloudWatchLoggingOption resource.
|
|
3205
|
+
|
|
3206
|
+
:stability: deprecated
|
|
3207
|
+
'''
|
|
3126
3208
|
return typing.cast(ApplicationCloudWatchLoggingOptionV2Reference, jsii.get(self, "applicationCloudWatchLoggingOptionRef"))
|
|
3127
3209
|
|
|
3128
3210
|
@builtins.property
|
|
3129
3211
|
@jsii.member(jsii_name="attrId")
|
|
3130
3212
|
def attr_id(self) -> builtins.str:
|
|
3131
3213
|
'''
|
|
3214
|
+
:stability: deprecated
|
|
3132
3215
|
:cloudformationAttribute: Id
|
|
3133
3216
|
'''
|
|
3134
3217
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
@@ -3136,12 +3219,18 @@ class CfnApplicationCloudWatchLoggingOptionV2(
|
|
|
3136
3219
|
@builtins.property
|
|
3137
3220
|
@jsii.member(jsii_name="cfnProperties")
|
|
3138
3221
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
3222
|
+
'''
|
|
3223
|
+
:stability: deprecated
|
|
3224
|
+
'''
|
|
3139
3225
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
3140
3226
|
|
|
3141
3227
|
@builtins.property
|
|
3142
3228
|
@jsii.member(jsii_name="applicationName")
|
|
3143
3229
|
def application_name(self) -> builtins.str:
|
|
3144
|
-
'''The name of the application.
|
|
3230
|
+
'''(deprecated) The name of the application.
|
|
3231
|
+
|
|
3232
|
+
:stability: deprecated
|
|
3233
|
+
'''
|
|
3145
3234
|
return typing.cast(builtins.str, jsii.get(self, "applicationName"))
|
|
3146
3235
|
|
|
3147
3236
|
@application_name.setter
|
|
@@ -3156,7 +3245,10 @@ class CfnApplicationCloudWatchLoggingOptionV2(
|
|
|
3156
3245
|
def cloud_watch_logging_option(
|
|
3157
3246
|
self,
|
|
3158
3247
|
) -> typing.Union[_IResolvable_da3f097b, "CfnApplicationCloudWatchLoggingOptionV2.CloudWatchLoggingOptionProperty"]:
|
|
3159
|
-
'''Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).
|
|
3248
|
+
'''(deprecated) Provides a description of Amazon CloudWatch logging options, including the log stream Amazon Resource Name (ARN).
|
|
3249
|
+
|
|
3250
|
+
:stability: deprecated
|
|
3251
|
+
'''
|
|
3160
3252
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnApplicationCloudWatchLoggingOptionV2.CloudWatchLoggingOptionProperty"], jsii.get(self, "cloudWatchLoggingOption"))
|
|
3161
3253
|
|
|
3162
3254
|
@cloud_watch_logging_option.setter
|
|
@@ -3821,7 +3913,7 @@ class CfnApplicationOutputV2(
|
|
|
3821
3913
|
metaclass=jsii.JSIIMeta,
|
|
3822
3914
|
jsii_type="aws-cdk-lib.aws_kinesisanalytics.CfnApplicationOutputV2",
|
|
3823
3915
|
):
|
|
3824
|
-
'''Adds an external destination to your SQL-based Amazon Kinesis Data Analytics application.
|
|
3916
|
+
'''(deprecated) Adds an external destination to your SQL-based Amazon Kinesis Data Analytics application.
|
|
3825
3917
|
|
|
3826
3918
|
If you want Kinesis Data Analytics to deliver data from an in-application stream within your application to an external destination (such as an Kinesis data stream, a Kinesis Data Firehose delivery stream, or an Amazon Lambda function), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination.
|
|
3827
3919
|
|
|
@@ -3832,7 +3924,10 @@ class CfnApplicationOutputV2(
|
|
|
3832
3924
|
|
|
3833
3925
|
Creation of multiple outputs should be sequential (use of DependsOn) to avoid a problem with a stale application version ( *ConcurrentModificationException* ).
|
|
3834
3926
|
|
|
3927
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
3928
|
+
|
|
3835
3929
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationoutput.html
|
|
3930
|
+
:stability: deprecated
|
|
3836
3931
|
:cloudformationResource: AWS::KinesisAnalyticsV2::ApplicationOutput
|
|
3837
3932
|
:exampleMetadata: fixture=_generated
|
|
3838
3933
|
|
|
@@ -3875,8 +3970,10 @@ class CfnApplicationOutputV2(
|
|
|
3875
3970
|
'''
|
|
3876
3971
|
:param scope: Scope in which this resource is defined.
|
|
3877
3972
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3878
|
-
:param application_name: The name of the application.
|
|
3879
|
-
: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.
|
|
3973
|
+
:param application_name: (deprecated) The name of the application.
|
|
3974
|
+
:param output: (deprecated) 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.
|
|
3975
|
+
|
|
3976
|
+
:stability: deprecated
|
|
3880
3977
|
'''
|
|
3881
3978
|
if __debug__:
|
|
3882
3979
|
type_hints = typing.get_type_hints(_typecheckingstub__271bacb10dd6a875577035705b436387f7a448fbf7028ee2ca502030ea3c17e2)
|
|
@@ -3890,9 +3987,11 @@ class CfnApplicationOutputV2(
|
|
|
3890
3987
|
|
|
3891
3988
|
@jsii.member(jsii_name="inspect")
|
|
3892
3989
|
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
3893
|
-
'''Examines the CloudFormation resource and discloses attributes.
|
|
3990
|
+
'''(deprecated) Examines the CloudFormation resource and discloses attributes.
|
|
3894
3991
|
|
|
3895
3992
|
:param inspector: tree inspector to collect and process attributes.
|
|
3993
|
+
|
|
3994
|
+
:stability: deprecated
|
|
3896
3995
|
'''
|
|
3897
3996
|
if __debug__:
|
|
3898
3997
|
type_hints = typing.get_type_hints(_typecheckingstub__b2eebbb5fa9916b77258fc00b20bc5e1557b0df4a21bb462e48a53f4d726ef38)
|
|
@@ -3906,6 +4005,8 @@ class CfnApplicationOutputV2(
|
|
|
3906
4005
|
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
3907
4006
|
'''
|
|
3908
4007
|
:param props: -
|
|
4008
|
+
|
|
4009
|
+
:stability: deprecated
|
|
3909
4010
|
'''
|
|
3910
4011
|
if __debug__:
|
|
3911
4012
|
type_hints = typing.get_type_hints(_typecheckingstub__9776518dba5052c06776fb1a642ec276220b4762e24054025dc1b81e6a1e229c)
|
|
@@ -3915,19 +4016,26 @@ class CfnApplicationOutputV2(
|
|
|
3915
4016
|
@jsii.python.classproperty
|
|
3916
4017
|
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
3917
4018
|
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
3918
|
-
'''The CloudFormation resource type name for this resource class.
|
|
4019
|
+
'''(deprecated) The CloudFormation resource type name for this resource class.
|
|
4020
|
+
|
|
4021
|
+
:stability: deprecated
|
|
4022
|
+
'''
|
|
3919
4023
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
3920
4024
|
|
|
3921
4025
|
@builtins.property
|
|
3922
4026
|
@jsii.member(jsii_name="applicationOutputRef")
|
|
3923
4027
|
def application_output_ref(self) -> ApplicationOutputV2Reference:
|
|
3924
|
-
'''A reference to a ApplicationOutput resource.
|
|
4028
|
+
'''(deprecated) A reference to a ApplicationOutput resource.
|
|
4029
|
+
|
|
4030
|
+
:stability: deprecated
|
|
4031
|
+
'''
|
|
3925
4032
|
return typing.cast(ApplicationOutputV2Reference, jsii.get(self, "applicationOutputRef"))
|
|
3926
4033
|
|
|
3927
4034
|
@builtins.property
|
|
3928
4035
|
@jsii.member(jsii_name="attrId")
|
|
3929
4036
|
def attr_id(self) -> builtins.str:
|
|
3930
4037
|
'''
|
|
4038
|
+
:stability: deprecated
|
|
3931
4039
|
:cloudformationAttribute: Id
|
|
3932
4040
|
'''
|
|
3933
4041
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
@@ -3935,12 +4043,18 @@ class CfnApplicationOutputV2(
|
|
|
3935
4043
|
@builtins.property
|
|
3936
4044
|
@jsii.member(jsii_name="cfnProperties")
|
|
3937
4045
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
4046
|
+
'''
|
|
4047
|
+
:stability: deprecated
|
|
4048
|
+
'''
|
|
3938
4049
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
3939
4050
|
|
|
3940
4051
|
@builtins.property
|
|
3941
4052
|
@jsii.member(jsii_name="applicationName")
|
|
3942
4053
|
def application_name(self) -> builtins.str:
|
|
3943
|
-
'''The name of the application.
|
|
4054
|
+
'''(deprecated) The name of the application.
|
|
4055
|
+
|
|
4056
|
+
:stability: deprecated
|
|
4057
|
+
'''
|
|
3944
4058
|
return typing.cast(builtins.str, jsii.get(self, "applicationName"))
|
|
3945
4059
|
|
|
3946
4060
|
@application_name.setter
|
|
@@ -3955,7 +4069,10 @@ class CfnApplicationOutputV2(
|
|
|
3955
4069
|
def output(
|
|
3956
4070
|
self,
|
|
3957
4071
|
) -> typing.Union[_IResolvable_da3f097b, "CfnApplicationOutputV2.OutputProperty"]:
|
|
3958
|
-
'''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.
|
|
4072
|
+
'''(deprecated) 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.
|
|
4073
|
+
|
|
4074
|
+
:stability: deprecated
|
|
4075
|
+
'''
|
|
3959
4076
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnApplicationOutputV2.OutputProperty"], jsii.get(self, "output"))
|
|
3960
4077
|
|
|
3961
4078
|
@output.setter
|
|
@@ -5247,11 +5364,14 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
5247
5364
|
metaclass=jsii.JSIIMeta,
|
|
5248
5365
|
jsii_type="aws-cdk-lib.aws_kinesisanalytics.CfnApplicationReferenceDataSourceV2",
|
|
5249
5366
|
):
|
|
5250
|
-
'''Adds a reference data source to an existing SQL-based Kinesis Data Analytics application.
|
|
5367
|
+
'''(deprecated) Adds a reference data source to an existing SQL-based Kinesis Data Analytics application.
|
|
5251
5368
|
|
|
5252
5369
|
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.
|
|
5253
5370
|
|
|
5371
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
5372
|
+
|
|
5254
5373
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-applicationreferencedatasource.html
|
|
5374
|
+
:stability: deprecated
|
|
5255
5375
|
:cloudformationResource: AWS::KinesisAnalyticsV2::ApplicationReferenceDataSource
|
|
5256
5376
|
:exampleMetadata: fixture=_generated
|
|
5257
5377
|
|
|
@@ -5312,8 +5432,10 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
5312
5432
|
'''
|
|
5313
5433
|
:param scope: Scope in which this resource is defined.
|
|
5314
5434
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5315
|
-
:param application_name: The name of the application.
|
|
5316
|
-
: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.
|
|
5435
|
+
:param application_name: (deprecated) The name of the application.
|
|
5436
|
+
:param reference_data_source: (deprecated) 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.
|
|
5437
|
+
|
|
5438
|
+
:stability: deprecated
|
|
5317
5439
|
'''
|
|
5318
5440
|
if __debug__:
|
|
5319
5441
|
type_hints = typing.get_type_hints(_typecheckingstub__f2c21e9367b4b82b411ec28921ad848b6f7487f126cfc392bff2c5844b5fd4bb)
|
|
@@ -5328,9 +5450,11 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
5328
5450
|
|
|
5329
5451
|
@jsii.member(jsii_name="inspect")
|
|
5330
5452
|
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
5331
|
-
'''Examines the CloudFormation resource and discloses attributes.
|
|
5453
|
+
'''(deprecated) Examines the CloudFormation resource and discloses attributes.
|
|
5332
5454
|
|
|
5333
5455
|
:param inspector: tree inspector to collect and process attributes.
|
|
5456
|
+
|
|
5457
|
+
:stability: deprecated
|
|
5334
5458
|
'''
|
|
5335
5459
|
if __debug__:
|
|
5336
5460
|
type_hints = typing.get_type_hints(_typecheckingstub__18e04355544d71ef14fdc1b4386b35998f0a08f085f76c537c90ab42f7493e9f)
|
|
@@ -5344,6 +5468,8 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
5344
5468
|
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
5345
5469
|
'''
|
|
5346
5470
|
:param props: -
|
|
5471
|
+
|
|
5472
|
+
:stability: deprecated
|
|
5347
5473
|
'''
|
|
5348
5474
|
if __debug__:
|
|
5349
5475
|
type_hints = typing.get_type_hints(_typecheckingstub__0553ec653681501e087fd653ebd6d78808c0cbc4f4b80befa768eaf7e3bd378b)
|
|
@@ -5353,7 +5479,10 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
5353
5479
|
@jsii.python.classproperty
|
|
5354
5480
|
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
5355
5481
|
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
5356
|
-
'''The CloudFormation resource type name for this resource class.
|
|
5482
|
+
'''(deprecated) The CloudFormation resource type name for this resource class.
|
|
5483
|
+
|
|
5484
|
+
:stability: deprecated
|
|
5485
|
+
'''
|
|
5357
5486
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
5358
5487
|
|
|
5359
5488
|
@builtins.property
|
|
@@ -5361,13 +5490,17 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
5361
5490
|
def application_reference_data_source_ref(
|
|
5362
5491
|
self,
|
|
5363
5492
|
) -> ApplicationReferenceDataSourceV2Reference:
|
|
5364
|
-
'''A reference to a ApplicationReferenceDataSource resource.
|
|
5493
|
+
'''(deprecated) A reference to a ApplicationReferenceDataSource resource.
|
|
5494
|
+
|
|
5495
|
+
:stability: deprecated
|
|
5496
|
+
'''
|
|
5365
5497
|
return typing.cast(ApplicationReferenceDataSourceV2Reference, jsii.get(self, "applicationReferenceDataSourceRef"))
|
|
5366
5498
|
|
|
5367
5499
|
@builtins.property
|
|
5368
5500
|
@jsii.member(jsii_name="attrId")
|
|
5369
5501
|
def attr_id(self) -> builtins.str:
|
|
5370
5502
|
'''
|
|
5503
|
+
:stability: deprecated
|
|
5371
5504
|
:cloudformationAttribute: Id
|
|
5372
5505
|
'''
|
|
5373
5506
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
@@ -5375,12 +5508,18 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
5375
5508
|
@builtins.property
|
|
5376
5509
|
@jsii.member(jsii_name="cfnProperties")
|
|
5377
5510
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
5511
|
+
'''
|
|
5512
|
+
:stability: deprecated
|
|
5513
|
+
'''
|
|
5378
5514
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
5379
5515
|
|
|
5380
5516
|
@builtins.property
|
|
5381
5517
|
@jsii.member(jsii_name="applicationName")
|
|
5382
5518
|
def application_name(self) -> builtins.str:
|
|
5383
|
-
'''The name of the application.
|
|
5519
|
+
'''(deprecated) The name of the application.
|
|
5520
|
+
|
|
5521
|
+
:stability: deprecated
|
|
5522
|
+
'''
|
|
5384
5523
|
return typing.cast(builtins.str, jsii.get(self, "applicationName"))
|
|
5385
5524
|
|
|
5386
5525
|
@application_name.setter
|
|
@@ -5395,7 +5534,10 @@ class CfnApplicationReferenceDataSourceV2(
|
|
|
5395
5534
|
def reference_data_source(
|
|
5396
5535
|
self,
|
|
5397
5536
|
) -> typing.Union[_IResolvable_da3f097b, "CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty"]:
|
|
5398
|
-
'''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.
|
|
5537
|
+
'''(deprecated) 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.
|
|
5538
|
+
|
|
5539
|
+
:stability: deprecated
|
|
5540
|
+
'''
|
|
5399
5541
|
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnApplicationReferenceDataSourceV2.ReferenceDataSourceProperty"], jsii.get(self, "referenceDataSource"))
|
|
5400
5542
|
|
|
5401
5543
|
@reference_data_source.setter
|
|
@@ -6120,11 +6262,14 @@ class CfnApplicationV2(
|
|
|
6120
6262
|
metaclass=jsii.JSIIMeta,
|
|
6121
6263
|
jsii_type="aws-cdk-lib.aws_kinesisanalytics.CfnApplicationV2",
|
|
6122
6264
|
):
|
|
6123
|
-
'''Creates an Amazon Kinesis Data Analytics application.
|
|
6265
|
+
'''(deprecated) Creates an Amazon Kinesis Data Analytics application.
|
|
6124
6266
|
|
|
6125
6267
|
For information about creating a Kinesis Data Analytics application, see `Creating an Application <https://docs.aws.amazon.com/managed-flink/latest/java/getting-started.html>`_ .
|
|
6126
6268
|
|
|
6269
|
+
:deprecated: use ``aws-kinesisanalyticsv2`` instead
|
|
6270
|
+
|
|
6127
6271
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html
|
|
6272
|
+
:stability: deprecated
|
|
6128
6273
|
:cloudformationResource: AWS::KinesisAnalyticsV2::Application
|
|
6129
6274
|
:exampleMetadata: fixture=_generated
|
|
6130
6275
|
|
|
@@ -6328,15 +6473,17 @@ class CfnApplicationV2(
|
|
|
6328
6473
|
'''
|
|
6329
6474
|
:param scope: Scope in which this resource is defined.
|
|
6330
6475
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
6331
|
-
:param runtime_environment: The runtime environment for the application.
|
|
6332
|
-
:param service_execution_role: Specifies the IAM role that the application uses to access external resources.
|
|
6333
|
-
:param application_configuration: Use this parameter to configure the application.
|
|
6334
|
-
:param application_description: The description of the application. Default: - ""
|
|
6335
|
-
:param application_maintenance_configuration: Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
6336
|
-
:param application_mode: To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
|
|
6337
|
-
:param application_name: The name of the application.
|
|
6338
|
-
:param run_configuration: Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
6339
|
-
:param tags: A list of one or more tags to assign to the application. A tag is a key-value pair that identifies an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.
|
|
6476
|
+
:param runtime_environment: (deprecated) The runtime environment for the application.
|
|
6477
|
+
:param service_execution_role: (deprecated) Specifies the IAM role that the application uses to access external resources.
|
|
6478
|
+
:param application_configuration: (deprecated) Use this parameter to configure the application.
|
|
6479
|
+
:param application_description: (deprecated) The description of the application. Default: - ""
|
|
6480
|
+
:param application_maintenance_configuration: (deprecated) Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
6481
|
+
:param application_mode: (deprecated) To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` . However, for a Kinesis Data Analytics for Apache Flink application, the mode is optional.
|
|
6482
|
+
:param application_name: (deprecated) The name of the application.
|
|
6483
|
+
:param run_configuration: (deprecated) Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
6484
|
+
:param tags: (deprecated) A list of one or more tags to assign to the application. A tag is a key-value pair that identifies an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.
|
|
6485
|
+
|
|
6486
|
+
:stability: deprecated
|
|
6340
6487
|
'''
|
|
6341
6488
|
if __debug__:
|
|
6342
6489
|
type_hints = typing.get_type_hints(_typecheckingstub__68f6c265e7d219c8087ecccfd8c8908a6940a2b12916b5234453b46ae72ad9d3)
|
|
@@ -6358,9 +6505,11 @@ class CfnApplicationV2(
|
|
|
6358
6505
|
|
|
6359
6506
|
@jsii.member(jsii_name="inspect")
|
|
6360
6507
|
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
6361
|
-
'''Examines the CloudFormation resource and discloses attributes.
|
|
6508
|
+
'''(deprecated) Examines the CloudFormation resource and discloses attributes.
|
|
6362
6509
|
|
|
6363
6510
|
:param inspector: tree inspector to collect and process attributes.
|
|
6511
|
+
|
|
6512
|
+
:stability: deprecated
|
|
6364
6513
|
'''
|
|
6365
6514
|
if __debug__:
|
|
6366
6515
|
type_hints = typing.get_type_hints(_typecheckingstub__7ea17d8a69f816e0d5e0fe4c8ba39325dd561dac4af7c67c01d09dc75d750b92)
|
|
@@ -6374,6 +6523,8 @@ class CfnApplicationV2(
|
|
|
6374
6523
|
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
6375
6524
|
'''
|
|
6376
6525
|
:param props: -
|
|
6526
|
+
|
|
6527
|
+
:stability: deprecated
|
|
6377
6528
|
'''
|
|
6378
6529
|
if __debug__:
|
|
6379
6530
|
type_hints = typing.get_type_hints(_typecheckingstub__cb444bf83d09cf2d9587ec17a18e49deb775fb3624b3eeb9a1ef330d7c62aa8f)
|
|
@@ -6383,30 +6534,45 @@ class CfnApplicationV2(
|
|
|
6383
6534
|
@jsii.python.classproperty
|
|
6384
6535
|
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
6385
6536
|
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
6386
|
-
'''The CloudFormation resource type name for this resource class.
|
|
6537
|
+
'''(deprecated) The CloudFormation resource type name for this resource class.
|
|
6538
|
+
|
|
6539
|
+
:stability: deprecated
|
|
6540
|
+
'''
|
|
6387
6541
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
6388
6542
|
|
|
6389
6543
|
@builtins.property
|
|
6390
6544
|
@jsii.member(jsii_name="applicationRef")
|
|
6391
6545
|
def application_ref(self) -> ApplicationV2Reference:
|
|
6392
|
-
'''A reference to a Application resource.
|
|
6546
|
+
'''(deprecated) A reference to a Application resource.
|
|
6547
|
+
|
|
6548
|
+
:stability: deprecated
|
|
6549
|
+
'''
|
|
6393
6550
|
return typing.cast(ApplicationV2Reference, jsii.get(self, "applicationRef"))
|
|
6394
6551
|
|
|
6395
6552
|
@builtins.property
|
|
6396
6553
|
@jsii.member(jsii_name="cfnProperties")
|
|
6397
6554
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
6555
|
+
'''
|
|
6556
|
+
:stability: deprecated
|
|
6557
|
+
'''
|
|
6398
6558
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
6399
6559
|
|
|
6400
6560
|
@builtins.property
|
|
6401
6561
|
@jsii.member(jsii_name="tags")
|
|
6402
6562
|
def tags(self) -> _TagManager_0a598cb3:
|
|
6403
|
-
'''Tag Manager which manages the tags for this resource.
|
|
6563
|
+
'''(deprecated) Tag Manager which manages the tags for this resource.
|
|
6564
|
+
|
|
6565
|
+
:stability: deprecated
|
|
6566
|
+
'''
|
|
6404
6567
|
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
|
|
6405
6568
|
|
|
6406
6569
|
@builtins.property
|
|
6407
6570
|
@jsii.member(jsii_name="runtimeEnvironment")
|
|
6408
6571
|
def runtime_environment(self) -> builtins.str:
|
|
6409
|
-
'''The runtime environment for the application.
|
|
6572
|
+
'''(deprecated) The runtime environment for the application.
|
|
6573
|
+
|
|
6574
|
+
:stability: deprecated
|
|
6575
|
+
'''
|
|
6410
6576
|
return typing.cast(builtins.str, jsii.get(self, "runtimeEnvironment"))
|
|
6411
6577
|
|
|
6412
6578
|
@runtime_environment.setter
|
|
@@ -6419,7 +6585,10 @@ class CfnApplicationV2(
|
|
|
6419
6585
|
@builtins.property
|
|
6420
6586
|
@jsii.member(jsii_name="serviceExecutionRole")
|
|
6421
6587
|
def service_execution_role(self) -> builtins.str:
|
|
6422
|
-
'''Specifies the IAM role that the application uses to access external resources.
|
|
6588
|
+
'''(deprecated) Specifies the IAM role that the application uses to access external resources.
|
|
6589
|
+
|
|
6590
|
+
:stability: deprecated
|
|
6591
|
+
'''
|
|
6423
6592
|
return typing.cast(builtins.str, jsii.get(self, "serviceExecutionRole"))
|
|
6424
6593
|
|
|
6425
6594
|
@service_execution_role.setter
|
|
@@ -6434,7 +6603,10 @@ class CfnApplicationV2(
|
|
|
6434
6603
|
def application_configuration(
|
|
6435
6604
|
self,
|
|
6436
6605
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationConfigurationProperty"]]:
|
|
6437
|
-
'''Use this parameter to configure the application.
|
|
6606
|
+
'''(deprecated) Use this parameter to configure the application.
|
|
6607
|
+
|
|
6608
|
+
:stability: deprecated
|
|
6609
|
+
'''
|
|
6438
6610
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationConfigurationProperty"]], jsii.get(self, "applicationConfiguration"))
|
|
6439
6611
|
|
|
6440
6612
|
@application_configuration.setter
|
|
@@ -6450,7 +6622,10 @@ class CfnApplicationV2(
|
|
|
6450
6622
|
@builtins.property
|
|
6451
6623
|
@jsii.member(jsii_name="applicationDescription")
|
|
6452
6624
|
def application_description(self) -> typing.Optional[builtins.str]:
|
|
6453
|
-
'''The description of the application.
|
|
6625
|
+
'''(deprecated) The description of the application.
|
|
6626
|
+
|
|
6627
|
+
:stability: deprecated
|
|
6628
|
+
'''
|
|
6454
6629
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "applicationDescription"))
|
|
6455
6630
|
|
|
6456
6631
|
@application_description.setter
|
|
@@ -6465,7 +6640,10 @@ class CfnApplicationV2(
|
|
|
6465
6640
|
def application_maintenance_configuration(
|
|
6466
6641
|
self,
|
|
6467
6642
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationMaintenanceConfigurationProperty"]]:
|
|
6468
|
-
'''Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
6643
|
+
'''(deprecated) Specifies the maintenance window parameters for a Kinesis Data Analytics application.
|
|
6644
|
+
|
|
6645
|
+
:stability: deprecated
|
|
6646
|
+
'''
|
|
6469
6647
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationMaintenanceConfigurationProperty"]], jsii.get(self, "applicationMaintenanceConfiguration"))
|
|
6470
6648
|
|
|
6471
6649
|
@application_maintenance_configuration.setter
|
|
@@ -6481,7 +6659,10 @@ class CfnApplicationV2(
|
|
|
6481
6659
|
@builtins.property
|
|
6482
6660
|
@jsii.member(jsii_name="applicationMode")
|
|
6483
6661
|
def application_mode(self) -> typing.Optional[builtins.str]:
|
|
6484
|
-
'''To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` .
|
|
6662
|
+
'''(deprecated) To create a Kinesis Data Analytics Studio notebook, you must set the mode to ``INTERACTIVE`` .
|
|
6663
|
+
|
|
6664
|
+
:stability: deprecated
|
|
6665
|
+
'''
|
|
6485
6666
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "applicationMode"))
|
|
6486
6667
|
|
|
6487
6668
|
@application_mode.setter
|
|
@@ -6494,7 +6675,10 @@ class CfnApplicationV2(
|
|
|
6494
6675
|
@builtins.property
|
|
6495
6676
|
@jsii.member(jsii_name="applicationName")
|
|
6496
6677
|
def application_name(self) -> typing.Optional[builtins.str]:
|
|
6497
|
-
'''The name of the application.
|
|
6678
|
+
'''(deprecated) The name of the application.
|
|
6679
|
+
|
|
6680
|
+
:stability: deprecated
|
|
6681
|
+
'''
|
|
6498
6682
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "applicationName"))
|
|
6499
6683
|
|
|
6500
6684
|
@application_name.setter
|
|
@@ -6509,7 +6693,10 @@ class CfnApplicationV2(
|
|
|
6509
6693
|
def run_configuration(
|
|
6510
6694
|
self,
|
|
6511
6695
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.RunConfigurationProperty"]]:
|
|
6512
|
-
'''Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
6696
|
+
'''(deprecated) Describes the starting parameters for an Managed Service for Apache Flink application.
|
|
6697
|
+
|
|
6698
|
+
:stability: deprecated
|
|
6699
|
+
'''
|
|
6513
6700
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.RunConfigurationProperty"]], jsii.get(self, "runConfiguration"))
|
|
6514
6701
|
|
|
6515
6702
|
@run_configuration.setter
|
|
@@ -6525,7 +6712,10 @@ class CfnApplicationV2(
|
|
|
6525
6712
|
@builtins.property
|
|
6526
6713
|
@jsii.member(jsii_name="tagsRaw")
|
|
6527
6714
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
6528
|
-
'''A list of one or more tags to assign to the application.
|
|
6715
|
+
'''(deprecated) A list of one or more tags to assign to the application.
|
|
6716
|
+
|
|
6717
|
+
:stability: deprecated
|
|
6718
|
+
'''
|
|
6529
6719
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tagsRaw"))
|
|
6530
6720
|
|
|
6531
6721
|
@tags_raw.setter
|