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

io.aws.lambda.events.system.SecretsManagerRotationEvent Maven / Gradle / Ivy


package io.aws.lambda.events.system;

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

/**
 * Class to represent the events which are sent during a Secrets Manager
 * rotation process.
 * 
 * @see Rotating
 *      secrets lambda function overview
 */
@Data
@Accessors(chain = true)
public class SecretsManagerRotationEvent {

    private String step;
    private String secretId;
    private String clientRequestToken;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy