We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 445402f commit 9a68171Copy full SHA for 9a68171
Sources/AWSLambdaRuntimeCore/LambdaRuntimeClientProtocol.swift
@@ -28,6 +28,11 @@ package protocol LambdaRuntimeClientProtocol {
28
}
29
30
package struct Invocation {
31
- package let metadata: InvocationMetadata
32
- package let event: ByteBuffer
+ package var metadata: InvocationMetadata
+ package var event: ByteBuffer
33
+
34
+ package init(metadata: InvocationMetadata, event: ByteBuffer) {
35
+ self.metadata = metadata
36
+ self.event = event
37
+ }
38
0 commit comments