doc.go raw

   1  // Package credentials provides functionality for managing authentication and authorization
   2  // credentials used in SDK operations. It includes interfaces and implementations for
   3  // handling various types of credentials, such as API keys, tokens, and other authentication
   4  // mechanisms required for secure access to services.
   5  //
   6  // The package supports different credential providers and allows for secure storage,
   7  // retrieval, and management of authentication information needed for service requests.
   8  package credentials
   9