Amazon.Runtime.Internal.Auth.SharedCredentialsFile.AddOrUpdateCredentials C# (CSharp) Метод

AddOrUpdateCredentials() публичный Метод

Add credentials for the profile given. If credentials for the profile already exist, update them. Changes are not written to disk until the Persist() method is called.
public AddOrUpdateCredentials ( string profileName, string accessKey, string secretAccessKey ) : void
profileName string name of profile
accessKey string access key for the credentials
secretAccessKey string secret access key for the credentials
Результат void
        public void AddOrUpdateCredentials(string profileName, string accessKey, string secretAccessKey)
        {
            AddOrUpdateCredentials(profileName, accessKey, secretAccessKey, null);
        }

Same methods

SharedCredentialsFile::AddOrUpdateCredentials ( string profileName, string accessKey, string secretAccessKey, string token ) : void