File tree 5 files changed +12
-5
lines changed
csharp/src/TheSimpleWebservice
src/main/java/com/cdkpatterns
5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 6
6
</PropertyGroup >
7
7
8
8
<ItemGroup >
9
- <PackageReference Include =" Amazon.CDK" Version =" 1.57.0" />
10
- <PackageReference Include =" Amazon.CDK.AWS.APIGatewayv2" Version =" 1.57.0" />
11
- <PackageReference Include =" Amazon.CDK.AWS.DynamoDB" Version =" 1.57.0" />
9
+ <PackageReference Include =" Amazon.CDK" Version =" 1.83.0" />
10
+ <PackageReference Include =" Amazon.CDK.AWS.APIGatewayv2" Version =" 1.83.0" />
11
+ <PackageReference Include =" Amazon.CDK.AWS.APIGatewayv2.Integrations" Version =" 1.83.0" />
12
+ <PackageReference Include =" Amazon.CDK.AWS.DynamoDB" Version =" 1.83.0" />
12
13
</ItemGroup >
13
14
14
15
</Project >
Original file line number Diff line number Diff line change 1
1
using System . Collections . Generic ;
2
2
using Amazon . CDK ;
3
3
using Amazon . CDK . AWS . APIGatewayv2 ;
4
+ using Amazon . CDK . AWS . APIGatewayv2 . Integrations ;
4
5
using Amazon . CDK . AWS . DynamoDB ;
5
6
using Amazon . CDK . AWS . Lambda ;
6
7
Original file line number Diff line number Diff line change 71
71
<artifactId >apigatewayv2</artifactId >
72
72
<version >${cdk.version} </version >
73
73
</dependency >
74
+ <dependency >
75
+ <groupId >software.amazon.awscdk</groupId >
76
+ <artifactId >apigatewayv2-integrations</artifactId >
77
+ <version >${cdk.version} </version >
78
+ </dependency >
74
79
</dependencies >
75
80
</project >
Original file line number Diff line number Diff line change 5
5
import software .amazon .awscdk .core .Stack ;
6
6
import software .amazon .awscdk .core .StackProps ;
7
7
import software .amazon .awscdk .services .apigatewayv2 .HttpApi ;
8
- import software .amazon .awscdk .services .apigatewayv2 .LambdaProxyIntegration ;
8
+ import software .amazon .awscdk .services .apigatewayv2 .integrations . LambdaProxyIntegration ;
9
9
import software .amazon .awscdk .services .dynamodb .Attribute ;
10
10
import software .amazon .awscdk .services .dynamodb .AttributeType ;
11
11
import software .amazon .awscdk .services .dynamodb .Table ;
Original file line number Diff line number Diff line change 19
19
<maven .compiler.version>3.8.1</maven .compiler.version>
20
20
<maven .surefire.version>3.0.0-M5</maven .surefire.version>
21
21
22
- <cdk .version>1.69 .0</cdk .version>
22
+ <cdk .version>1.83 .0</cdk .version>
23
23
24
24
<junit .version>5.7.0</junit .version>
25
25
<assertj .version>3.16.1</assertj .version>
You can’t perform that action at this time.
0 commit comments