Skip to content

Commit 4766663

Browse files
authored
Merge branch 'main' into merge-back/2.175.0
2 parents 703e81f + 393e5c0 commit 4766663

21 files changed

+579
-180
lines changed

packages/@aws-cdk-testing/framework-integ/test/aws-appconfig/test/integ.environment.js.snapshot/appconfigenvironmentDefaultTestDeployAssert75BD28E7.assets.json

+1-1
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-appconfig/test/integ.environment.js.snapshot/aws-appconfig-environment.assets.json

+3-3
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-appconfig/test/integ.environment.js.snapshot/aws-appconfig-environment.template.json

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
"ApplicationId": {
127127
"Ref": "MyApplicationForEnv1F597ED9"
128128
},
129+
"DeletionProtectionCheck": "ACCOUNT_DEFAULT",
129130
"Description": "This is the environment for integ testing",
130131
"Monitors": [
131132
{

packages/@aws-cdk-testing/framework-integ/test/aws-appconfig/test/integ.environment.js.snapshot/cdk.out

+1-1
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-appconfig/test/integ.environment.js.snapshot/integ.json

+1-1
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-appconfig/test/integ.environment.js.snapshot/manifest.json

+2-11
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-appconfig/test/integ.environment.js.snapshot/tree.json

+57-56
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-appconfig/test/integ.environment.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { IntegTest } from '@aws-cdk/integ-tests-alpha';
22
import { App, Duration, PhysicalName, Stack } from 'aws-cdk-lib';
33
import { Alarm, ComparisonOperator, CompositeAlarm, Metric, TreatMissingData } from 'aws-cdk-lib/aws-cloudwatch';
44
import { Role, ServicePrincipal, Effect, PolicyStatement, PolicyDocument } from 'aws-cdk-lib/aws-iam';
5-
import { Application, ConfigurationContent, DeploymentStrategy, Environment, HostedConfiguration, Monitor, RolloutStrategy } from 'aws-cdk-lib/aws-appconfig';
5+
import { Application, ConfigurationContent, DeletionProtectionCheck, DeploymentStrategy, Environment, HostedConfiguration, Monitor, RolloutStrategy } from 'aws-cdk-lib/aws-appconfig';
66

77
const app = new App();
88

@@ -54,6 +54,7 @@ const compositeAlarm = new CompositeAlarm(stack, 'MyCompositeAlarm', {
5454
const env = new Environment(stack, 'MyEnvironment', {
5555
application: appForEnv,
5656
description: 'This is the environment for integ testing',
57+
deletionProtectionCheck: DeletionProtectionCheck.ACCOUNT_DEFAULT,
5758
monitors: [
5859
Monitor.fromCloudWatchAlarm(alarm),
5960
Monitor.fromCfnMonitorsProperty({

0 commit comments

Comments
 (0)