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 String
getAccessKey()
String
getAccountId()
String
getApiKey()
String
getApiKeyId()
String
getCaller()
String
getCognitoAuthenticationProvider()
String
getCognitoAuthenticationType()
String
getCognitoIdentityId()
String
getCognitoIdentityPoolId()
String
getSourceIp()
String
getUser()
String
getUserAgent()
String
getUserArn()
void
setAccessKey(String accessKey)
void
setAccountId(String accountId)
void
setApiKey(String apiKey)
void
setApiKeyId(String apiKeyId)
void
setCaller(String caller)
void
setCognitoAuthenticationProvider(String cognitoAuthenticationProvider)
void
setCognitoAuthenticationType(String cognitoAuthenticationType)
void
setCognitoIdentityId(String cognitoIdentityId)
void
setCognitoIdentityPoolId(String cognitoIdentityPoolId)
void
setSourceIp(String sourceIp)
void
setUser(String user)
void
setUserAgent(String userAgent)
void
setUserArn(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)
-
-