Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
exclude s3 from go codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
brentlemons committed Mar 13, 2022
1 parent 9b564cd commit b1d103d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions aws_lambda_events_codegen/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ fn get_ignorelist() -> HashSet<String> {
ignore.insert("dynamodb".to_string());
// Statically implements SNS
ignore.insert("sns".to_string());
// Statically implements S3
ignore.insert("s3".to_string());
// https://github.com/aws/aws-lambda-go/blob/master/events/epoch_time.go
ignore.insert("epoch_time".to_string());
// Cloudwatch Events are fully implemented statically
Expand Down

0 comments on commit b1d103d

Please sign in to comment.