namespace Amazon.Lambda.Core { /// /// Information about the client application that invoked the Lambda function. /// public interface IClientApplication { /// /// The application's package name. /// string AppPackageName { get; } /// /// The application's title. /// string AppTitle { get; } /// /// The application's version code. /// string AppVersionCode { get; } /// /// The application's version. /// string AppVersionName { get; } /// /// The application's installation id. /// string InstallationId { get; } } }