Example usage for com.amazonaws.auth AWSCredentials interface-usage

List of usage examples for com.amazonaws.auth AWSCredentials interface-usage

Introduction

In this page you can find the example usage for com.amazonaws.auth AWSCredentials interface-usage.

Usage

From source file com.tango.BucketSyncer.MirrorOptions.java

public class MirrorOptions implements AWSCredentials {

    public static final String AWS_ACCESS_KEY = "AWS_ACCESS_KEY_ID";
    public static final String AWS_SECRET_KEY = "AWS_SECRET_ACCESS_KEY";
    @Getter
    @Setter

From source file com.vrane.metaGlacier.gui.GlacierFrame.java

/**
 * This JFrame class creates the menu as well as providing an interface to account credentials.
 * Both AWS and metadata account credentials are provided by this interface.
 * It also initializes and saves various user settings. 
 * 
 * @author K Z Win

From source file core.connector.s3.sync.SimpleAWSCredentials.java

public class SimpleAWSCredentials implements AWSCredentials {
    private String a, s;

    public SimpleAWSCredentials(String a, String s) {
        this.a = a;
        this.s = s;

From source file de.is24.aws.instancemetadataserver.AwsCredentialsConfigurationProperties.java

@ConfigurationProperties
public class AwsCredentialsConfigurationProperties implements AWSCredentials {

    private String accessKey;
    private String secretKey;

From source file fi.yle.tools.aws.maven.AuthenticationInfoAWSCredentials.java

final class AuthenticationInfoAWSCredentials implements AWSCredentials {

    private final AuthenticationInfo authenticationInfo;

    AuthenticationInfoAWSCredentials(AuthenticationInfo authenticationInfo) {
        this.authenticationInfo = authenticationInfo;

From source file io.relution.jenkins.awssqs.interfaces.SQSQueue.java

/**
 * Interface definition for classes that represent the necessary configuration that is required to
 * access an Amazon SQS queue.
 */
public interface SQSQueue extends AWSCredentials {

From source file io.relution.jenkins.scmsqs.interfaces.SQSQueue.java

/**
 * Interface definition for classes that represent the necessary configuration that is required to
 * access an Amazon SQS queue.
 */
public interface SQSQueue extends AWSCredentials {

From source file io.vgs.tools.aws.maven.AuthenticationInfoAWSCredentials.java

final class AuthenticationInfoAWSCredentials implements AWSCredentials {

    private final AuthenticationInfo authenticationInfo;

    AuthenticationInfoAWSCredentials(AuthenticationInfo authenticationInfo) {
        this.authenticationInfo = authenticationInfo;

From source file n3phele.security.EncryptedAWSCredentials.java

public class EncryptedAWSCredentials implements AWSCredentials {
    protected static Logger log = Logger.getLogger(EncryptedAWSCredentials.class.getName());

    private String accessKey;
    private String secretKey;

From source file opendap.aws.auth.Credentials.java

public class Credentials implements AWSCredentials, Serializable {

    private String accessKeyId;
    private String secretKey;

    public Credentials(String awsAccessKeyId, String awsSecretKey) {