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.AwsSessionCredentialsIdentity.BuilderaccountId(String accountId)The AWS account id associated with this credentials identity.AwsSessionCredentialsIdentitybuild()AwsSessionCredentialsIdentity.BuilderproviderName(String providerName)The name of the identity provider that created this credential identity.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
-
accountId
AwsSessionCredentialsIdentity.Builder accountId(String accountId)
Description copied from interface:AwsCredentialsIdentity.BuilderThe AWS account id associated with this credentials identity.- Specified by:
accountIdin 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.
-
providerName
AwsSessionCredentialsIdentity.Builder providerName(String providerName)
Description copied from interface:AwsCredentialsIdentity.BuilderThe name of the identity provider that created this credential identity.- Specified by:
providerNamein interfaceAwsCredentialsIdentity.Builder
-
build
AwsSessionCredentialsIdentity build()
- Specified by:
buildin interfaceAwsCredentialsIdentity.Builder
-
-