Class ApiGatewayRequestIdentity
- java.lang.Object
-
- io.quarkus.amazon.lambda.http.model.ApiGatewayRequestIdentity
-
public class ApiGatewayRequestIdentity extends Object
Identity model for the API Gateway request context. This is used in the default AwsProxyRequest object. Contains all of the properties declared in the $context.identity API Gateway object so could be re-used for other implementations- See Also:
AwsProxyRequest,RequestReader
-
-
Constructor Summary
Constructors Constructor Description ApiGatewayRequestIdentity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAccessKey()StringgetAccountId()StringgetApiKey()StringgetApiKeyId()StringgetCaller()StringgetCognitoAuthenticationProvider()StringgetCognitoAuthenticationType()StringgetCognitoIdentityId()StringgetCognitoIdentityPoolId()StringgetSourceIp()StringgetUser()StringgetUserAgent()StringgetUserArn()voidsetAccessKey(String accessKey)voidsetAccountId(String accountId)voidsetApiKey(String apiKey)voidsetApiKeyId(String apiKeyId)voidsetCaller(String caller)voidsetCognitoAuthenticationProvider(String cognitoAuthenticationProvider)voidsetCognitoAuthenticationType(String cognitoAuthenticationType)voidsetCognitoIdentityId(String cognitoIdentityId)voidsetCognitoIdentityPoolId(String cognitoIdentityPoolId)voidsetSourceIp(String sourceIp)voidsetUser(String user)voidsetUserAgent(String userAgent)voidsetUserArn(String userArn)
-
-
-
Method Detail
-
getApiKey
public String getApiKey()
-
setApiKey
public void setApiKey(String apiKey)
-
getApiKeyId
public String getApiKeyId()
-
setApiKeyId
public void setApiKeyId(String apiKeyId)
-
getUserArn
public String getUserArn()
-
setUserArn
public void setUserArn(String userArn)
-
getCognitoAuthenticationType
public String getCognitoAuthenticationType()
-
setCognitoAuthenticationType
public void setCognitoAuthenticationType(String cognitoAuthenticationType)
-
getCaller
public String getCaller()
-
setCaller
public void setCaller(String caller)
-
getUserAgent
public String getUserAgent()
-
setUserAgent
public void setUserAgent(String userAgent)
-
getUser
public String getUser()
-
setUser
public void setUser(String user)
-
getCognitoIdentityPoolId
public String getCognitoIdentityPoolId()
-
setCognitoIdentityPoolId
public void setCognitoIdentityPoolId(String cognitoIdentityPoolId)
-
getCognitoIdentityId
public String getCognitoIdentityId()
-
setCognitoIdentityId
public void setCognitoIdentityId(String cognitoIdentityId)
-
getCognitoAuthenticationProvider
public String getCognitoAuthenticationProvider()
-
setCognitoAuthenticationProvider
public void setCognitoAuthenticationProvider(String cognitoAuthenticationProvider)
-
getSourceIp
public String getSourceIp()
-
setSourceIp
public void setSourceIp(String sourceIp)
-
getAccountId
public String getAccountId()
-
setAccountId
public void setAccountId(String accountId)
-
getAccessKey
public String getAccessKey()
-
setAccessKey
public void setAccessKey(String accessKey)
-
-