I have an iOS Shopping App and want to call a lambda Function for logging. But i dont want to call the lambda function by an API Gateway to save costs. Is there a possibility to send logs to Lambda by using the iOS SDK of Amazon?
相关问题
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
- How to generate 12 digit unique number in redshift
相关文章
- 现在使用swift开发ios应用好还是swift?
- Right way to deploy Rails + Puma + Postgres app to
- how many objects are returned by aws s3api list-ob
- Why doesn't C11 support lambda functions
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- AWS S3 in rails - how to set the s3_signature_vers
- Where does a host app handle NSExtensionContext#co
You can invoke lambda functions directly using the AWS iOS SDK. Here is a code snippet
The integration test shown here https://github.com/aws-amplify/aws-sdk-ios/blob/335e4d82a641fdb9cdc84773bf115951e850b884/AWSLambdaTests/AWSLambdaTests.m#L110 demonstrates how you can invoke a lamdba function and validate the results.