using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Amazon.Lambda.Core;
namespace Amazon.Lambda.TestUtilities
{
///
/// A test implementation of the ICognitoIdentity interface used for writing local tests of Lambda Functions.
///
public class TestCognitoIdentity : ICognitoIdentity
{
///
/// The Amazon Cognito identity ID.
///
public string IdentityId { get; set; }
///
/// The Amazon Cognito identity pool ID.
///
public string IdentityPoolId { get; set; }
}
}