Example usage for com.amazonaws ClientConfiguration ClientConfiguration

List of usage examples for com.amazonaws ClientConfiguration ClientConfiguration

Introduction

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

Prototype

public ClientConfiguration() 

Source Link

Usage

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 AWSCredentialsProvider awsCredentialsProvider) {
    this(awsCredentialsProvider, new ClientConfiguration());
}

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

License:Open Source License

public YouServClient() {
    this(new DefaultAWSCredentialsProviderChain(), new 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 AWSCredentialsProvider awsCredentialsProvider) {
    this(awsCredentialsProvider, new ClientConfiguration());
}

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

License:Open Source License

public YouTokenClient() {
    this(new DefaultAWSCredentialsProviderChain(), new 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 AWSCredentialsProvider awsCredentialsProvider) {
    this(awsCredentialsProvider, new ClientConfiguration());
}

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

License:Open Source License

public YouTwoClient() {
    this(new DefaultAWSCredentialsProviderChain(), new 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());
}