namespace Amazon.Lambda.Core { using System.Collections.Generic; /// /// Information about client configuration and execution environment. /// public interface IClientContext { /// /// Environment information provided by mobile SDK. /// IDictionary Environment { get; } /// /// The client information provided by the AWS Mobile SDK. /// IClientApplication Client { get; } /// /// Custom values set by the client application. /// IDictionary Custom { get; } } }