-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Objects to represent VPC Lattice V2 request and response. #442
Conversation
Great just created #443 for it (forgot to hit submit yesterday). As per https://docs.aws.amazon.com/lambda/latest/dg/services-vpc-lattice.html#vpc-lattice-receiving-events |
Added |
aws-lambda-java-events/pom.xml
Outdated
@@ -50,6 +50,11 @@ | |||
<artifactId>joda-time</artifactId> | |||
<version>2.10.8</version> | |||
</dependency> | |||
<dependency> | |||
<groupId>com.google.code.findbugs</groupId> | |||
<artifactId>jsr305</artifactId> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we shouldn't add that dependency for everyone
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've changed the dependency to the jetbrains one. There is no standard for this yet, which is a shame. I think it's important to describe the data of the events as best as we can. I hope that @Nullable
will be an annotation that is added to more events in the future.
...nts/src/main/java/com/amazonaws/services/lambda/runtime/events/VpcLatticeV2RequestEvent.java
Outdated
Show resolved
Hide resolved
would it be possible to have Json samples of this event? it will allow us to test serialization. |
Issue #, if available:
n/a
Description of changes:
Objects to represent VPC Lattice V2 request and response as documented https://docs.aws.amazon.com/vpc-lattice/latest/ug/lambda-functions.html
Target (OCI, Managed Runtime, both): n/a
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.