public class STSAssumeRoleSessionCredentialsProvider extends Object implements AWSSessionCredentialsProvider
Modifier and Type | Class and Description |
---|---|
static class |
STSAssumeRoleSessionCredentialsProvider.Builder
Provides a builder pattern to avoid combinatorial explosion of the number of parameters that are passed
to constructors.
|
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_DURATION_SECONDS
Default duration for started sessions.
|
Constructor and Description |
---|
STSAssumeRoleSessionCredentialsProvider(AWSCredentialsProvider longLivedCredentialsProvider,
String roleArn,
String roleSessionName)
Constructs a new STSAssumeRoleSessionCredentialsProvider, which will use
the specified credentials provider (which vends long lived AWS
credentials) to make a request to the AWS Security Token Service (STS),
usess the provided
roleArn to assume a role and then request
short lived session credentials, which will then be returned by this
class's getCredentials() method. |
STSAssumeRoleSessionCredentialsProvider(AWSCredentialsProvider longLivedCredentialsProvider,
String roleArn,
String roleSessionName,
ClientConfiguration clientConfiguration)
Constructs a new STSAssumeRoleSessionCredentialsProvider, which will use
the specified credentials provider (which vends long lived AWS
credentials) to make a request to the AWS Security Token Service (STS),
uses the provided
roleArn to assume a role and then request
short lived session credentials, which will then be returned by this
class's getCredentials() method. |
STSAssumeRoleSessionCredentialsProvider(AWSCredentials longLivedCredentials,
String roleArn,
String roleSessionName)
Constructs a new STSAssumeRoleSessionCredentialsProvider, which will use
the specified long lived AWS credentials to make a request to the AWS
Security Token Service (STS), uses the provided
roleArn to
assume a role and then request short lived session credentials, which
will then be returned by this class's getCredentials() method. |
STSAssumeRoleSessionCredentialsProvider(AWSCredentials longLivedCredentials,
String roleArn,
String roleSessionName,
ClientConfiguration clientConfiguration)
Constructs a new STSAssumeRoleSessionCredentialsProvider, which will use
the specified long lived AWS credentials to make a request to the AWS
Security Token Service (STS), uses the provided
roleArn to
assume a role and then request short lived session credentials, which
will then be returned by this class's getCredentials() method. |
STSAssumeRoleSessionCredentialsProvider(String roleArn,
String roleSessionName)
Constructs a new STSAssumeRoleSessionCredentialsProvider, which makes a
request to the AWS Security Token Service (STS), uses the provided
roleArn to assume a role and then request short lived session
credentials, which will then be returned by this class's
getCredentials() method. |
Modifier and Type | Method and Description |
---|---|
AWSSessionCredentials |
getCredentials() |
void |
refresh() |
void |
setSTSClientEndpoint(String endpoint)
Sets the AWS Security Token Service (STS) endpoint where session
credentials are retrieved from.
|
public static final int DEFAULT_DURATION_SECONDS
public STSAssumeRoleSessionCredentialsProvider(String roleArn, String roleSessionName)
roleArn
to assume a role and then request short lived session
credentials, which will then be returned by this class's
getCredentials()
method.roleArn
- The ARN of the Role to be assumed.roleSessionName
- An identifier for the assumed role session.public STSAssumeRoleSessionCredentialsProvider(AWSCredentials longLivedCredentials, String roleArn, String roleSessionName)
roleArn
to
assume a role and then request short lived session credentials, which
will then be returned by this class's getCredentials()
method.longLivedCredentials
- The main AWS credentials for a user's account.roleArn
- The ARN of the Role to be assumed.roleSessionName
- An identifier for the assumed role session.public STSAssumeRoleSessionCredentialsProvider(AWSCredentials longLivedCredentials, String roleArn, String roleSessionName, ClientConfiguration clientConfiguration)
roleArn
to
assume a role and then request short lived session credentials, which
will then be returned by this class's getCredentials()
method.longLivedCredentials
- The main AWS credentials for a user's account.roleArn
- The ARN of the Role to be assumed.roleSessionName
- An identifier for the assumed role session.clientConfiguration
- Client configuration connection parameters.public STSAssumeRoleSessionCredentialsProvider(AWSCredentialsProvider longLivedCredentialsProvider, String roleArn, String roleSessionName)
roleArn
to assume a role and then request
short lived session credentials, which will then be returned by this
class's getCredentials()
method.longLivedCredentialsProvider
- Credentials provider for the main AWS credentials for a user's
account.roleArn
- The ARN of the Role to be assumed.roleSessionName
- An identifier for the assumed role session.public STSAssumeRoleSessionCredentialsProvider(AWSCredentialsProvider longLivedCredentialsProvider, String roleArn, String roleSessionName, ClientConfiguration clientConfiguration)
roleArn
to assume a role and then request
short lived session credentials, which will then be returned by this
class's getCredentials()
method.longLivedCredentialsProvider
- Credentials provider for the main AWS credentials for a user's
account.roleArn
- The ARN of the Role to be assumed.roleSessionName
- An identifier for the assumed role session.clientConfiguration
- Client configuration connection parameters.public void setSTSClientEndpoint(String endpoint)
public AWSSessionCredentials getCredentials()
getCredentials
in interface AWSCredentialsProvider
getCredentials
in interface AWSSessionCredentialsProvider
public void refresh()
refresh
in interface AWSCredentialsProvider
Copyright © 2015. All rights reserved.