Firkin.Credential (firkin v0.2.2)

Copy Markdown View Source

Represents an S3 credential pair with an opaque identity.

The identity field is passed through to all backend callbacks as part of the auth context. The backend can put whatever it needs here — user ID, tenant, role, etc.

Summary

Types

t()

@type t() :: %Firkin.Credential{
  access_key_id: String.t(),
  identity: term(),
  secret_access_key: String.t()
}