using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace Amazon.Runtime { /// /// Interface for enumerables consumed by the customer /// to read responses or result keys /// /// public interface IPaginatedEnumerable #if BCL : IEnumerable #elif AWS_ASYNC_ENUMERABLES_API : IAsyncEnumerable #endif { } }