io.aws.lambda.events.cognito.CognitoUserPoolPostAuthenticationEvent Maven / Gradle / Ivy
package io.aws.lambda.events.cognito;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import java.util.Map;
/**
* Represent the class for the Cognito User Pool Post Authentication Lambda
* Trigger
*
* @see Post
* Authentication Lambda Trigger
* @author Anton Kurako (GoodforGod)
* @since 24.07.2021
*/
@Data
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = true)
public class CognitoUserPoolPostAuthenticationEvent extends CognitoUserPoolEvent {
/**
* The request from the Amazon Cognito service.
*/
private Request request;
@Data
@EqualsAndHashCode(callSuper = true)
public static class Request extends CognitoUserPoolEvent.Request {
/**
* One or more key-value pairs that you can provide as custom input to the
* Lambda function that you specify for the post authentication trigger.
*/
private Map clientMetadata;
/**
* This flag indicates if the user has signed in on a new device.
*/
private boolean newDeviceUsed;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy