info.freelibrary.vertx.s3.AwsCredentialsProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-s3-service Show documentation
Show all versions of vertx-s3-service Show documentation
An S3 client library for the Vert.x toolkit
package info.freelibrary.vertx.s3;
import java.util.Optional;
/**
* A simple interface defining the AWS credentials provider API.
*/
@FunctionalInterface
public interface AwsCredentialsProvider {
/**
* Gets credentials from the current AWS credentials provider.
*
* @return AWS credentials, if they are found
*/
Optional getCredentials();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy