@aws-cdk/aws-kinesisanalytics-flink-alpha 2.2.0-alpha.0 → 2.6.0-alpha.0
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.
- package/.jsii +17 -8
- package/.jsii.tabl.json +71 -12
- package/LICENSE +1 -1
- package/NOTICE +1 -1
- package/lib/application-code.js +1 -1
- package/lib/application.js +1 -1
- package/lib/types.js +1 -1
- package/package.json +7 -7
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "https://aws.amazon.com"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"aws-cdk-lib": "^2.
|
|
11
|
+
"aws-cdk-lib": "^2.6.0",
|
|
12
12
|
"constructs": "^10.0.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
@@ -2855,7 +2855,7 @@
|
|
|
2855
2855
|
"stability": "experimental"
|
|
2856
2856
|
},
|
|
2857
2857
|
"homepage": "https://github.com/aws/aws-cdk",
|
|
2858
|
-
"jsiiVersion": "1.
|
|
2858
|
+
"jsiiVersion": "1.50.0 (build d1830a4)",
|
|
2859
2859
|
"keywords": [
|
|
2860
2860
|
"aws",
|
|
2861
2861
|
"cdk",
|
|
@@ -2921,7 +2921,7 @@
|
|
|
2921
2921
|
"base": "aws-cdk-lib.Resource",
|
|
2922
2922
|
"docs": {
|
|
2923
2923
|
"custom": {
|
|
2924
|
-
"exampleMetadata": "lit=test/integ.application.lit.ts ! show",
|
|
2924
|
+
"exampleMetadata": "lit=test/integ.application.lit.ts ! show infused",
|
|
2925
2925
|
"resource": "AWS::KinesisAnalyticsV2::Application"
|
|
2926
2926
|
},
|
|
2927
2927
|
"example": "import * as path from 'path';\nimport * as core from 'aws-cdk-lib';\nimport * as flink from '../lib';\n\nconst app = new core.App();\nconst stack = new core.Stack(app, 'FlinkAppTest');\n\nnew flink.Application(stack, 'App', {\n code: flink.ApplicationCode.fromAsset(path.join(__dirname, 'code-asset')),\n runtime: flink.Runtime.FLINK_1_11,\n});\n///! hide\n\napp.synth();",
|
|
@@ -3142,7 +3142,7 @@
|
|
|
3142
3142
|
"assembly": "@aws-cdk/aws-kinesisanalytics-flink-alpha",
|
|
3143
3143
|
"docs": {
|
|
3144
3144
|
"custom": {
|
|
3145
|
-
"exampleMetadata": "lit=test/integ.application.lit.ts ! show"
|
|
3145
|
+
"exampleMetadata": "lit=test/integ.application.lit.ts ! show infused"
|
|
3146
3146
|
},
|
|
3147
3147
|
"example": "import * as path from 'path';\nimport * as core from 'aws-cdk-lib';\nimport * as flink from '../lib';\n\nconst app = new core.App();\nconst stack = new core.Stack(app, 'FlinkAppTest');\n\nnew flink.Application(stack, 'App', {\n code: flink.ApplicationCode.fromAsset(path.join(__dirname, 'code-asset')),\n runtime: flink.Runtime.FLINK_1_11,\n});\n///! hide\n\napp.synth();",
|
|
3148
3148
|
"stability": "experimental",
|
|
@@ -3280,7 +3280,7 @@
|
|
|
3280
3280
|
"docs": {
|
|
3281
3281
|
"stability": "experimental",
|
|
3282
3282
|
"summary": "The return type of {@link ApplicationCode.bind}. This represents CloudFormation configuration and an s3 bucket holding the Flink application JAR file.",
|
|
3283
|
-
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as kinesisanalytics_flink_alpha from '@aws-cdk/aws-kinesisanalytics-flink-alpha';\nimport { aws_s3 as s3 } from 'aws-cdk-lib';\n\ndeclare const bucket: s3.Bucket;\ndeclare const propertyMap: any;\
|
|
3283
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as kinesisanalytics_flink_alpha from '@aws-cdk/aws-kinesisanalytics-flink-alpha';\nimport { aws_s3 as s3 } from 'aws-cdk-lib';\n\ndeclare const bucket: s3.Bucket;\ndeclare const propertyMap: any;\nconst applicationCodeConfig: kinesisanalytics_flink_alpha.ApplicationCodeConfig = {\n applicationCodeConfigurationProperty: {\n applicationCodeConfiguration: {\n codeContent: {\n s3ContentLocation: {\n bucketArn: 'bucketArn',\n fileKey: 'fileKey',\n objectVersion: 'objectVersion',\n },\n textContent: 'textContent',\n zipFileContent: 'zipFileContent',\n },\n codeContentType: 'codeContentType',\n },\n applicationSnapshotConfiguration: {\n snapshotsEnabled: false,\n },\n environmentProperties: {\n propertyGroups: [{\n propertyGroupId: 'propertyGroupId',\n propertyMap: propertyMap,\n }],\n },\n flinkApplicationConfiguration: {\n checkpointConfiguration: {\n configurationType: 'configurationType',\n\n // the properties below are optional\n checkpointingEnabled: false,\n checkpointInterval: 123,\n minPauseBetweenCheckpoints: 123,\n },\n monitoringConfiguration: {\n configurationType: 'configurationType',\n\n // the properties below are optional\n logLevel: 'logLevel',\n metricsLevel: 'metricsLevel',\n },\n parallelismConfiguration: {\n configurationType: 'configurationType',\n\n // the properties below are optional\n autoScalingEnabled: false,\n parallelism: 123,\n parallelismPerKpu: 123,\n },\n },\n sqlApplicationConfiguration: {\n inputs: [{\n inputSchema: {\n recordColumns: [{\n name: 'name',\n sqlType: 'sqlType',\n\n // the properties below are optional\n mapping: 'mapping',\n }],\n recordFormat: {\n recordFormatType: 'recordFormatType',\n\n // the properties below are optional\n mappingParameters: {\n csvMappingParameters: {\n recordColumnDelimiter: 'recordColumnDelimiter',\n recordRowDelimiter: 'recordRowDelimiter',\n },\n jsonMappingParameters: {\n recordRowPath: 'recordRowPath',\n },\n },\n },\n\n // the properties below are optional\n recordEncoding: 'recordEncoding',\n },\n namePrefix: 'namePrefix',\n\n // the properties below are optional\n inputParallelism: {\n count: 123,\n },\n inputProcessingConfiguration: {\n inputLambdaProcessor: {\n resourceArn: 'resourceArn',\n },\n },\n kinesisFirehoseInput: {\n resourceArn: 'resourceArn',\n },\n kinesisStreamsInput: {\n resourceArn: 'resourceArn',\n },\n }],\n },\n zeppelinApplicationConfiguration: {\n catalogConfiguration: {\n glueDataCatalogConfiguration: {\n databaseArn: 'databaseArn',\n },\n },\n customArtifactsConfiguration: [{\n artifactType: 'artifactType',\n\n // the properties below are optional\n mavenReference: {\n artifactId: 'artifactId',\n groupId: 'groupId',\n version: 'version',\n },\n s3ContentLocation: {\n bucketArn: 'bucketArn',\n fileKey: 'fileKey',\n objectVersion: 'objectVersion',\n },\n }],\n deployAsApplicationConfiguration: {\n s3ContentLocation: {\n basePath: 'basePath',\n bucketArn: 'bucketArn',\n },\n },\n monitoringConfiguration: {\n logLevel: 'logLevel',\n },\n },\n },\n bucket: bucket,\n};",
|
|
3284
3284
|
"custom": {
|
|
3285
3285
|
"exampleMetadata": "fixture=_generated"
|
|
3286
3286
|
}
|
|
@@ -3333,7 +3333,7 @@
|
|
|
3333
3333
|
"datatype": true,
|
|
3334
3334
|
"docs": {
|
|
3335
3335
|
"custom": {
|
|
3336
|
-
"exampleMetadata": "lit=test/integ.application.lit.ts ! show"
|
|
3336
|
+
"exampleMetadata": "lit=test/integ.application.lit.ts ! show infused"
|
|
3337
3337
|
},
|
|
3338
3338
|
"example": "import * as path from 'path';\nimport * as core from 'aws-cdk-lib';\nimport * as flink from '../lib';\n\nconst app = new core.App();\nconst stack = new core.Stack(app, 'FlinkAppTest');\n\nnew flink.Application(stack, 'App', {\n code: flink.ApplicationCode.fromAsset(path.join(__dirname, 'code-asset')),\n runtime: flink.Runtime.FLINK_1_11,\n});\n///! hide\n\napp.synth();",
|
|
3339
3339
|
"stability": "experimental",
|
|
@@ -3744,6 +3744,9 @@
|
|
|
3744
3744
|
"@aws-cdk/aws-kinesisanalytics-flink-alpha.LogLevel": {
|
|
3745
3745
|
"assembly": "@aws-cdk/aws-kinesisanalytics-flink-alpha",
|
|
3746
3746
|
"docs": {
|
|
3747
|
+
"custom": {
|
|
3748
|
+
"exampleMetadata": "infused"
|
|
3749
|
+
},
|
|
3747
3750
|
"example": "declare const bucket: s3.Bucket;\nconst flinkApp = new flink.Application(this, 'Application', {\n code: flink.ApplicationCode.fromBucket(bucket, 'my-app.jar'),\n runtime: flink.Runtime.FLINK_1_13,\n checkpointingEnabled: true, // default is true\n checkpointInterval: Duration.seconds(30), // default is 1 minute\n minPauseBetweenCheckpoints: Duration.seconds(10), // default is 5 seconds\n logLevel: flink.LogLevel.ERROR, // default is INFO\n metricsLevel: flink.MetricsLevel.PARALLELISM, // default is APPLICATION\n autoScalingEnabled: false, // default is true\n parallelism: 32, // default is 1\n parallelismPerKpu: 2, // default is 1\n snapshotsEnabled: false, // default is true\n logGroup: new logs.LogGroup(this, 'LogGroup'), // by default, a new LogGroup will be created\n});",
|
|
3748
3751
|
"stability": "experimental",
|
|
3749
3752
|
"summary": "Available log levels for Flink applications."
|
|
@@ -3790,6 +3793,9 @@
|
|
|
3790
3793
|
"@aws-cdk/aws-kinesisanalytics-flink-alpha.MetricsLevel": {
|
|
3791
3794
|
"assembly": "@aws-cdk/aws-kinesisanalytics-flink-alpha",
|
|
3792
3795
|
"docs": {
|
|
3796
|
+
"custom": {
|
|
3797
|
+
"exampleMetadata": "infused"
|
|
3798
|
+
},
|
|
3793
3799
|
"example": "declare const bucket: s3.Bucket;\nconst flinkApp = new flink.Application(this, 'Application', {\n code: flink.ApplicationCode.fromBucket(bucket, 'my-app.jar'),\n runtime: flink.Runtime.FLINK_1_13,\n checkpointingEnabled: true, // default is true\n checkpointInterval: Duration.seconds(30), // default is 1 minute\n minPauseBetweenCheckpoints: Duration.seconds(10), // default is 5 seconds\n logLevel: flink.LogLevel.ERROR, // default is INFO\n metricsLevel: flink.MetricsLevel.PARALLELISM, // default is APPLICATION\n autoScalingEnabled: false, // default is true\n parallelism: 32, // default is 1\n parallelismPerKpu: 2, // default is 1\n snapshotsEnabled: false, // default is true\n logGroup: new logs.LogGroup(this, 'LogGroup'), // by default, a new LogGroup will be created\n});",
|
|
3794
3800
|
"stability": "experimental",
|
|
3795
3801
|
"summary": "Granularity of metrics sent to CloudWatch."
|
|
@@ -3837,6 +3843,9 @@
|
|
|
3837
3843
|
"assembly": "@aws-cdk/aws-kinesisanalytics-flink-alpha",
|
|
3838
3844
|
"datatype": true,
|
|
3839
3845
|
"docs": {
|
|
3846
|
+
"custom": {
|
|
3847
|
+
"exampleMetadata": "infused"
|
|
3848
|
+
},
|
|
3840
3849
|
"example": "declare const bucket: s3.Bucket;\nconst flinkApp = new flink.Application(this, 'Application', {\n propertyGroups: {\n FlinkApplicationProperties: {\n inputStreamName: 'my-input-kinesis-stream',\n outputStreamName: 'my-output-kinesis-stream',\n },\n },\n // ...\n runtime: flink.Runtime.FLINK_1_13,\n code: flink.ApplicationCode.fromBucket(bucket, 'my-app.jar'),\n});",
|
|
3841
3850
|
"stability": "experimental",
|
|
3842
3851
|
"summary": "Interface for building AWS::KinesisAnalyticsV2::Application PropertyGroup configuration."
|
|
@@ -3854,7 +3863,7 @@
|
|
|
3854
3863
|
"assembly": "@aws-cdk/aws-kinesisanalytics-flink-alpha",
|
|
3855
3864
|
"docs": {
|
|
3856
3865
|
"custom": {
|
|
3857
|
-
"exampleMetadata": "lit=test/integ.application.lit.ts ! show"
|
|
3866
|
+
"exampleMetadata": "lit=test/integ.application.lit.ts ! show infused"
|
|
3858
3867
|
},
|
|
3859
3868
|
"example": "import * as path from 'path';\nimport * as core from 'aws-cdk-lib';\nimport * as flink from '../lib';\n\nconst app = new core.App();\nconst stack = new core.Stack(app, 'FlinkAppTest');\n\nnew flink.Application(stack, 'App', {\n code: flink.ApplicationCode.fromAsset(path.join(__dirname, 'code-asset')),\n runtime: flink.Runtime.FLINK_1_11,\n});\n///! hide\n\napp.synth();",
|
|
3860
3869
|
"stability": "experimental",
|
|
@@ -3982,6 +3991,6 @@
|
|
|
3982
3991
|
"symbolId": "lib/types:Runtime"
|
|
3983
3992
|
}
|
|
3984
3993
|
},
|
|
3985
|
-
"version": "2.
|
|
3994
|
+
"version": "2.6.0-alpha.0",
|
|
3986
3995
|
"fingerprint": "**********"
|
|
3987
3996
|
}
|
package/.jsii.tabl.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "2",
|
|
3
|
-
"toolVersion": "1.
|
|
3
|
+
"toolVersion": "1.50.0",
|
|
4
4
|
"snippets": {
|
|
5
5
|
"1a833610ab1ce77e0ec4d91ced57ffe07cf491d38460b172a29a87f3fcfe4354": {
|
|
6
6
|
"translations": {
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"281": 2,
|
|
62
62
|
"290": 1
|
|
63
63
|
},
|
|
64
|
-
"fqnsFingerprint": "
|
|
64
|
+
"fqnsFingerprint": "8c65b9682f7c89b0e4684159dd40c83f8de3d97deb9f3b0dcb417044344f808a"
|
|
65
65
|
},
|
|
66
66
|
"5f07703f347c0152a5b08697fae3d12084359084156d88a0ad7c5ea5248beae6": {
|
|
67
67
|
"translations": {
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"281": 3,
|
|
128
128
|
"290": 1
|
|
129
129
|
},
|
|
130
|
-
"fqnsFingerprint": "
|
|
130
|
+
"fqnsFingerprint": "5554a52254689e9c500faf97369abd4692b5dab043429115006b3da1e1b0e4a5"
|
|
131
131
|
},
|
|
132
132
|
"bf19da6d0c3c17ef8c8bb9b4dff2184be744c50282bcb81d96d93597fb7c6d68": {
|
|
133
133
|
"translations": {
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
"281": 6,
|
|
188
188
|
"290": 1
|
|
189
189
|
},
|
|
190
|
-
"fqnsFingerprint": "
|
|
190
|
+
"fqnsFingerprint": "7a2fd1d197dd66f8abf7cc904555bc254d0a7b8c86b7653281eb13929624a7f8"
|
|
191
191
|
},
|
|
192
192
|
"89eccab115fe1f1739ae6ec49d75f867b155e31391f5356ee827dff3d8772f59": {
|
|
193
193
|
"translations": {
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"281": 12,
|
|
258
258
|
"290": 1
|
|
259
259
|
},
|
|
260
|
-
"fqnsFingerprint": "
|
|
260
|
+
"fqnsFingerprint": "a546664ea8b85d625a8b0bd86a5512e711fda2b48a7302739d7a13e39557b006"
|
|
261
261
|
},
|
|
262
262
|
"7cf96eadff395813aa548e39bea07f2f7ee382f7d312e3a5d8f383e1d35305ef": {
|
|
263
263
|
"translations": {
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
"281": 2,
|
|
318
318
|
"290": 1
|
|
319
319
|
},
|
|
320
|
-
"fqnsFingerprint": "
|
|
320
|
+
"fqnsFingerprint": "8c65b9682f7c89b0e4684159dd40c83f8de3d97deb9f3b0dcb417044344f808a"
|
|
321
321
|
},
|
|
322
322
|
"3b68af57c32b8058b455206cc3282c0d8dbeb499b50c6e0553a097c9497eb3f5": {
|
|
323
323
|
"translations": {
|
|
@@ -377,7 +377,66 @@
|
|
|
377
377
|
"281": 2,
|
|
378
378
|
"290": 1
|
|
379
379
|
},
|
|
380
|
-
"fqnsFingerprint": "
|
|
380
|
+
"fqnsFingerprint": "8c65b9682f7c89b0e4684159dd40c83f8de3d97deb9f3b0dcb417044344f808a"
|
|
381
|
+
},
|
|
382
|
+
"966827986094fa5eb687f9111aa23a0837692f4dc9706e95d08fae90fe310dd5": {
|
|
383
|
+
"translations": {
|
|
384
|
+
"python": {
|
|
385
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_kinesisanalytics_flink_alpha as kinesisanalytics_flink_alpha\nfrom aws_cdk import aws_s3 as s3\n\n# bucket is of type Bucket\n# property_map is of type object\n\napplication_code_config = kinesisanalytics_flink_alpha.ApplicationCodeConfig(\n application_code_configuration_property=ApplicationConfigurationProperty(\n application_code_configuration=ApplicationCodeConfigurationProperty(\n code_content=CodeContentProperty(\n s3_content_location=S3ContentLocationProperty(\n bucket_arn=\"bucketArn\",\n file_key=\"fileKey\",\n object_version=\"objectVersion\"\n ),\n text_content=\"textContent\",\n zip_file_content=\"zipFileContent\"\n ),\n code_content_type=\"codeContentType\"\n ),\n application_snapshot_configuration=ApplicationSnapshotConfigurationProperty(\n snapshots_enabled=False\n ),\n environment_properties=EnvironmentPropertiesProperty(\n property_groups=[PropertyGroupProperty(\n property_group_id=\"propertyGroupId\",\n property_map=property_map\n )]\n ),\n flink_application_configuration=FlinkApplicationConfigurationProperty(\n checkpoint_configuration=CheckpointConfigurationProperty(\n configuration_type=\"configurationType\",\n\n # the properties below are optional\n checkpointing_enabled=False,\n checkpoint_interval=123,\n min_pause_between_checkpoints=123\n ),\n monitoring_configuration=MonitoringConfigurationProperty(\n configuration_type=\"configurationType\",\n\n # the properties below are optional\n log_level=\"logLevel\",\n metrics_level=\"metricsLevel\"\n ),\n parallelism_configuration=ParallelismConfigurationProperty(\n configuration_type=\"configurationType\",\n\n # the properties below are optional\n auto_scaling_enabled=False,\n parallelism=123,\n parallelism_per_kpu=123\n )\n ),\n sql_application_configuration=SqlApplicationConfigurationProperty(\n inputs=[InputProperty(\n input_schema=InputSchemaProperty(\n record_columns=[RecordColumnProperty(\n name=\"name\",\n sql_type=\"sqlType\",\n\n # the properties below are optional\n mapping=\"mapping\"\n )],\n record_format=RecordFormatProperty(\n record_format_type=\"recordFormatType\",\n\n # the properties below are optional\n mapping_parameters=MappingParametersProperty(\n csv_mapping_parameters=CSVMappingParametersProperty(\n record_column_delimiter=\"recordColumnDelimiter\",\n record_row_delimiter=\"recordRowDelimiter\"\n ),\n json_mapping_parameters=JSONMappingParametersProperty(\n record_row_path=\"recordRowPath\"\n )\n )\n ),\n\n # the properties below are optional\n record_encoding=\"recordEncoding\"\n ),\n name_prefix=\"namePrefix\",\n\n # the properties below are optional\n input_parallelism=InputParallelismProperty(\n count=123\n ),\n input_processing_configuration=InputProcessingConfigurationProperty(\n input_lambda_processor=InputLambdaProcessorProperty(\n resource_arn=\"resourceArn\"\n )\n ),\n kinesis_firehose_input=KinesisFirehoseInputProperty(\n resource_arn=\"resourceArn\"\n ),\n kinesis_streams_input=KinesisStreamsInputProperty(\n resource_arn=\"resourceArn\"\n )\n )]\n ),\n zeppelin_application_configuration=ZeppelinApplicationConfigurationProperty(\n catalog_configuration=CatalogConfigurationProperty(\n glue_data_catalog_configuration=GlueDataCatalogConfigurationProperty(\n database_arn=\"databaseArn\"\n )\n ),\n custom_artifacts_configuration=[CustomArtifactConfigurationProperty(\n artifact_type=\"artifactType\",\n\n # the properties below are optional\n maven_reference=MavenReferenceProperty(\n artifact_id=\"artifactId\",\n group_id=\"groupId\",\n version=\"version\"\n ),\n s3_content_location=S3ContentLocationProperty(\n bucket_arn=\"bucketArn\",\n file_key=\"fileKey\",\n object_version=\"objectVersion\"\n )\n )],\n deploy_as_application_configuration=DeployAsApplicationConfigurationProperty(\n s3_content_location=S3ContentBaseLocationProperty(\n base_path=\"basePath\",\n bucket_arn=\"bucketArn\"\n )\n ),\n monitoring_configuration=ZeppelinMonitoringConfigurationProperty(\n log_level=\"logLevel\"\n )\n )\n ),\n bucket=bucket\n)",
|
|
386
|
+
"version": "1"
|
|
387
|
+
},
|
|
388
|
+
"csharp": {
|
|
389
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Kinesisanalytics.Flink.Alpha;\nusing Amazon.CDK.AWS.S3;\n\nBucket bucket;\nvar propertyMap;\n\nApplicationCodeConfig applicationCodeConfig = new ApplicationCodeConfig {\n ApplicationCodeConfigurationProperty = new ApplicationConfigurationProperty {\n ApplicationCodeConfiguration = new ApplicationCodeConfigurationProperty {\n CodeContent = new CodeContentProperty {\n S3ContentLocation = new S3ContentLocationProperty {\n BucketArn = \"bucketArn\",\n FileKey = \"fileKey\",\n ObjectVersion = \"objectVersion\"\n },\n TextContent = \"textContent\",\n ZipFileContent = \"zipFileContent\"\n },\n CodeContentType = \"codeContentType\"\n },\n ApplicationSnapshotConfiguration = new ApplicationSnapshotConfigurationProperty {\n SnapshotsEnabled = false\n },\n EnvironmentProperties = new EnvironmentPropertiesProperty {\n PropertyGroups = new [] { new PropertyGroupProperty {\n PropertyGroupId = \"propertyGroupId\",\n PropertyMap = propertyMap\n } }\n },\n FlinkApplicationConfiguration = new FlinkApplicationConfigurationProperty {\n CheckpointConfiguration = new CheckpointConfigurationProperty {\n ConfigurationType = \"configurationType\",\n\n // the properties below are optional\n CheckpointingEnabled = false,\n CheckpointInterval = 123,\n MinPauseBetweenCheckpoints = 123\n },\n MonitoringConfiguration = new MonitoringConfigurationProperty {\n ConfigurationType = \"configurationType\",\n\n // the properties below are optional\n LogLevel = \"logLevel\",\n MetricsLevel = \"metricsLevel\"\n },\n ParallelismConfiguration = new ParallelismConfigurationProperty {\n ConfigurationType = \"configurationType\",\n\n // the properties below are optional\n AutoScalingEnabled = false,\n Parallelism = 123,\n ParallelismPerKpu = 123\n }\n },\n SqlApplicationConfiguration = new SqlApplicationConfigurationProperty {\n Inputs = new [] { new InputProperty {\n InputSchema = new InputSchemaProperty {\n RecordColumns = new [] { new RecordColumnProperty {\n Name = \"name\",\n SqlType = \"sqlType\",\n\n // the properties below are optional\n Mapping = \"mapping\"\n } },\n RecordFormat = new RecordFormatProperty {\n RecordFormatType = \"recordFormatType\",\n\n // the properties below are optional\n MappingParameters = new MappingParametersProperty {\n CsvMappingParameters = new CSVMappingParametersProperty {\n RecordColumnDelimiter = \"recordColumnDelimiter\",\n RecordRowDelimiter = \"recordRowDelimiter\"\n },\n JsonMappingParameters = new JSONMappingParametersProperty {\n RecordRowPath = \"recordRowPath\"\n }\n }\n },\n\n // the properties below are optional\n RecordEncoding = \"recordEncoding\"\n },\n NamePrefix = \"namePrefix\",\n\n // the properties below are optional\n InputParallelism = new InputParallelismProperty {\n Count = 123\n },\n InputProcessingConfiguration = new InputProcessingConfigurationProperty {\n InputLambdaProcessor = new InputLambdaProcessorProperty {\n ResourceArn = \"resourceArn\"\n }\n },\n KinesisFirehoseInput = new KinesisFirehoseInputProperty {\n ResourceArn = \"resourceArn\"\n },\n KinesisStreamsInput = new KinesisStreamsInputProperty {\n ResourceArn = \"resourceArn\"\n }\n } }\n },\n ZeppelinApplicationConfiguration = new ZeppelinApplicationConfigurationProperty {\n CatalogConfiguration = new CatalogConfigurationProperty {\n GlueDataCatalogConfiguration = new GlueDataCatalogConfigurationProperty {\n DatabaseArn = \"databaseArn\"\n }\n },\n CustomArtifactsConfiguration = new [] { new CustomArtifactConfigurationProperty {\n ArtifactType = \"artifactType\",\n\n // the properties below are optional\n MavenReference = new MavenReferenceProperty {\n ArtifactId = \"artifactId\",\n GroupId = \"groupId\",\n Version = \"version\"\n },\n S3ContentLocation = new S3ContentLocationProperty {\n BucketArn = \"bucketArn\",\n FileKey = \"fileKey\",\n ObjectVersion = \"objectVersion\"\n }\n } },\n DeployAsApplicationConfiguration = new DeployAsApplicationConfigurationProperty {\n S3ContentLocation = new S3ContentBaseLocationProperty {\n BasePath = \"basePath\",\n BucketArn = \"bucketArn\"\n }\n },\n MonitoringConfiguration = new ZeppelinMonitoringConfigurationProperty {\n LogLevel = \"logLevel\"\n }\n }\n },\n Bucket = bucket\n};",
|
|
390
|
+
"version": "1"
|
|
391
|
+
},
|
|
392
|
+
"java": {
|
|
393
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.kinesisanalytics.flink.alpha.*;\nimport software.amazon.awscdk.services.s3.*;\n\nBucket bucket;\nObject propertyMap;\n\nApplicationCodeConfig applicationCodeConfig = ApplicationCodeConfig.builder()\n .applicationCodeConfigurationProperty(ApplicationConfigurationProperty.builder()\n .applicationCodeConfiguration(ApplicationCodeConfigurationProperty.builder()\n .codeContent(CodeContentProperty.builder()\n .s3ContentLocation(S3ContentLocationProperty.builder()\n .bucketArn(\"bucketArn\")\n .fileKey(\"fileKey\")\n .objectVersion(\"objectVersion\")\n .build())\n .textContent(\"textContent\")\n .zipFileContent(\"zipFileContent\")\n .build())\n .codeContentType(\"codeContentType\")\n .build())\n .applicationSnapshotConfiguration(ApplicationSnapshotConfigurationProperty.builder()\n .snapshotsEnabled(false)\n .build())\n .environmentProperties(EnvironmentPropertiesProperty.builder()\n .propertyGroups(List.of(PropertyGroupProperty.builder()\n .propertyGroupId(\"propertyGroupId\")\n .propertyMap(propertyMap)\n .build()))\n .build())\n .flinkApplicationConfiguration(FlinkApplicationConfigurationProperty.builder()\n .checkpointConfiguration(CheckpointConfigurationProperty.builder()\n .configurationType(\"configurationType\")\n\n // the properties below are optional\n .checkpointingEnabled(false)\n .checkpointInterval(123)\n .minPauseBetweenCheckpoints(123)\n .build())\n .monitoringConfiguration(MonitoringConfigurationProperty.builder()\n .configurationType(\"configurationType\")\n\n // the properties below are optional\n .logLevel(\"logLevel\")\n .metricsLevel(\"metricsLevel\")\n .build())\n .parallelismConfiguration(ParallelismConfigurationProperty.builder()\n .configurationType(\"configurationType\")\n\n // the properties below are optional\n .autoScalingEnabled(false)\n .parallelism(123)\n .parallelismPerKpu(123)\n .build())\n .build())\n .sqlApplicationConfiguration(SqlApplicationConfigurationProperty.builder()\n .inputs(List.of(InputProperty.builder()\n .inputSchema(InputSchemaProperty.builder()\n .recordColumns(List.of(RecordColumnProperty.builder()\n .name(\"name\")\n .sqlType(\"sqlType\")\n\n // the properties below are optional\n .mapping(\"mapping\")\n .build()))\n .recordFormat(RecordFormatProperty.builder()\n .recordFormatType(\"recordFormatType\")\n\n // the properties below are optional\n .mappingParameters(MappingParametersProperty.builder()\n .csvMappingParameters(CSVMappingParametersProperty.builder()\n .recordColumnDelimiter(\"recordColumnDelimiter\")\n .recordRowDelimiter(\"recordRowDelimiter\")\n .build())\n .jsonMappingParameters(JSONMappingParametersProperty.builder()\n .recordRowPath(\"recordRowPath\")\n .build())\n .build())\n .build())\n\n // the properties below are optional\n .recordEncoding(\"recordEncoding\")\n .build())\n .namePrefix(\"namePrefix\")\n\n // the properties below are optional\n .inputParallelism(InputParallelismProperty.builder()\n .count(123)\n .build())\n .inputProcessingConfiguration(InputProcessingConfigurationProperty.builder()\n .inputLambdaProcessor(InputLambdaProcessorProperty.builder()\n .resourceArn(\"resourceArn\")\n .build())\n .build())\n .kinesisFirehoseInput(KinesisFirehoseInputProperty.builder()\n .resourceArn(\"resourceArn\")\n .build())\n .kinesisStreamsInput(KinesisStreamsInputProperty.builder()\n .resourceArn(\"resourceArn\")\n .build())\n .build()))\n .build())\n .zeppelinApplicationConfiguration(ZeppelinApplicationConfigurationProperty.builder()\n .catalogConfiguration(CatalogConfigurationProperty.builder()\n .glueDataCatalogConfiguration(GlueDataCatalogConfigurationProperty.builder()\n .databaseArn(\"databaseArn\")\n .build())\n .build())\n .customArtifactsConfiguration(List.of(CustomArtifactConfigurationProperty.builder()\n .artifactType(\"artifactType\")\n\n // the properties below are optional\n .mavenReference(MavenReferenceProperty.builder()\n .artifactId(\"artifactId\")\n .groupId(\"groupId\")\n .version(\"version\")\n .build())\n .s3ContentLocation(S3ContentLocationProperty.builder()\n .bucketArn(\"bucketArn\")\n .fileKey(\"fileKey\")\n .objectVersion(\"objectVersion\")\n .build())\n .build()))\n .deployAsApplicationConfiguration(DeployAsApplicationConfigurationProperty.builder()\n .s3ContentLocation(S3ContentBaseLocationProperty.builder()\n .basePath(\"basePath\")\n .bucketArn(\"bucketArn\")\n .build())\n .build())\n .monitoringConfiguration(ZeppelinMonitoringConfigurationProperty.builder()\n .logLevel(\"logLevel\")\n .build())\n .build())\n .build())\n .bucket(bucket)\n .build();",
|
|
394
|
+
"version": "1"
|
|
395
|
+
},
|
|
396
|
+
"$": {
|
|
397
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as kinesisanalytics_flink_alpha from '@aws-cdk/aws-kinesisanalytics-flink-alpha';\nimport { aws_s3 as s3 } from 'aws-cdk-lib';\n\ndeclare const bucket: s3.Bucket;\ndeclare const propertyMap: any;\nconst applicationCodeConfig: kinesisanalytics_flink_alpha.ApplicationCodeConfig = {\n applicationCodeConfigurationProperty: {\n applicationCodeConfiguration: {\n codeContent: {\n s3ContentLocation: {\n bucketArn: 'bucketArn',\n fileKey: 'fileKey',\n objectVersion: 'objectVersion',\n },\n textContent: 'textContent',\n zipFileContent: 'zipFileContent',\n },\n codeContentType: 'codeContentType',\n },\n applicationSnapshotConfiguration: {\n snapshotsEnabled: false,\n },\n environmentProperties: {\n propertyGroups: [{\n propertyGroupId: 'propertyGroupId',\n propertyMap: propertyMap,\n }],\n },\n flinkApplicationConfiguration: {\n checkpointConfiguration: {\n configurationType: 'configurationType',\n\n // the properties below are optional\n checkpointingEnabled: false,\n checkpointInterval: 123,\n minPauseBetweenCheckpoints: 123,\n },\n monitoringConfiguration: {\n configurationType: 'configurationType',\n\n // the properties below are optional\n logLevel: 'logLevel',\n metricsLevel: 'metricsLevel',\n },\n parallelismConfiguration: {\n configurationType: 'configurationType',\n\n // the properties below are optional\n autoScalingEnabled: false,\n parallelism: 123,\n parallelismPerKpu: 123,\n },\n },\n sqlApplicationConfiguration: {\n inputs: [{\n inputSchema: {\n recordColumns: [{\n name: 'name',\n sqlType: 'sqlType',\n\n // the properties below are optional\n mapping: 'mapping',\n }],\n recordFormat: {\n recordFormatType: 'recordFormatType',\n\n // the properties below are optional\n mappingParameters: {\n csvMappingParameters: {\n recordColumnDelimiter: 'recordColumnDelimiter',\n recordRowDelimiter: 'recordRowDelimiter',\n },\n jsonMappingParameters: {\n recordRowPath: 'recordRowPath',\n },\n },\n },\n\n // the properties below are optional\n recordEncoding: 'recordEncoding',\n },\n namePrefix: 'namePrefix',\n\n // the properties below are optional\n inputParallelism: {\n count: 123,\n },\n inputProcessingConfiguration: {\n inputLambdaProcessor: {\n resourceArn: 'resourceArn',\n },\n },\n kinesisFirehoseInput: {\n resourceArn: 'resourceArn',\n },\n kinesisStreamsInput: {\n resourceArn: 'resourceArn',\n },\n }],\n },\n zeppelinApplicationConfiguration: {\n catalogConfiguration: {\n glueDataCatalogConfiguration: {\n databaseArn: 'databaseArn',\n },\n },\n customArtifactsConfiguration: [{\n artifactType: 'artifactType',\n\n // the properties below are optional\n mavenReference: {\n artifactId: 'artifactId',\n groupId: 'groupId',\n version: 'version',\n },\n s3ContentLocation: {\n bucketArn: 'bucketArn',\n fileKey: 'fileKey',\n objectVersion: 'objectVersion',\n },\n }],\n deployAsApplicationConfiguration: {\n s3ContentLocation: {\n basePath: 'basePath',\n bucketArn: 'bucketArn',\n },\n },\n monitoringConfiguration: {\n logLevel: 'logLevel',\n },\n },\n },\n bucket: bucket,\n};",
|
|
398
|
+
"version": "0"
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
"location": {
|
|
402
|
+
"api": {
|
|
403
|
+
"api": "type",
|
|
404
|
+
"fqn": "@aws-cdk/aws-kinesisanalytics-flink-alpha.ApplicationCodeConfig"
|
|
405
|
+
},
|
|
406
|
+
"field": {
|
|
407
|
+
"field": "example"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
"didCompile": true,
|
|
411
|
+
"fqnsReferenced": [
|
|
412
|
+
"@aws-cdk/aws-kinesisanalytics-flink-alpha.ApplicationCodeConfig",
|
|
413
|
+
"aws-cdk-lib.aws_kinesisanalytics.CfnApplicationV2.ApplicationConfigurationProperty",
|
|
414
|
+
"aws-cdk-lib.aws_s3.IBucket"
|
|
415
|
+
],
|
|
416
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as kinesisanalytics_flink_alpha from '@aws-cdk/aws-kinesisanalytics-flink-alpha';\nimport { aws_s3 as s3 } from 'aws-cdk-lib';\n\ndeclare const bucket: s3.Bucket;\ndeclare const propertyMap: any;\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst applicationCodeConfig: kinesisanalytics_flink_alpha.ApplicationCodeConfig = {\n applicationCodeConfigurationProperty: {\n applicationCodeConfiguration: {\n codeContent: {\n s3ContentLocation: {\n bucketArn: 'bucketArn',\n fileKey: 'fileKey',\n objectVersion: 'objectVersion',\n },\n textContent: 'textContent',\n zipFileContent: 'zipFileContent',\n },\n codeContentType: 'codeContentType',\n },\n applicationSnapshotConfiguration: {\n snapshotsEnabled: false,\n },\n environmentProperties: {\n propertyGroups: [{\n propertyGroupId: 'propertyGroupId',\n propertyMap: propertyMap,\n }],\n },\n flinkApplicationConfiguration: {\n checkpointConfiguration: {\n configurationType: 'configurationType',\n\n // the properties below are optional\n checkpointingEnabled: false,\n checkpointInterval: 123,\n minPauseBetweenCheckpoints: 123,\n },\n monitoringConfiguration: {\n configurationType: 'configurationType',\n\n // the properties below are optional\n logLevel: 'logLevel',\n metricsLevel: 'metricsLevel',\n },\n parallelismConfiguration: {\n configurationType: 'configurationType',\n\n // the properties below are optional\n autoScalingEnabled: false,\n parallelism: 123,\n parallelismPerKpu: 123,\n },\n },\n sqlApplicationConfiguration: {\n inputs: [{\n inputSchema: {\n recordColumns: [{\n name: 'name',\n sqlType: 'sqlType',\n\n // the properties below are optional\n mapping: 'mapping',\n }],\n recordFormat: {\n recordFormatType: 'recordFormatType',\n\n // the properties below are optional\n mappingParameters: {\n csvMappingParameters: {\n recordColumnDelimiter: 'recordColumnDelimiter',\n recordRowDelimiter: 'recordRowDelimiter',\n },\n jsonMappingParameters: {\n recordRowPath: 'recordRowPath',\n },\n },\n },\n\n // the properties below are optional\n recordEncoding: 'recordEncoding',\n },\n namePrefix: 'namePrefix',\n\n // the properties below are optional\n inputParallelism: {\n count: 123,\n },\n inputProcessingConfiguration: {\n inputLambdaProcessor: {\n resourceArn: 'resourceArn',\n },\n },\n kinesisFirehoseInput: {\n resourceArn: 'resourceArn',\n },\n kinesisStreamsInput: {\n resourceArn: 'resourceArn',\n },\n }],\n },\n zeppelinApplicationConfiguration: {\n catalogConfiguration: {\n glueDataCatalogConfiguration: {\n databaseArn: 'databaseArn',\n },\n },\n customArtifactsConfiguration: [{\n artifactType: 'artifactType',\n\n // the properties below are optional\n mavenReference: {\n artifactId: 'artifactId',\n groupId: 'groupId',\n version: 'version',\n },\n s3ContentLocation: {\n bucketArn: 'bucketArn',\n fileKey: 'fileKey',\n objectVersion: 'objectVersion',\n },\n }],\n deployAsApplicationConfiguration: {\n s3ContentLocation: {\n basePath: 'basePath',\n bucketArn: 'bucketArn',\n },\n },\n monitoringConfiguration: {\n logLevel: 'logLevel',\n },\n },\n },\n bucket: bucket,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
417
|
+
"syntaxKindCounter": {
|
|
418
|
+
"8": 5,
|
|
419
|
+
"10": 37,
|
|
420
|
+
"75": 90,
|
|
421
|
+
"91": 3,
|
|
422
|
+
"125": 1,
|
|
423
|
+
"130": 2,
|
|
424
|
+
"153": 2,
|
|
425
|
+
"169": 2,
|
|
426
|
+
"192": 4,
|
|
427
|
+
"193": 34,
|
|
428
|
+
"225": 3,
|
|
429
|
+
"242": 3,
|
|
430
|
+
"243": 3,
|
|
431
|
+
"254": 2,
|
|
432
|
+
"255": 2,
|
|
433
|
+
"256": 1,
|
|
434
|
+
"257": 1,
|
|
435
|
+
"258": 1,
|
|
436
|
+
"281": 78,
|
|
437
|
+
"290": 1
|
|
438
|
+
},
|
|
439
|
+
"fqnsFingerprint": "9a869bf3b7b4cfe6bcdce09c8c89bf7cb80f9109b56786845817d0ba015054ab"
|
|
381
440
|
},
|
|
382
441
|
"cdf99cf34c5b63c6bcc5d3aa7ddde62de179caf49787abfa705d45716f865ad3": {
|
|
383
442
|
"translations": {
|
|
@@ -437,7 +496,7 @@
|
|
|
437
496
|
"281": 2,
|
|
438
497
|
"290": 1
|
|
439
498
|
},
|
|
440
|
-
"fqnsFingerprint": "
|
|
499
|
+
"fqnsFingerprint": "8c65b9682f7c89b0e4684159dd40c83f8de3d97deb9f3b0dcb417044344f808a"
|
|
441
500
|
},
|
|
442
501
|
"f5a80bf7918161f368caffc9a6e746a80127884d119326e5bcb6a4e0faa4e616": {
|
|
443
502
|
"translations": {
|
|
@@ -506,7 +565,7 @@
|
|
|
506
565
|
"281": 12,
|
|
507
566
|
"290": 1
|
|
508
567
|
},
|
|
509
|
-
"fqnsFingerprint": "
|
|
568
|
+
"fqnsFingerprint": "a546664ea8b85d625a8b0bd86a5512e711fda2b48a7302739d7a13e39557b006"
|
|
510
569
|
},
|
|
511
570
|
"a94ad28544ed0016129662e03839c1aca389daa6e2fbe9408ada860f2e2f6118": {
|
|
512
571
|
"translations": {
|
|
@@ -575,7 +634,7 @@
|
|
|
575
634
|
"281": 12,
|
|
576
635
|
"290": 1
|
|
577
636
|
},
|
|
578
|
-
"fqnsFingerprint": "
|
|
637
|
+
"fqnsFingerprint": "a546664ea8b85d625a8b0bd86a5512e711fda2b48a7302739d7a13e39557b006"
|
|
579
638
|
},
|
|
580
639
|
"3cbce467c559b4b2193c6d43044ee77d743570e180a72fd2b7be41f9bd408a5d": {
|
|
581
640
|
"translations": {
|
|
@@ -634,7 +693,7 @@
|
|
|
634
693
|
"281": 6,
|
|
635
694
|
"290": 1
|
|
636
695
|
},
|
|
637
|
-
"fqnsFingerprint": "
|
|
696
|
+
"fqnsFingerprint": "7a2fd1d197dd66f8abf7cc904555bc254d0a7b8c86b7653281eb13929624a7f8"
|
|
638
697
|
},
|
|
639
698
|
"9cbf636e0ee0c5440ee463e3364076764774e829e2091e22b96ba2a7dd17b5d6": {
|
|
640
699
|
"translations": {
|
|
@@ -694,7 +753,7 @@
|
|
|
694
753
|
"281": 2,
|
|
695
754
|
"290": 1
|
|
696
755
|
},
|
|
697
|
-
"fqnsFingerprint": "
|
|
756
|
+
"fqnsFingerprint": "8c65b9682f7c89b0e4684159dd40c83f8de3d97deb9f3b0dcb417044344f808a"
|
|
698
757
|
}
|
|
699
758
|
}
|
|
700
759
|
}
|
package/LICENSE
CHANGED
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright 2018-
|
|
189
|
+
Copyright 2018-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
package/NOTICE
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
AWS Cloud Development Kit (AWS CDK)
|
|
2
|
-
Copyright 2018-
|
|
2
|
+
Copyright 2018-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
package/lib/application-code.js
CHANGED
|
@@ -38,7 +38,7 @@ class ApplicationCode {
|
|
|
38
38
|
}
|
|
39
39
|
exports.ApplicationCode = ApplicationCode;
|
|
40
40
|
_a = JSII_RTTI_SYMBOL_1;
|
|
41
|
-
ApplicationCode[_a] = { fqn: "@aws-cdk/aws-kinesisanalytics-flink-alpha.ApplicationCode", version: "2.
|
|
41
|
+
ApplicationCode[_a] = { fqn: "@aws-cdk/aws-kinesisanalytics-flink-alpha.ApplicationCode", version: "2.6.0-alpha.0" };
|
|
42
42
|
class BucketApplicationCode extends ApplicationCode {
|
|
43
43
|
constructor(props) {
|
|
44
44
|
super();
|
package/lib/application.js
CHANGED
|
@@ -150,7 +150,7 @@ class Application extends ApplicationBase {
|
|
|
150
150
|
}
|
|
151
151
|
exports.Application = Application;
|
|
152
152
|
_a = JSII_RTTI_SYMBOL_1;
|
|
153
|
-
Application[_a] = { fqn: "@aws-cdk/aws-kinesisanalytics-flink-alpha.Application", version: "2.
|
|
153
|
+
Application[_a] = { fqn: "@aws-cdk/aws-kinesisanalytics-flink-alpha.Application", version: "2.6.0-alpha.0" };
|
|
154
154
|
function applicationArnComponents(resourceName) {
|
|
155
155
|
return {
|
|
156
156
|
service: 'kinesisanalytics',
|
package/lib/types.js
CHANGED
|
@@ -47,7 +47,7 @@ class Runtime {
|
|
|
47
47
|
}
|
|
48
48
|
exports.Runtime = Runtime;
|
|
49
49
|
_a = JSII_RTTI_SYMBOL_1;
|
|
50
|
-
Runtime[_a] = { fqn: "@aws-cdk/aws-kinesisanalytics-flink-alpha.Runtime", version: "2.
|
|
50
|
+
Runtime[_a] = { fqn: "@aws-cdk/aws-kinesisanalytics-flink-alpha.Runtime", version: "2.6.0-alpha.0" };
|
|
51
51
|
/**
|
|
52
52
|
* (experimental) Flink Version 1.6.
|
|
53
53
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-cdk/aws-kinesisanalytics-flink-alpha",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0-alpha.0",
|
|
4
4
|
"description": "A CDK Construct Library for Kinesis Analytics Flink applications",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -77,18 +77,18 @@
|
|
|
77
77
|
},
|
|
78
78
|
"license": "Apache-2.0",
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@aws-cdk/cdk-build-tools": "2.
|
|
81
|
-
"@aws-cdk/cdk-integ-tools": "2.
|
|
82
|
-
"@aws-cdk/pkglint": "2.
|
|
80
|
+
"@aws-cdk/cdk-build-tools": "2.6.0",
|
|
81
|
+
"@aws-cdk/cdk-integ-tools": "2.6.0",
|
|
82
|
+
"@aws-cdk/pkglint": "2.6.0",
|
|
83
83
|
"@types/jest": "^27.0.3",
|
|
84
|
-
"jest": "^27.4.
|
|
85
|
-
"aws-cdk-lib": "2.
|
|
84
|
+
"jest": "^27.4.5",
|
|
85
|
+
"aws-cdk-lib": "2.6.0",
|
|
86
86
|
"constructs": "^10.0.0"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {},
|
|
89
89
|
"homepage": "https://github.com/aws/aws-cdk",
|
|
90
90
|
"peerDependencies": {
|
|
91
|
-
"aws-cdk-lib": "^2.
|
|
91
|
+
"aws-cdk-lib": "^2.6.0",
|
|
92
92
|
"constructs": "^10.0.0"
|
|
93
93
|
},
|
|
94
94
|
"engines": {
|