File tree Expand file tree Collapse file tree 5 files changed +8
-3
lines changed
Expand file tree Collapse file tree 5 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1414
1515import class Foundation. JSONEncoder
1616
17+ // https://docs.aws.amazon.com/lambda/latest/dg/services-apigateway.html
1718// https://docs.aws.amazon.com/apigateway/latest/developerguide/set-up-lambda-proxy-integrations.html
1819
1920public enum APIGateway {
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ public enum Cloudwatch {
3131 /// CloudWatch.Event is the outer structure of an event sent via CloudWatch Events.
3232 ///
3333 /// **NOTE**: For examples of events that come via CloudWatch Events, see
34+ /// https://docs.aws.amazon.com/lambda/latest/dg/services-cloudwatchevents.html
3435 /// https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/EventTypes.html
3536 /// https://docs.aws.amazon.com/eventbridge/latest/userguide/event-types.html
3637 public struct Event < Detail: CloudwatchDetail > : Decodable {
Original file line number Diff line number Diff line change 1414
1515import struct Foundation. Date
1616
17- // https://github.com/aws/aws-lambda-go/blob/master/events/s3.go
17+ // https://docs.aws.amazon.com/lambda/latest/dg/with-s3.html
18+
1819public enum S3 {
1920 public struct Event : Decodable {
2021 public struct Record : Decodable {
Original file line number Diff line number Diff line change 1414
1515import struct Foundation. Date
1616
17- /// https://github.com/aws/aws-lambda-go/blob/master/events/sns.go
17+ // https://docs.aws.amazon.com/lambda/latest/dg/with-sns.html
18+
1819public enum SNS {
1920 public struct Event : Decodable {
2021 public struct Record : Decodable {
Original file line number Diff line number Diff line change 1212//
1313//===----------------------------------------------------------------------===//
1414
15- /// https://github.com/aws/aws-lambda-go/blob/master/events/sqs.go
15+ // https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html
16+
1617public enum SQS {
1718 public struct Event : Decodable {
1819 public let records : [ Message ]
You can’t perform that action at this time.
0 commit comments