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

dev.ocpd.oss.config.AwsS3Properties.kt Maven / Gradle / Ivy

The newest version!
package dev.ocpd.oss.config

import org.springframework.boot.context.properties.ConfigurationProperties
import java.net.URI

@ConfigurationProperties("oss.s3")
data class AwsS3Properties(
    val accessKey: String?,
    val secretKey: String?,
    val region: String,
    val bucket: String,
    val endpoint: URI?
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy