Interface AwsSessionCredentialsIdentity.Builder
-
- All Superinterfaces:
AwsCredentialsIdentity.Builder
- Enclosing interface:
- AwsSessionCredentialsIdentity
public static interface AwsSessionCredentialsIdentity.Builder extends AwsCredentialsIdentity.Builder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AwsSessionCredentialsIdentity.BuilderaccessKeyId(String accessKeyId)The AWS access key, used to identify the user interacting with services.AwsSessionCredentialsIdentitybuild()AwsSessionCredentialsIdentity.BuildersecretAccessKey(String secretAccessKey)The AWS secret access key, used to authenticate the user interacting with services.AwsSessionCredentialsIdentity.BuildersessionToken(String sessionToken)The AWS session token, retrieved from an AWS token service, used for authenticating that this user has received temporary permission to access some resource.
-
-
-
Method Detail
-
accessKeyId
AwsSessionCredentialsIdentity.Builder accessKeyId(String accessKeyId)
Description copied from interface:AwsCredentialsIdentity.BuilderThe AWS access key, used to identify the user interacting with services.- Specified by:
accessKeyIdin interfaceAwsCredentialsIdentity.Builder
-
secretAccessKey
AwsSessionCredentialsIdentity.Builder secretAccessKey(String secretAccessKey)
Description copied from interface:AwsCredentialsIdentity.BuilderThe AWS secret access key, used to authenticate the user interacting with services.- Specified by:
secretAccessKeyin interfaceAwsCredentialsIdentity.Builder
-
sessionToken
AwsSessionCredentialsIdentity.Builder sessionToken(String sessionToken)
The AWS session token, retrieved from an AWS token service, used for authenticating that this user has received temporary permission to access some resource.
-
build
AwsSessionCredentialsIdentity build()
- Specified by:
buildin interfaceAwsCredentialsIdentity.Builder
-
-