AwsCredentials constructor

AwsCredentials({
  1. String? accessKeyId,
  2. String? secretAccessKey,
  3. String? sessionToken,
})

Implementation

AwsCredentials({
  this.accessKeyId,
  this.secretAccessKey,
  this.sessionToken,
});