Skip to content

Commit

Permalink
test: update integ test
Browse files Browse the repository at this point in the history
  • Loading branch information
ren-yamanashi committed Jan 13, 2025
1 parent 03948d8 commit f16fa90
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"PinpointApp": {
"Type": "AWS::Pinpoint::App",
"Properties": {
"Name": "MyPinpointApp"
"Name": "SamplePinpointApp"
},
"UpdateReplacePolicy": "Delete",
"DeletionPolicy": "Delete"
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class TestStack extends Stack {
super(scope, id);

const pinpointApp = new CfnApp(this, 'PinpointApp', {
name: 'MyPinpointApp',
name: 'SamplePinpointApp',
});
pinpointApp.applyRemovalPolicy(RemovalPolicy.DESTROY);

Expand Down

0 comments on commit f16fa90

Please sign in to comment.