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

io.polyglotted.spring.cognito.CognitoConfig Maven / Gradle / Ivy

package io.polyglotted.spring.cognito;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.Accessors;

@NoArgsConstructor @Getter @Setter @Accessors(chain = true)
public class CognitoConfig {
    private boolean enabled = true;
    private String userPoolId;
    private String clientId;
    private String clientSecret;

    boolean disabled() { return !isEnabled(); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy