|
AWS IoT Device SDK C++ v2
1.40.2
AWS IoT Device SDK C++ v2
|
#include <Credentials.h>
Public Member Functions | |
| CredentialsProviderProfileConfig () | |
Public Attributes | |
| ByteCursor | ProfileNameOverride |
| ByteCursor | ConfigFileNameOverride |
| ByteCursor | CredentialsFileNameOverride |
| Io::ClientBootstrap * | Bootstrap |
| Io::TlsContext * | TlsContext |
Configuration options for the profile credentials provider
|
inline |
| Io::ClientBootstrap* Aws::Crt::Auth::CredentialsProviderProfileConfig::Bootstrap |
Connection bootstrap to use for any network connections made while sourcing credentials. (for example, a profile that uses assume-role will need to query STS).
| ByteCursor Aws::Crt::Auth::CredentialsProviderProfileConfig::ConfigFileNameOverride |
Override file path (instead of '~/.aws/config' for the aws config file to use during credential sourcing
| ByteCursor Aws::Crt::Auth::CredentialsProviderProfileConfig::CredentialsFileNameOverride |
Override file path (instead of '~/.aws/credentials' for the aws credentials file to use during credential sourcing
| ByteCursor Aws::Crt::Auth::CredentialsProviderProfileConfig::ProfileNameOverride |
Override profile name to use (instead of default) when the provider sources credentials
| Io::TlsContext* Aws::Crt::Auth::CredentialsProviderProfileConfig::TlsContext |
Client TLS context to use for any secure network connections made while sourcing credentials (for example, a profile that uses assume-role will need to query STS).
If a TLS context is needed, and you did not pass one in, it will be created automatically. However, you are encouraged to pass in a shared one since these are expensive objects. If using BYO_CRYPTO, you must provide the TLS context since it cannot be created automatically.