All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.aws.lambda.events.dynamodb.Identity Maven / Gradle / Ivy


package io.aws.lambda.events.dynamodb;

import lombok.Data;
import lombok.experimental.Accessors;

import java.io.Serializable;

/**
 * Contains details about the type of identity that made the request.
 * 
 * @see AWS API Documentation
 */
@Data
@Accessors(chain = true)
public class Identity implements Serializable {

    /**
     * A unique identifier for the entity that made the call. For Time To Live, the
     * principalId is "dynamodb.amazonaws.com".
     */
    private String principalId;

    /**
     * The type of the identity. For Time To Live, the type is "Service".
     */
    private String type;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy