com.amazonaws.services.lambda.runtime.CognitoIdentity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-lambda-java-core Show documentation
Show all versions of aws-lambda-java-core Show documentation
Minimal set of interface definitions for Java support in AWS Lambda
/* Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. */
package com.amazonaws.services.lambda.runtime;
/**
* Provides information related to Amazon Congnito identities.
*
*/
public interface CognitoIdentity {
/**
* Gets the Amazon Cognito identity ID
*
*/
public String getIdentityId();
/**
* Gets the Amazon Cognito identity pool ID
*
*/
public String getIdentityPoolId();
}