Skip to content

Commit 7c52c37

Browse files
authored
Merge branch 'main' into update-integ-test-waiter-log-group
2 parents 588b6c4 + 6d16337 commit 7c52c37

File tree

33 files changed

+413
-327
lines changed

33 files changed

+413
-327
lines changed

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.cfn-template-from-repo.lit.js.snapshot/aws-cdk-codepipeline-cloudformation.assets.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.cfn-template-from-repo.lit.js.snapshot/aws-cdk-codepipeline-cloudformation.template.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -795,6 +795,7 @@
795795
{
796796
"Action": [
797797
"cloudformation:DescribeChangeSet",
798+
"cloudformation:DescribeStackEvents",
798799
"cloudformation:DescribeStacks",
799800
"cloudformation:ExecuteChangeSet"
800801
],

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.cfn-template-from-repo.lit.js.snapshot/cdk.out

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.cfn-template-from-repo.lit.js.snapshot/integ.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.cfn-template-from-repo.lit.js.snapshot/manifest.json

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.cfn-template-from-repo.lit.js.snapshot/tree.json

Lines changed: 10 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk/aws-kinesisanalytics-flink-alpha/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const flinkApp = new flink.Application(this, 'Application', {
4646
},
4747
},
4848
// ...
49-
runtime: flink.Runtime.FLINK_1_15,
49+
runtime: flink.Runtime.FLINK_1_18,
5050
code: flink.ApplicationCode.fromBucket(bucket, 'my-app.jar'),
5151
});
5252
```
@@ -59,7 +59,7 @@ snapshotting, monitoring, and parallelism.
5959
declare const bucket: s3.Bucket;
6060
const flinkApp = new flink.Application(this, 'Application', {
6161
code: flink.ApplicationCode.fromBucket(bucket, 'my-app.jar'),
62-
runtime: flink.Runtime.FLINK_1_15,
62+
runtime: flink.Runtime.FLINK_1_18,
6363
checkpointingEnabled: true, // default is true
6464
checkpointInterval: Duration.seconds(30), // default is 1 minute
6565
minPauseBetweenCheckpoints: Duration.seconds(10), // default is 5 seconds
@@ -80,7 +80,7 @@ declare const bucket: s3.Bucket;
8080
declare const vpc: ec2.Vpc;
8181
const flinkApp = new flink.Application(this, 'Application', {
8282
code: flink.ApplicationCode.fromBucket(bucket, 'my-app.jar'),
83-
runtime: flink.Runtime.FLINK_1_15,
83+
runtime: flink.Runtime.FLINK_1_18,
8484
vpc,
8585
});
8686
```

packages/@aws-cdk/aws-kinesisanalytics-flink-alpha/lib/types.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ export class Runtime {
6666
/** Flink Version 1.15 */
6767
public static readonly FLINK_1_15 = Runtime.of('FLINK-1_15');
6868

69+
/** Flink Version 1.18 */
70+
public static readonly FLINK_1_18 = Runtime.of('FLINK-1_18');
71+
6972
/** Create a new Runtime with with an arbitrary Flink version string */
7073
public static of(value: string) {
7174
return new Runtime(value);

packages/@aws-cdk/aws-kinesisanalytics-flink-alpha/test/integ.application-code-from-bucket.lit.js.snapshot/FlinkAppCodeFromBucketTest.assets.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk/aws-kinesisanalytics-flink-alpha/test/integ.application-code-from-bucket.lit.js.snapshot/FlinkAppCodeFromBucketTest.template.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -147,13 +147,6 @@
147147
"AppF1B96344": {
148148
"Type": "AWS::KinesisAnalyticsV2::Application",
149149
"Properties": {
150-
"RuntimeEnvironment": "FLINK-1_11",
151-
"ServiceExecutionRole": {
152-
"Fn::GetAtt": [
153-
"AppRole1AF9B530",
154-
"Arn"
155-
]
156-
},
157150
"ApplicationConfiguration": {
158151
"ApplicationCodeConfiguration": {
159152
"CodeContent": {
@@ -181,6 +174,13 @@
181174
"ApplicationSnapshotConfiguration": {
182175
"SnapshotsEnabled": true
183176
}
177+
},
178+
"RuntimeEnvironment": "FLINK-1_18",
179+
"ServiceExecutionRole": {
180+
"Fn::GetAtt": [
181+
"AppRole1AF9B530",
182+
"Arn"
183+
]
184184
}
185185
},
186186
"DependsOn": [

0 commit comments

Comments
 (0)