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

com.luamas.aws.configuration.AwsProperties Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.luamas.aws.configuration;

import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = "aws")
@Getter
@Setter
public class AwsProperties {
    private Boolean enable = Boolean.TRUE;
    private String accessKeyId = "";
    private String secretAccessKeyId = "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy