-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into comcalvi/improved-nested-stack-diff
- Loading branch information
Showing
75 changed files
with
7,772 additions
and
2,318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
packages/@aws-cdk-testing/framework-integ/test/aws-lambda/test/dotnet-handler/handler.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.SystemTextJson.DefaultLambdaJsonSerializer))] | ||
|
||
namespace Handler; | ||
|
||
public class Function { | ||
public Function() {} | ||
|
||
public async Task<APIGatewayProxyResponse> Handler(APIGatewayProxyRequest request) { | ||
var id = request.PathParameters["id"]; | ||
|
||
return new APIGatewayProxyResponse { | ||
StatusCode = (int)HttpStatusCode.OK, | ||
Body = JsonSerializer.Serialize(databaseRecord) | ||
}; | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...ith_dualStack_vpc.js.snapshot/DualStackTestingDefaultTestDeployAssert8ACBFB2C.assets.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
36 changes: 36 additions & 0 deletions
36
...h_dualStack_vpc.js.snapshot/DualStackTestingDefaultTestDeployAssert8ACBFB2C.template.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
32 changes: 32 additions & 0 deletions
32
...test/aws-lambda/test/integ.lambda_with_dualStack_vpc.js.snapshot/DualStackVpc.assets.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.