namespace Amazon.Lambda.Core
{
///
/// Information related to Amazon Congnito identities.
///
public interface ICognitoIdentity
{
///
/// The Amazon Cognito identity ID.
///
string IdentityId { get; }
///
/// The Amazon Cognito identity pool ID.
///
string IdentityPoolId { get; }
}
}