Example usage for com.amazonaws.internal StaticCredentialsProvider StaticCredentialsProvider

List of usage examples for com.amazonaws.internal StaticCredentialsProvider StaticCredentialsProvider

Introduction

In this page you can find the example usage for com.amazonaws.internal StaticCredentialsProvider StaticCredentialsProvider.

Prototype

public StaticCredentialsProvider(AWSCredentials credentials) 

Source Link

Usage

From source file:com.github.sjones4.youcan.youare.YouAreClient.java

License:Open Source License

public YouAreClient(final AWSCredentials awsCredentials, final ClientConfiguration clientConfiguration) {
    this(new StaticCredentialsProvider(awsCredentials), clientConfiguration);
}

From source file:com.github.sjones4.youcan.youconfig.YouConfigClient.java

License:Open Source License

public YouConfigClient(final AWSCredentials awsCredentials) {
    this(new StaticCredentialsProvider(awsCredentials), new ClientConfiguration());
}

From source file:com.github.sjones4.youcan.youconfig.YouConfigClient.java

License:Open Source License

public YouConfigClient(final AWSCredentials awsCredentials, final ClientConfiguration clientConfiguration) {
    this(new StaticCredentialsProvider(awsCredentials), clientConfiguration);
}

From source file:com.github.sjones4.youcan.youprop.YouPropClient.java

License:Open Source License

public YouPropClient(final AWSCredentials awsCredentials) {
    this(new StaticCredentialsProvider(awsCredentials), new ClientConfiguration());
}

From source file:com.github.sjones4.youcan.youprop.YouPropClient.java

License:Open Source License

public YouPropClient(final AWSCredentials awsCredentials, final ClientConfiguration clientConfiguration) {
    this(new StaticCredentialsProvider(awsCredentials), clientConfiguration);
}

From source file:com.github.sjones4.youcan.youserv.YouServClient.java

License:Open Source License

public YouServClient(final AWSCredentials awsCredentials) {
    this(new StaticCredentialsProvider(awsCredentials), new ClientConfiguration());
}

From source file:com.github.sjones4.youcan.youserv.YouServClient.java

License:Open Source License

public YouServClient(final AWSCredentials awsCredentials, final ClientConfiguration clientConfiguration) {
    this(new StaticCredentialsProvider(awsCredentials), clientConfiguration);
}

From source file:com.github.sjones4.youcan.youtoken.YouTokenClient.java

License:Open Source License

public YouTokenClient(final AWSCredentials awsCredentials) {
    this(new StaticCredentialsProvider(awsCredentials), new ClientConfiguration());
}

From source file:com.github.sjones4.youcan.youtoken.YouTokenClient.java

License:Open Source License

public YouTokenClient(final AWSCredentials awsCredentials, final ClientConfiguration clientConfiguration) {
    this(new StaticCredentialsProvider(awsCredentials), clientConfiguration);
}

From source file:com.github.sjones4.youcan.youtwo.YouTwoClient.java

License:Open Source License

public YouTwoClient(final AWSCredentials awsCredentials) {
    this(new StaticCredentialsProvider(awsCredentials), new ClientConfiguration());
}