Java Code Examples for software.amazon.awssdk.auth.credentials.AwsSessionCredentials#create()
The following examples show how to use
software.amazon.awssdk.auth.credentials.AwsSessionCredentials#create() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: EnvironmentAwsCredentialsProvider.java From micronaut-aws with Apache License 2.0 | 6 votes |
@Override public AwsCredentials resolveCredentials() { String accessKey = environment.getProperty(ACCESS_KEY_ENV_VAR, String.class, environment.getProperty(ALTERNATE_ACCESS_KEY_ENV_VAR, String.class, (String) null)); String secretKey = environment.getProperty(SECRET_KEY_ENV_VAR, String.class, environment.getProperty(ALTERNATE_SECRET_KEY_ENV_VAR, String.class, (String) null)); accessKey = StringUtils.trim(accessKey); secretKey = StringUtils.trim(secretKey); String sessionToken = StringUtils.trim(environment.getProperty(AWS_SESSION_TOKEN_ENV_VAR, String.class, (String) null)); if (StringUtils.isBlank(accessKey) || StringUtils.isBlank(secretKey)) { throw SdkClientException.create( "Unable to load AWS credentials from environment " + "(" + ACCESS_KEY_ENV_VAR + " (or " + ALTERNATE_ACCESS_KEY_ENV_VAR + ") and " + SECRET_KEY_ENV_VAR + " (or " + ALTERNATE_SECRET_KEY_ENV_VAR + "))"); } return sessionToken == null ? AwsBasicCredentials.create(accessKey, secretKey) : AwsSessionCredentials.create(accessKey, secretKey, sessionToken); }
Example 2
Source File: Aws2ITest.java From java-specialagent with Apache License 2.0 | 6 votes |
private static DynamoDbClient buildClient() { final AwsSessionCredentials awsCreds = AwsSessionCredentials.create("access_key_id", "secret_key_id", "session_token"); return DynamoDbClient .builder() .endpointOverride(URI.create("http://localhost:8000")) .region(Region.US_WEST_2) .credentialsProvider(StaticCredentialsProvider.create(awsCreds)) .overrideConfiguration(ClientOverrideConfiguration.builder().apiCallTimeout(Duration.ofSeconds(1)).build()) .build(); // final AwsClientBuilder.EndpointConfiguration endpointConfiguration = new // AwsClientBuilder.EndpointConfiguration( // "http://localhost:8000", "us-west-2"); // final BasicAWSCredentials awsCreds = new // BasicAWSCredentials("access_key_id", "secret_key_id"); // final AmazonDynamoDBClientBuilder builder = AmazonDynamoDBClientBuilder // .standard() // .withEndpointConfiguration(endpointConfiguration) // .withCredentials(new AWSStaticCredentialsProvider(awsCreds)) // .withClientConfiguration(new // ClientConfiguration().withConnectionTimeout(1)); // // return builder.build(); }
Example 3
Source File: AmazonWebServicesClientProxy.java From cloudformation-cli-java-plugin with Apache License 2.0 | 6 votes |
public AmazonWebServicesClientProxy(final boolean inHandshakeMode, final LoggerProxy loggerProxy, final Credentials credentials, final Supplier<Long> remainingTimeToExecute, final DelayFactory override) { this.inHandshakeMode = inHandshakeMode; this.loggerProxy = loggerProxy; this.remainingTimeInMillis = remainingTimeToExecute; BasicSessionCredentials basicSessionCredentials = new BasicSessionCredentials(credentials.getAccessKeyId(), credentials.getSecretAccessKey(), credentials.getSessionToken()); this.v1CredentialsProvider = new AWSStaticCredentialsProvider(basicSessionCredentials); AwsSessionCredentials awsSessionCredentials = AwsSessionCredentials.create(credentials.getAccessKeyId(), credentials.getSecretAccessKey(), credentials.getSessionToken()); this.v2CredentialsProvider = StaticCredentialsProvider.create(awsSessionCredentials); this.override = Objects.requireNonNull(override); }
Example 4
Source File: V2CredentialWrapper.java From amazon-kinesis-client with Apache License 2.0 | 6 votes |
@Override public AwsCredentials resolveCredentials() { AWSCredentials current = oldCredentialsProvider.getCredentials(); if (current instanceof AWSSessionCredentials) { return AwsSessionCredentials.create(current.getAWSAccessKeyId(), current.getAWSSecretKey(), ((AWSSessionCredentials) current).getSessionToken()); } return new AwsCredentials() { @Override public String accessKeyId() { return current.getAWSAccessKeyId(); } @Override public String secretAccessKey() { return current.getAWSSecretKey(); } }; }
Example 5
Source File: Aws2Test.java From java-specialagent with Apache License 2.0 | 5 votes |
private static DynamoDbClient buildClient() { final AwsSessionCredentials awsCreds = AwsSessionCredentials.create("access_key_id", "secret_key_id", "session_token"); return DynamoDbClient.builder() .endpointOverride(URI.create("http://localhost:8000")) .region(Region.US_WEST_2) .credentialsProvider(StaticCredentialsProvider.create(awsCreds)) .overrideConfiguration(ClientOverrideConfiguration.builder() .apiCallTimeout(Duration.ofSeconds(1)).build()) .build(); }
Example 6
Source File: Aws2Test.java From java-specialagent with Apache License 2.0 | 5 votes |
private static DynamoDbAsyncClient buildAsyncClient() { final AwsSessionCredentials awsCreds = AwsSessionCredentials.create("access_key_id", "secret_key_id", "session_token"); final DynamoDbAsyncClient build = DynamoDbAsyncClient.builder() .endpointOverride(URI.create("http://localhost:8000")) .region(Region.US_WEST_2) .credentialsProvider(StaticCredentialsProvider.create(awsCreds)) .overrideConfiguration(ClientOverrideConfiguration.builder() .apiCallTimeout(Duration.ofSeconds(1)).build()) .build(); return build; }
Example 7
Source File: AbstractAwsSigner.java From aws-sdk-java-v2 with Apache License 2.0 | 5 votes |
/** * Loads the individual access key ID and secret key from the specified credentials, trimming any extra whitespace from the * credentials. * * <p>Returns either a {@link AwsSessionCredentials} or a {@link AwsBasicCredentials} object, depending on the input type. * * @return A new credentials object with the sanitized credentials. */ protected AwsCredentials sanitizeCredentials(AwsCredentials credentials) { String accessKeyId = StringUtils.trim(credentials.accessKeyId()); String secretKey = StringUtils.trim(credentials.secretAccessKey()); if (credentials instanceof AwsSessionCredentials) { AwsSessionCredentials sessionCredentials = (AwsSessionCredentials) credentials; return AwsSessionCredentials.create(accessKeyId, secretKey, StringUtils.trim(sessionCredentials.sessionToken())); } return AwsBasicCredentials.create(accessKeyId, secretKey); }
Example 8
Source File: ProfileCredentialsUtils.java From aws-sdk-java-v2 with Apache License 2.0 | 5 votes |
/** * Load a set of session credentials that have been configured in this profile. */ private AwsCredentialsProvider sessionProfileCredentialsProvider() { requireProperties(ProfileProperty.AWS_ACCESS_KEY_ID, ProfileProperty.AWS_SECRET_ACCESS_KEY, ProfileProperty.AWS_SESSION_TOKEN); AwsCredentials credentials = AwsSessionCredentials.create(properties.get(ProfileProperty.AWS_ACCESS_KEY_ID), properties.get(ProfileProperty.AWS_SECRET_ACCESS_KEY), properties.get(ProfileProperty.AWS_SESSION_TOKEN)); return StaticCredentialsProvider.create(credentials); }
Example 9
Source File: SystemSettingsCredentialsProvider.java From aws-sdk-java-v2 with Apache License 2.0 | 5 votes |
@Override public AwsCredentials resolveCredentials() { String accessKey = trim(loadSetting(SdkSystemSetting.AWS_ACCESS_KEY_ID).orElse(null)); String secretKey = trim(loadSetting(SdkSystemSetting.AWS_SECRET_ACCESS_KEY).orElse(null)); String sessionToken = trim(loadSetting(SdkSystemSetting.AWS_SESSION_TOKEN).orElse(null)); if (StringUtils.isEmpty(accessKey)) { throw SdkClientException.builder() .message(String.format("Unable to load credentials from system settings. Access key must be" + " specified either via environment variable (%s) or system property (%s).", SdkSystemSetting.AWS_ACCESS_KEY_ID.environmentVariable(), SdkSystemSetting.AWS_ACCESS_KEY_ID.property())) .build(); } if (StringUtils.isEmpty(secretKey)) { throw SdkClientException.builder() .message(String.format("Unable to load credentials from system settings. Secret key must be" + " specified either via environment variable (%s) or system property (%s).", SdkSystemSetting.AWS_SECRET_ACCESS_KEY.environmentVariable(), SdkSystemSetting.AWS_SECRET_ACCESS_KEY.property())) .build(); } return sessionToken == null ? AwsBasicCredentials.create(accessKey, secretKey) : AwsSessionCredentials.create(accessKey, secretKey, sessionToken); }
Example 10
Source File: ProcessCredentialsProvider.java From aws-sdk-java-v2 with Apache License 2.0 | 5 votes |
/** * Parse the process output to retrieve the credentials. */ private AwsCredentials credentials(JsonNode credentialsJson) { String accessKeyId = getText(credentialsJson, "AccessKeyId"); String secretAccessKey = getText(credentialsJson, "SecretAccessKey"); String sessionToken = getText(credentialsJson, "SessionToken"); Validate.notEmpty(accessKeyId, "AccessKeyId cannot be empty."); Validate.notEmpty(secretAccessKey, "SecretAccessKey cannot be empty."); if (sessionToken != null) { return AwsSessionCredentials.create(accessKeyId, secretAccessKey, sessionToken); } else { return AwsBasicCredentials.create(accessKeyId, secretAccessKey); } }
Example 11
Source File: AwsSessionCredentialsTest.java From aws-sdk-java-v2 with Apache License 2.0 | 5 votes |
@Test public void equalsHashCode() { AwsSessionCredentials credentials = AwsSessionCredentials.create("test", "key", "sessionToken"); AwsSessionCredentials anotherCredentials = AwsSessionCredentials.create("test", "key", "sessionToken"); assertThat(credentials).isEqualTo(anotherCredentials); assertThat(credentials.hashCode()).isEqualTo(anotherCredentials.hashCode()); }
Example 12
Source File: SessionCredentialsProvider.java From cloudformation-cli-java-plugin with Apache License 2.0 | 4 votes |
public void setCredentials(final Credentials credentials) { this.awsSessionCredentials = AwsSessionCredentials.create(credentials.getAccessKeyId(), credentials.getSecretAccessKey(), credentials.getSessionToken()); }
Example 13
Source File: SessionCredentialsHolder.java From aws-sdk-java-v2 with Apache License 2.0 | 4 votes |
SessionCredentialsHolder(Credentials credentials) { this.sessionCredentials = AwsSessionCredentials.create(credentials.accessKeyId(), credentials.secretAccessKey(), credentials.sessionToken()); this.sessionCredentialsExpiration = Date.from(credentials.expiration()); }