package shareddefaults

import (
	
	
	
)
SharedCredentialsFilename returns the SDK's default file path for the shared credentials file. Builds the shared config file path based on the OS's platform. - Linux/Unix: $HOME/.aws/credentials - Windows: %USERPROFILE%\.aws\credentials
func () string {
	return filepath.Join(UserHomeDir(), ".aws", "credentials")
}
SharedConfigFilename returns the SDK's default file path for the shared config file. Builds the shared config file path based on the OS's platform. - Linux/Unix: $HOME/.aws/config - Windows: %USERPROFILE%\.aws\config
func () string {
	return filepath.Join(UserHomeDir(), ".aws", "config")
}
UserHomeDir returns the home directory for the user the process is running under.
func () string {
	if runtime.GOOS == "windows" { // Windows
		return os.Getenv("USERPROFILE")
	}
*nix
	return os.Getenv("HOME")