AWSStaticCredentialsProvider constructor

AWSStaticCredentialsProvider(
  1. String accessKeyId,
  2. String secretAccessId, {
  3. String? sessionToken,
})

Construct a new AWSStaticCredentialsProvider instance.

Implementation

AWSStaticCredentialsProvider(
  this.accessKeyId,
  this.secretAccessId, {
  this.sessionToken,
});