UpdateHostname() public method

public UpdateHostname ( string hostname, string ipAddress ) : bool
hostname string Fully qualified host name, i.e. host.domain.com
ipAddress string The IP Address to update to.
return bool
        public void CanUpdateHostname()
        {
            const string awsAccessKeyId = @"";
            const string awsSecretAccessKey = @"";
            var client = new Route53Client(awsAccessKeyId, awsSecretAccessKey);

            client.UpdateHostname("ddnsupdater.bespokeindustries.com", "127.0.0.1");
        }